diff options
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index becde16..c376405 100644 --- a/config.def.h +++ b/config.def.h @@ -66,6 +66,7 @@ static const Layout layouts[] = { static const char *dmenucmd[] = { "dmenu_run", "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbordercolor, "-sf", selfgcolor, NULL }; static const char *fileman[] = { "st", "ranger", NULL }; static const char *screenshot[] = { "screenshot", NULL }; +static const char *wallpaper[] = { "setwallpaper", NULL }; static const char *termcmd[] = { "st", NULL }; static const char *browser[] = { "librewolf", NULL }; static const char *email[] = { "claws-mail", NULL }; @@ -81,6 +82,7 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_Return, spawn, {.v = fileman } }, { MODKEY, XK_b, spawn, {.v = browser } }, { MODKEY|ShiftMask, XK_t, spawn, {.v = email } }, + { MODKEY, XK_F12, spawn, {.v = wallpaper } }, { 0, XK_Print, spawn, {.v = screenshot } }, { MODKEY|ShiftMask, XK_b, togglebar, {0} }, { MODKEY, XK_j, focusstack, {.i = +1 } }, |