about summary refs log tree commit diff stats
path: root/config.def.h
Commit message (Expand)AuthorAgeFilesLines
* changed arrange functions to contain the Monitor as first argumentAnselm R Garbe2008-02-211-1/+1
* proceeded with multihead/Xinerama supportanselm@anselm12007-12-221-5/+5
* removed maximize, there will be monocle soonanselm@anselm12007-12-221-1/+0
* fixed wrong tagging stuffanselm@anselm12007-12-221-1/+1
* added dmenu_run to config.hanselm@anselm12007-12-221-2/+1
* simplified Mod-mAnselm R. Garbe2007-12-091-1/+1
* implemented reapply for re-applying the tagging rules during runtime, Mod-rAnselm R. Garbe2007-12-081-0/+1
* Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!Anselm R. Garbe2007-11-101-58/+57
* moved LENGTH to dwm.c, moved prevtags to dwm.carg@suckless.org2007-11-071-4/+0
* revival of RESIZEHINTSAnselm R. Garbe2007-11-021-0/+1
* replaced Nmacros with LENGTH(x) macroAnselm R. Garbe2007-10-281-6/+5
* replaced ISTILE with domwfact/dozoom bools, removed nrules, nlayouts and ltid...Anselm R. Garbe2007-10-281-1/+3
* going toward 4.7Anselm R. Garbe2007-10-271-0/+3
* removed RESIZEHINTS and enhanced tile for fixed or aspect-ratio'ed clientsarg@suckless.org2007-10-241-1/+0
* added antoszka's viewprev patch with some minor modifications, restored Clien...Anselm R. Garbe2007-10-101-0/+1
* removing NULL-terminating **tags definition in config.hAnselm R. Garbe2007-10-051-1/+1
* s/xterm/uxterm/Anselm R. Garbe2007-10-011-1/+1
* fixed font definitionAnselm R. Garbe2007-10-011-1/+1
* applied Peter Hartlich's border collapse patchAnselm R. Garbe2007-09-301-7/+7
* fixed colorsAnselm R. Garbe2007-09-271-3/+3
* updated with my favorite colorschemeAnselm R. Garbe2007-09-261-7/+6
* applied colors depend from lavishs proposalAnselm R. Garbe2007-09-251-6/+6
* switching to white normal bg, renaming tag 9 into www, for static use in conj...Anselm R. Garbe2007-09-231-9/+9
* renamed config.h into config.def.h, config.h will be created if not present, ...Anselm R. Garbe2007-09-231-0/+94
h following command: * xprop | awk -F '"' '/^WM_CLASS/ { printf("%s:%s:",$4,$2) }; /^WM_NAME/ { printf("%s\n",$2) }' */ #define RULES \ static Rule rule[] = { \ /* class:instance:title regex tags regex isfloating */ \ { "Gimp", NULL, True }, \ { "MPlayer", NULL, True }, \ { "Acroread", NULL, True }, \ }; /* layout(s) */ #define LAYOUTS \ static Layout layout[] = { \ /* symbol function */ \ { "[]=", tile }, /* first entry is default */ \ { "><>", floating }, \ }; #define NMASTER 1 /* clients in master area */ #define RATIO .8 /* ratio of tile */ #define SNAP 32 /* snap pixel */ /* key definitions */ #define MODKEY Mod1Mask #define KEYS \ static Key key[] = { \ /* modifier key function argument */ \ { MODKEY|ShiftMask, XK_Return, spawn, "exec xterm" }, \ { MODKEY, XK_p, spawn, "exe=`dmenu_path | dmenu` && exec $exe" }, \ { MODKEY, XK_space, setlayout, NULL }, \ { MODKEY, XK_b, togglebar, NULL }, \ { MODKEY, XK_h, incratio, ".1" }, \ { MODKEY, XK_l, incratio, "-.1" }, \ { MODKEY|ShiftMask, XK_j, incnmaster, "1" }, \ { MODKEY|ShiftMask, XK_k, incnmaster, "-1" }, \ { MODKEY, XK_j, focusclient, "1" }, \ { MODKEY, XK_k, focusclient, "-1" }, \ { MODKEY, XK_m, togglemax, NULL }, \ { MODKEY, XK_Return, zoom, NULL }, \ { MODKEY|ShiftMask, XK_space, togglefloating, NULL }, \ { MODKEY|ShiftMask, XK_c, killclient, NULL }, \ { MODKEY, XK_0, view, NULL }, \ { MODKEY, XK_1, view, "0" }, \ { MODKEY, XK_2, view, "1" }, \ { MODKEY, XK_3, view, "2" }, \ { MODKEY, XK_4, view, "3" }, \ { MODKEY, XK_5, view, "4" }, \ { MODKEY, XK_6, view, "5" }, \ { MODKEY, XK_7, view, "6" }, \ { MODKEY, XK_8, view, "7" }, \ { MODKEY, XK_9, view, "8" }, \ { MODKEY|ControlMask, XK_1, toggleview, "0" }, \ { MODKEY|ControlMask, XK_2, toggleview, "1" }, \ { MODKEY|ControlMask, XK_3, toggleview, "2" }, \ { MODKEY|ControlMask, XK_4, toggleview, "3" }, \ { MODKEY|ControlMask, XK_5, toggleview, "4" }, \ { MODKEY|ControlMask, XK_6, toggleview, "5" }, \ { MODKEY|ControlMask, XK_7, toggleview, "6" }, \ { MODKEY|ControlMask, XK_8, toggleview, "7" }, \ { MODKEY|ControlMask, XK_9, toggleview, "8" }, \ { MODKEY|ShiftMask, XK_0, tag, NULL }, \ { MODKEY|ShiftMask, XK_1, tag, "0" }, \ { MODKEY|ShiftMask, XK_2, tag, "1" }, \ { MODKEY|ShiftMask, XK_3, tag, "2" }, \ { MODKEY|ShiftMask, XK_4, tag, "3" }, \ { MODKEY|ShiftMask, XK_5, tag, "4" }, \ { MODKEY|ShiftMask, XK_6, tag, "5" }, \ { MODKEY|ShiftMask, XK_7, tag, "6" }, \ { MODKEY|ShiftMask, XK_8, tag, "7" }, \ { MODKEY|ShiftMask, XK_9, tag, "8" }, \ { MODKEY|ControlMask|ShiftMask, XK_1, toggletag, "0" }, \ { MODKEY|ControlMask|ShiftMask, XK_2, toggletag, "1" }, \ { MODKEY|ControlMask|ShiftMask, XK_3, toggletag, "2" }, \ { MODKEY|ControlMask|ShiftMask, XK_4, toggletag, "3" }, \ { MODKEY|ControlMask|ShiftMask, XK_5, toggletag, "4" }, \ { MODKEY|ControlMask|ShiftMask, XK_6, toggletag, "5" }, \ { MODKEY|ControlMask|ShiftMask, XK_7, toggletag, "6" }, \ { MODKEY|ControlMask|ShiftMask, XK_8, toggletag, "7" }, \ { MODKEY|ControlMask|ShiftMask, XK_9, toggletag, "8" }, \ { MODKEY|ShiftMask, XK_q, quit, NULL }, \ };