diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2008-03-14 17:17:08 +0000 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2008-03-14 17:17:08 +0000 |
commit | 33b1960220f468ff2888e8ba3517e9a62ed99974 (patch) | |
tree | 29c0ce55031bb61dec5e6937fd099638964ed478 /config.def.h | |
parent | e237b2a76fb3dac1f43b91e5c7b6adb9ef04c9ed (diff) | |
download | dwm-33b1960220f468ff2888e8ba3517e9a62ed99974.tar dwm-33b1960220f468ff2888e8ba3517e9a62ed99974.tar.gz dwm-33b1960220f468ff2888e8ba3517e9a62ed99974.tar.bz2 |
some experimental state DO NOT USE THIS, I plan to have a nicer interface to change geometries
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index 4254c43..0866e2e 100644 --- a/config.def.h +++ b/config.def.h @@ -9,6 +9,7 @@ #define SELBORDERCOLOR "#0066ff" #define SELBGCOLOR "#0066ff" #define SELFGCOLOR "#ffffff" +#define GEOMETRY "0 0 W B 0 B W H-B 0 B W*0.55 H-B W*0.45 B H-B 0 B W H-B" /* tagging */ const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; @@ -21,9 +22,6 @@ Rule rules[] = { { NULL, NULL, "Acroread", NULL, True }, }; -/* geometry function */ -void (*setgeoms)(void) = setdefgeoms; - /* layout(s) */ #define RESIZEHINTS True /* False - respect size hints in tiled resizals */ #define SNAP 32 /* snap pixel */ @@ -40,6 +38,8 @@ Layout layouts[] = { #define MODKEY Mod1Mask Key keys[] = { /* modifier key function argument */ + { MODKEY, XK_a, setgeom, "0 0 W B 0 B W H-B 0 B 1280 800-B 1280 0 W-1280 H 0 B 1280 800-B" }, + { MODKEY, XK_d, setgeom, GEOMETRY }, { MODKEY, XK_p, spawn, "exec dmenu_run -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"' -sb '"SELBGCOLOR"' -sf '"SELFGCOLOR"'" }, { MODKEY|ShiftMask, XK_Return, spawn, "exec uxterm" }, |