aboutsummaryrefslogtreecommitdiffstats
path: root/config.arg.h
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-22 22:10:16 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-22 22:10:16 +0100
commit338c0838580b32f1258a800392d93cf973baf1e6 (patch)
tree30387958f30336d7617f63a085128cbe40651d2f /config.arg.h
parent671442e89d6e8e8c42912df08a82466f126a7b3b (diff)
downloaddwm-338c0838580b32f1258a800392d93cf973baf1e6.tar.zst
renamed untiled into floating, keeping tiled instead of tiling (afaik tiled sounds more correct) - English speakers convinced me
Diffstat (limited to 'config.arg.h')
-rw-r--r--config.arg.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.arg.h b/config.arg.h
index f286769..7452a2f 100644
--- a/config.arg.h
+++ b/config.arg.h
@@ -18,7 +18,7 @@
const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL };
#define RULES \
static Rule rule[] = { \
- /* class:instance:title regex tags regex isuntiled */ \
+ /* class:instance:title regex tags regex isfloating */ \
{ "Firefox", "3", False }, \
{ "Gimp", NULL, True }, \
{ "MPlayer", NULL, True }, \
@@ -30,7 +30,7 @@ static Rule rule[] = { \
static Layout layout[] = { \
/* symbol function */ \
{ "[]=", tile }, /* first entry is default */ \
- { "><>", untile }, \
+ { "><>", floating }, \
};
#define MASTERWIDTH 600 /* master width per thousand */
#define NMASTER 1 /* clients in master area */
@@ -56,7 +56,7 @@ static Key key[] = { \
{ MODKEY, XK_k, focusclient, "-1" }, \
{ MODKEY, XK_m, togglemax, NULL }, \
{ MODKEY, XK_Return, zoom, NULL }, \
- { MODKEY|ShiftMask, XK_space, toggletiled, NULL }, \
+ { MODKEY|ShiftMask, XK_space, togglefloating, NULL }, \
{ MODKEY|ShiftMask, XK_c, killclient, NULL }, \
{ MODKEY, XK_0, view, NULL }, \
{ MODKEY, XK_1, view, "0" }, \