X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=config.arg.h;h=7452a2feb638a8c825814f07dbba5c7d594414a8;hb=338c0838580b32f1258a800392d93cf973baf1e6;hp=308318f7f96b6d24cceed1e6c71f0c25eeaabe2b;hpb=ef9b3e173c6e588d630d15a35c7675189a6c31b9;p=dwm.git diff --git a/config.arg.h b/config.arg.h index 308318f..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,11 +30,11 @@ static Rule rule[] = { \ static Layout layout[] = { \ /* symbol function */ \ { "[]=", tile }, /* first entry is default */ \ - { "><>", untile }, \ + { "><>", floating }, \ }; -#define MASTERWIDTH 640 /* master width per thousand */ +#define MASTERWIDTH 600 /* master width per thousand */ #define NMASTER 1 /* clients in master area */ -#define SNAP 40 /* untiled snap pixel */ +#define SNAP 32 /* snap pixel */ /* key definitions */ #define MODKEY Mod1Mask @@ -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" }, \