diff options
-rw-r--r-- | lib/cfg.def.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/cfg.def.h b/lib/cfg.def.h index 39fee2c..0c09684 100644 --- a/lib/cfg.def.h +++ b/lib/cfg.def.h @@ -43,6 +43,13 @@ static struct scheme schemes[SchemeLast] = { }, }; +static struct command mumble[] = { + DEFCMD("m", "mute", "mumble rpc togglemute") + DEFCMD("d", "deaf", "mumble rpc toggledeaf") + DEFCMD("o", "open", "mumble") + DEFCMD("q", "quit", "pkill mumble") +}; + static struct command apps[] = { DEFCMD ("c", "chromium" , "chromium") DEFCMD ("d", "dolphin" , "dolphin") @@ -55,12 +62,6 @@ static struct command apps[] = { DEFCMD ("q", "qutebrowser", "qutebrowser") }; -static struct command mumble[] = { - DEFCMD("m", "mumble mute", "mumble rpc togglemute") - DEFCMD("d", "mumble deaf", "mumble rpc toggledeaf") - DEFCMD("o", "mumble open", "mumble") -}; - static struct command mail_commands[] = { DEFCMD("a", "all", "eml all") DEFCMD("i", "in", "n eml in") |