about summary refs log tree commit diff
path: root/config.h
diff options
context:
space:
mode:
authorYour Name <you@example.com>2020-10-21 23:57:43 +0100
committerYour Name <you@example.com>2020-10-21 23:57:43 +0100
commit8606560d411fd626523d7b7a6d19085b35c5ab9c (patch)
treed1e183582672307753217e584c8cd5ea8c823314 /config.h
parentRemoved keyhandling functionality (diff)
downloaddwm-8606560d411fd626523d7b7a6d19085b35c5ab9c.tar.gz
dwm-8606560d411fd626523d7b7a6d19085b35c5ab9c.tar.bz2
dwm-8606560d411fd626523d7b7a6d19085b35c5ab9c.zip
fixed signal func calling bug
Diffstat (limited to 'config.h')
-rw-r--r--config.h42
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>]"` */