add mounter and unmounter keybind
This commit is contained in:
parent
1dcdd0d61e
commit
6a152d4e43
4
config.h
4
config.h
|
|
@ -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 */
|
||||
|
|
|
|||
Reference in New Issue