Add filemanager bind

This commit is contained in:
Marco Thomas
2021-04-06 11:52:44 +02:00
parent 9421349d8e
commit 268987d102
2 changed files with 2 additions and 0 deletions

View File

@@ -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 } },