diff --git a/config.h b/config.h index 17072e2..d64a9f7 100644 --- a/config.h +++ b/config.h @@ -78,6 +78,7 @@ static const char *discord[] = { "discord", NULL }; static const char *pavu[] = { "pavucontrol", NULL }; static const char *flameshot[]= { "flameshot", "gui", NULL }; static const char *spotify[] = { "spotify", NULL }; +static const char *files[] = { "thunar", NULL }; static const char *vol_up[] = { "pactl", "set-sink-volume", "@DEFAULT_SINK@", "+2%", NULL }; static const char *vol_down[] = { "pactl", "set-sink-volume", "@DEFAULT_SINK@", "-2%", NULL }; @@ -94,6 +95,7 @@ static Key keys[] = { // open programs { MODKEY, XK_d, spawn, {.v = dmenucmd } }, { MODKEY, XK_Return, spawn, {.v = termcmd } }, + { MODKEY, XK_e, spawn, {.v = files } }, { MODKEY|ControlMask, XK_f, spawn, {.v = browser } }, { MODKEY|ControlMask, XK_d, spawn, {.v = discord } }, { MODKEY|ControlMask, XK_p, spawn, {.v = pavu } }, diff --git a/dwm b/dwm index 7ec9a3c..5ea7847 100755 Binary files a/dwm and b/dwm differ