URI:
       openbsd: dwm: add wallcmd - dotfiles - 🍚 personal arsenal of "rice"
  HTML git clone https://git.drkhsh.at/dotfiles.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit efc6fb2b6cdca2c1a550d0fd96a0d7dd633de72b
   DIR parent d2f624cd65a9c5d6d6e5481e5136623fed3d6b26
  HTML Author: drkhsh <me@drkhsh.at>
       Date:   Sun, 31 Mar 2024 16:24:16 +0200
       
       openbsd: dwm: add wallcmd
       
       Diffstat:
         M _openbsd/dwm/config.h               |       2 ++
       
       1 file changed, 2 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/_openbsd/dwm/config.h b/_openbsd/dwm/config.h
       @@ -116,6 +116,7 @@ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() 
        static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
        static const char *passdmenucmd[] = { "pass.dmenu", NULL };
        static const char *ykdmenucmd[] = { "yubikey-oath-dmenu", "--clipboard", "--clipboard-cmd", "xclip -selection clipboard", NULL };
       +static const char *wallcmd[] = { "/home/drkhsh/.fehbg", NULL };
        static const char *termcmd[]  = { "st", NULL };
        static const char *slockcmd[] = { "slock", NULL };
        
       @@ -128,6 +129,7 @@ static const Key keys[] = {
                { MODKEY|ShiftMask,             XK_p,      spawn,          {.v = passdmenucmd } },
                { MODKEY|ShiftMask,             XK_d,      spawn,          {.v = ykdmenucmd } },
                { MODKEY|ShiftMask,             XK_Return, spawn,          {.v = termcmd } },
       +        { MODKEY,                       XK_w,      spawn,          {.v = wallcmd } },
                { MODKEY,                       XK_b,      togglebar,      {0} },
                { MODKEY,                       XK_j,      focusstack,     {.i = +1 } },
                { MODKEY,                       XK_k,      focusstack,     {.i = -1 } },