Adding the toggletopbar patch ref. #363

This commit is contained in:
bakkeby
2023-06-25 22:52:50 +02:00
parent 3881ad4ad1
commit 10a6640732
8 changed files with 51 additions and 4 deletions

20
patch/toggletopbar.c Normal file
View File

@@ -0,0 +1,20 @@
void
toggletopbar(const Arg *arg)
{
Bar *bar;
Monitor *m = selmon;
for (bar = m->bar; bar; bar = bar->next)
bar->topbar = !bar->topbar;
if (!m->showbar) {
togglebar(NULL);
return;
}
updatebarpos(m);
for (bar = m->bar; bar; bar = bar->next)
XMoveResizeWindow(dpy, bar->win, bar->bx, bar->by, bar->bw, bar->bh);
arrange(m);
}