commit a8f5731848a3c9083cb2c2126fddf9344dc8a591
parent 52074f8aa5919a876b55e1189c7700f2f95e0218
Author: jd <jdfriedrikson@gmail.com>
Date: Wed, 31 Dec 2014 11:07:03 -0800
fixed the tagall instructions for config.def.h after talking to Jan
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dwm.suckless.org/patches/tagall.md b/dwm.suckless.org/patches/tagall.md
@@ -16,15 +16,15 @@ Patches against different versions of dwm are available at
* MODKEY+Shift+F1 moves all floating windows of the current tag to tag 1
- { MODKEY|ShiftMask, XK_F1, tagall, "F1" }, \
+ { MODKEY|ShiftMask, XK_F1, tagall, {.v = "F1"} }, \
...
- { MODKEY|ShiftMask, XK_F9, tagall, "F9" }, \
+ { MODKEY|ShiftMask, XK_F9, tagall, {.v = "F9"} }, \
* MODKEY+Shift+F1 moves all windows of the current tag to tag 1
- { MODKEY|ShiftMask, XK_F1, tagall, "1" }, \
+ { MODKEY|ShiftMask, XK_F1, tagall, {.v = "1"} }, \
...
- { MODKEY|ShiftMask, XK_F9, tagall, "9" }, \
+ { MODKEY|ShiftMask, XK_F9, tagall, {.v = "9"} }, \
## Author ##
* Jan Christoph Ebersbach - <jceb@e-jc.de>