diff options
-rw-r--r-- | config.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -78,6 +78,9 @@ static const Layout layouts[] = { static const char *termcmd[] = { "/usr/local/bin/st", NULL }; static const char *dmenucmd[] = { "/usr/local/bin/dmenu_run", "-i", "-m", "0", NULL }; static const char *dmpccmd[] = { "/home/jozan/.local/bin/dmpc", NULL }; +static const char *dmkillcmd[] = { "/home/jozan/.local/bin/dmkill", NULL }; +static const char *dmscrotcmd[] = { "/home/jozan/.local/bin/dmscrot", NULL }; +static const char *dmlogcmd[] = { "/home/jozan/.local/bin/dmlog", NULL }; static const char *vifmcmd[] = { "/usr/local/bin/st", "-e", "/usr/local/bin/vifm", NULL }; static const char *editcmd[] = { "/usr/local/bin/emacsclient", "-c", NULL }; static const char *browsercmd[] = { "/usr/local/bin/torify", "/usr/local/bin/iridium", NULL }; @@ -126,6 +129,9 @@ static Key keys[] = { { MODKEY|ShiftMask, XK_F10, spawn, {.v = voltogcmd } }, { MODKEY|ShiftMask, XK_F11, spawn, {.v = voldeccmd } }, { MODKEY|ShiftMask, XK_F12, spawn, {.v = volinccmd } }, + { MODKEY|ControlMask, XK_F9, spawn, {.v = dmkillcmd } }, + { MODKEY|ControlMask, XK_F10, spawn, {.v = dmscrotcmd } }, + { MODKEY|ControlMask, XK_F12, spawn, {.v = dmlogcmd } }, { MODKEY, XK_BackSpace, spawn, {.v = dmpccmd } }, { 0, XF86XK_MonBrightnessUp, spawn, {.v = blinccmd } }, { 0, XF86XK_MonBrightnessDown, spawn, {.v = bldeccmd } }, |