# HG changeset patch # User jasonwryan # Date 1615441737 -46800 # Thu Mar 11 18:48:57 2021 +1300 # Node ID 0ee982ddaf45027b0de1728408cea357ae1dd132 # Parent c8a185af1e8438927f2790b8d7017ad5dd735c03 Updated diff --git a/shiv.config b/shiv.config --- a/shiv.config +++ b/shiv.config @@ -42,7 +42,15 @@ static const char *lockcmd[] = { "xautolock", "-locknow", NULL }; static const char *rebootcmd[] = { "systemctl", "reboot", NULL }; static const char *shutcmd[] = { "systemctl", "poweroff", NULL }; -@@ -105,6 +110,11 @@ static Key keys[] = { +@@ -77,6 +82,7 @@ static Key keys[] = { + { ControlMask|Mod1Mask, XK_p, spawn, {.v = padcmd } }, + { ControlMask|Mod1Mask, XK_r, spawn, {.v = rebootcmd } }, + { ControlMask|Mod1Mask, XK_q, spawn, {.v = shutcmd } }, ++ { ControlMask|Mod1Mask, XK_w, spawn, {.v = webcmd } }, + { MODKEY, XK_b, togglebar, {0} }, + { MODKEY, XK_j, focusstack, {.i = +1 } }, + { MODKEY, XK_k, focusstack, {.i = -1 } }, +@@ -105,6 +111,11 @@ static Key keys[] = { { MODKEY, XK_Right, cycle, {.i = +1 } }, { MODKEY|ControlMask, XK_Left, tagcycle, {.i = -1 } }, { MODKEY|ControlMask, XK_Right, tagcycle, {.i = +1 } },