summaryrefslogtreecommitdiff
path: root/files/config/suckless/dwm/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'files/config/suckless/dwm/config.h')
-rw-r--r--files/config/suckless/dwm/config.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/files/config/suckless/dwm/config.h b/files/config/suckless/dwm/config.h
index e040b41..f2f179e 100644
--- a/files/config/suckless/dwm/config.h
+++ b/files/config/suckless/dwm/config.h
@@ -65,10 +65,13 @@ static const char *termcmd[] = { "st", NULL };
static const char *audioup[] = { "pactl", "set-sink-volume", "@DEFAULT_SINK@", "+5%", NULL };
static const char *audiodown[] = { "pactl", "set-sink-volume", "@DEFAULT_SINK@", "-5%", NULL };
static const char *ncmpcppcmd[] = { "st", "-e", "ncmpcpp", NULL };
+static const char *emailcmd[] = { "thunderbird", NULL };
static const Key keys[] = {
/* modifier key function argument */
- { MODKEY, XK_Insert, spawn, SHCMD("xdotool type $(grep -v '^#' ~/.local/share/larbs/snippets | dmenu -i -l 50 | cut -d' ' -f1)") },
+ { MODKEY|ShiftMask, XK_Insert, spawn, SHCMD("sh ~/.Scripts/bookmark.sh") },
+ { MODKEY, XK_Insert, spawn, SHCMD("xdotool type $(grep -v '^#' ~/.bookmarks | dmenu -i -l 50 | cut -d' ' -f1)") },
+ { MODKEY, XK_t, spawn, {.v = emailcmd } },
{ MODKEY, XK_F3, spawn, {.v = audioup } },
{ MODKEY, XK_F2, spawn, {.v = audiodown } },
{ MODKEY, XK_p, spawn, {.v = audiocmd } },