diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2008-10-19 12:59:18 +0100 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2008-10-19 12:59:18 +0100 |
commit | ea8a4ca46a9577997e0a3f30e211c644477c6a00 (patch) | |
tree | 3fe28522c91d99ce560474ef858636b693f80eb1 /config.def.h | |
parent | 4883a062216fa7fca0d4b6250478cf53ce1210f0 (diff) | |
download | dwm-ea8a4ca46a9577997e0a3f30e211c644477c6a00.tar.gz |
several changes towards 5.3, XINERAMA is disabled by default, introduced usegrab Bool for grabbing the server during mouse-based resizals/movements (disabled by default), continued debugging tile() with resizehints == True and a lot of terminals supporting resizehints, still no optimal solution, I need to think about it, considering recursive algorithm for the space optimization
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 706cfa9..7c19b2f 100644 --- a/config.def.h +++ b/config.def.h @@ -13,6 +13,8 @@ static unsigned int snap = 32; /* snap pixel */ static Bool showbar = True; /* False means no bar */ static Bool topbar = True; /* False means bottom bar */ static Bool readin = True; /* False means do not read stdin */ +static Bool usegrab = False; /* True means grabbing the X server + during mouse-based resizals */ /* tagging */ static const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; |