From 6a152d4e438f2f5d16bc7516e09ce60da3946445 Mon Sep 17 00:00:00 2001 From: krolyxon Date: Fri, 3 Feb 2023 12:54:10 +0530 Subject: add mounter and unmounter keybind --- config.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'config.h') diff --git a/config.h b/config.h index d34f260..81b0197 100644 --- a/config.h +++ b/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 */ -- cgit v1.2.3