add mounter and unmounter keybind

This commit is contained in:
krolyxon 2023-02-03 12:54:10 +05:30
parent 1dcdd0d61e
commit 6a152d4e43
2 changed files with 3 additions and 1 deletions

View File

@ -135,12 +135,14 @@ static Key keys[] = {
{ 0, XF86XK_AudioRewind, spawn, {.v = (const char*[]){ "mpc", "seek", "-10", NULL } } },
{ 0, XF86XK_AudioForward, spawn, {.v = (const char*[]){ "mpc", "seek", "+10", NULL } } },
{ MODKEY, XK_p, spawn, {.v = (const char*[]){ "mpc", "toggle", NULL } } },
{ MODKEY|ShiftMask, XK_comma, spawn, {.v = (const char*[]){ "mpc", "prev", NULL } } },
{ MODKEY|ShiftMask, XK_period, spawn, {.v = (const char*[]){ "mpc", "next", NULL } } },
{ MODKEY, XK_comma, spawn, {.v = (const char*[]){ "mpc", "seek", "-10", NULL } } },
{ MODKEY, XK_period, spawn, {.v = (const char*[]){ "mpc", "seek", "+10", NULL } } },
{ MODKEY, XK_F9, spawn, {.v = (const char*[]){ "mounter", NULL } } },
{ MODKEY, XK_F10, spawn, {.v = (const char*[]){ "unmounter", NULL } } },
};
/* button definitions */

BIN
dwm

Binary file not shown.