dwm config

This commit is contained in:
vali 2024-04-14 13:27:24 +02:00
commit 6319aa8c11
15 changed files with 48 additions and 9 deletions

View file

@ -211,6 +211,7 @@ static void tagmon(const Arg *arg);
static void tile(Monitor *m);
static void togglebar(const Arg *arg);
static void togglefloating(const Arg *arg);
static void togglefullscr(const Arg *arg);
static void toggletag(const Arg *arg);
static void toggleview(const Arg *arg);
static void unfocus(Client *c, int setfocus);
@ -1735,6 +1736,13 @@ togglefloating(const Arg *arg)
arrange(selmon);
}
void
togglefullscr(const Arg *arg)
{
if(selmon->sel)
setfullscreen(selmon->sel, !selmon->sel>isfullscreen);
}
void
toggletag(const Arg *arg)
{