From 8396763a72c7fd8de1f1eca9e53845f03f291213684113d0fa1104f2f29b7efe Mon Sep 17 00:00:00 2001 From: ganome Date: Sun, 16 Mar 2025 16:44:21 -0600 Subject: [PATCH] Mod+Shift+N Next wallpaper --- config.def.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 8a94aa8..20b5cd1 100644 --- a/config.def.h +++ b/config.def.h @@ -258,7 +258,7 @@ static const char *dmenucmd[] = { NULL }; // static const char *vesktop[] = { "vesktop", NULL }; - +static const char *wallpapercmd[]= { "/home/ganome/.local/bin/wallsetter.dwm", NULL }; static const char *termcmd[] = { "ghostty", NULL }; static const Key keys[] = { @@ -286,6 +286,7 @@ static const Key keys[] = { { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, { MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, + { MODKEY|ShiftMask, XK_n, spawn, {.v = wallpapercmd } }, { MODKEY, XK_space, setlayout, {0} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, { MODKEY, XK_grave, togglescratch, {.v = scratchpadcmd } },