diff options
| author | Ambrose <me@librelife.org> | 2026-02-18 10:25:27 -0500 |
|---|---|---|
| committer | Ambrose <me@librelife.org> | 2026-02-18 10:25:27 -0500 |
| commit | ebd69ee08fb96e736b489229029572d006bbe531 (patch) | |
| tree | 22228b052380217c302f4a52e04a3ddf80ea682a | |
| parent | d4e9dacca7821928cc7f272af4f175100c9f486e (diff) | |
Bound wallpaper script6.4.1-eOS
| -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 } }, |