diff options
| -rw-r--r-- | dwm/config.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dwm/config.h b/dwm/config.h index 9b3f15e..f1aee64 100644 --- a/dwm/config.h +++ b/dwm/config.h @@ -193,7 +193,10 @@ ResourcePref resources[] = { * ud means up and down */ static Gesture gestures[] = { - { "u", spawn, {.v = termcmd } }, + { "u", spawn, { .v = termcmd } }, + { "d", spawn, { .v = (const char *[]){ BROWSER, NULL } } }, + { "l", spawn, SHCMD(TERMINAL " -e neomutt ; pkill -RTMIN+12 dwmblocks; rmdir ~/.abook 2>/dev/null") }, + { "r", spawn, SHCMD(TERMINAL " -e newsboat ; pkill -RTMIN+6 dwmblocks") }, }; static const Arg tagexec[] = { |
