diff options
author | Anselm R. Garbe <garbeam@gmail.com> | 2007-08-16 18:41:22 +0200 |
---|---|---|
committer | Anselm R. Garbe <garbeam@gmail.com> | 2007-08-16 18:41:22 +0200 |
commit | 04dec4c94390fdf57893615de5b5872dd5abbce4 (patch) | |
tree | 70baf422ae086ea7467c4550a0cfd0b9f288b4d7 /config.default.h | |
parent | e40448fd6340620354d82d801d975eaa53dbd924 (diff) | |
download | dwm-04dec4c94390fdf57893615de5b5872dd5abbce4.tar.gz |
made plural arrays
Diffstat (limited to 'config.default.h')
-rw-r--r-- | config.default.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.default.h b/config.default.h index 878e0a4..4e9a16f 100644 --- a/config.default.h +++ b/config.default.h @@ -17,7 +17,7 @@ const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL }; /* Query class:instance:title for regex matching info with following command: * xprop | awk -F '"' '/^WM_CLASS/ { printf("%s:%s:",$4,$2) }; /^WM_NAME/ { printf("%s\n",$2) }' */ #define RULES \ -static Rule rule[] = { \ +static Rule rules[] = { \ /* class:instance:title regex tags regex isfloating */ \ { "Gimp", NULL, True }, \ { "MPlayer", NULL, True }, \ @@ -27,7 +27,7 @@ static Rule rule[] = { \ /* layout(s) */ #include "tile.h" #define LAYOUTS \ -static Layout layout[] = { \ +static Layout layouts[] = { \ /* symbol function */ \ { "[]=", tile }, /* first entry is default */ \ { "><>", floating }, \ @@ -38,7 +38,7 @@ static Layout layout[] = { \ /* key definitions */ #define MODKEY Mod1Mask #define KEYS \ -Key key[] = { \ +Key keys[] = { \ /* modifier key function argument */ \ { MODKEY|ShiftMask, XK_Return, spawn, "exec xterm" }, \ { MODKEY, XK_p, spawn, "exe=`dmenu_path | dmenu` && exec $exe" }, \ |