diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/config.h b/config.h index dc270f9..4a7321d 100644 --- a/config.h +++ b/config.h @@ -138,48 +138,6 @@ static Button buttons[] = { { ClkTagBar, MODKEY, Button3, toggletag, {0} }, }; -void -setlayoutex(const Arg *arg) -{ - setlayout(&((Arg) { .v = &layouts[arg->i] })); -} - -void -viewex(const Arg *arg) -{ - view(&((Arg) { .ui = 1 << (arg->ui - 1)})); -} - -void -viewall(const Arg *arg) -{ - view(&((Arg){.ui = ~0})); -} - -void -toggleviewex(const Arg *arg) -{ - toggleview(&((Arg) { .ui = 1 << (arg->ui - 1)})); -} - -void -tagex(const Arg *arg) -{ - tag(&((Arg) { .ui = 1 << (arg->ui - 1)})); -} - -void -toggletagex(const Arg *arg) -{ - toggletag(&((Arg) { .ui = 1 << (arg->ui - 1)})); -} - -void -tagall(const Arg *arg) -{ - tag(&((Arg){.ui = ~0})); -} - /* signal definitions */ /* signum must be greater than 0 */ /* trigger signals using `xsetroot -name "fsignal:<signame> [<type> <value>]"` */ |