config.default.h
author Anselm R. Garbe <arg@suckless.org>
Wed, 30 May 2007 12:10:01 +0200
changeset 909 8a8b7a413e66
parent 906 e04a79845936
child 910 c13cb8c6b7a5
permissions -rw-r--r--
Jukka also belongs to Copyright holders after all he has contributed and done for dwm, updated -v as well
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
858
b797071ebbd4 yet another fix of copyright compactisition
Anselm R. Garbe <arg@suckless.org>
parents: 845
diff changeset
     1
/* © 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
b797071ebbd4 yet another fix of copyright compactisition
Anselm R. Garbe <arg@suckless.org>
parents: 845
diff changeset
     2
 * © 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
909
8a8b7a413e66 Jukka also belongs to Copyright holders after all he has contributed and done for dwm, updated -v as well
Anselm R. Garbe <arg@suckless.org>
parents: 906
diff changeset
     3
 * © 2006-2007 Jukka Salmi <jukka at salmi dot ch>
905
ca352bd2f8f7 added anydot to Copyright holders, because he contributed a lot recently
Anselm R. Garbe <arg@suckless.org>
parents: 878
diff changeset
     4
 * © 2007 Premysl Hruby <dfenze at gmail dot com>
906
e04a79845936 added nsz to copyright holders as well, because he did a lot recently
Anselm R. Garbe <arg@suckless.org>
parents: 905
diff changeset
     5
 * © 2007 Szabolcs Nagy <nszabolcs at gmail dot com>
858
b797071ebbd4 yet another fix of copyright compactisition
Anselm R. Garbe <arg@suckless.org>
parents: 845
diff changeset
     6
 * See LICENSE file for license details. */
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
     7
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
     8
/* appearance */
878
d2ae55f83f9f made bar togglalble
Anselm R. Garbe <arg@suckless.org>
parents: 858
diff changeset
     9
#define BARPOS			BarTop /* BarBot, BarOff */
769
dc60583894e0 introduced tile.c, some refactoring of functions
Anselm R. Garbe <arg@suckless.org>
parents: 758
diff changeset
    10
#define BORDERPX		1
623
5308dd22b6ee found compromise for fonts
arg@mig29
parents: 622
diff changeset
    11
#define FONT			"-*-fixed-medium-r-normal-*-13-*-*-*-*-*-*-*"
689
cbec08a54a15 implemented new color scheme accordingly to Sanders proposal
Anselm R. Garbe <arg@suckless.org>
parents: 688
diff changeset
    12
#define NORMBORDERCOLOR		"#dddddd"
694
dd2e2c947b1c applied new default colors
Anselm R. Garbe <arg@suckless.org>
parents: 689
diff changeset
    13
#define NORMBGCOLOR		"#eeeeee"
dd2e2c947b1c applied new default colors
Anselm R. Garbe <arg@suckless.org>
parents: 689
diff changeset
    14
#define NORMFGCOLOR		"#222222"
dd2e2c947b1c applied new default colors
Anselm R. Garbe <arg@suckless.org>
parents: 689
diff changeset
    15
#define SELBORDERCOLOR		"#ff0000"
dd2e2c947b1c applied new default colors
Anselm R. Garbe <arg@suckless.org>
parents: 689
diff changeset
    16
#define SELBGCOLOR		"#006699"
dd2e2c947b1c applied new default colors
Anselm R. Garbe <arg@suckless.org>
parents: 689
diff changeset
    17
#define SELFGCOLOR		"#ffffff"
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
    18
845
baee494346e5 prepared 3.7, ready to rambo
Anselm R. Garbe <arg@suckless.org>
parents: 842
diff changeset
    19
/* tagging */
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    20
#define TAGS \
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    21
const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL };
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    22
/* Query class:instance:title for regex matching info with following command:
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    23
 * xprop | awk -F '"' '/^WM_CLASS/ { printf("%s:%s:",$4,$2) }; /^WM_NAME/ { printf("%s\n",$2) }' */
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    24
#define RULES \
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    25
static Rule rule[] = { \
837
123231b9eb87 renamed untiled into floating, keeping tiled instead of tiling (afaik tiled sounds more correct) - English speakers convinced me
Anselm R. Garbe <arg@suckless.org>
parents: 833
diff changeset
    26
	/* class:instance:title regex	tags regex	isfloating */ \
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    27
	{ "Gimp",			NULL,		True }, \
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    28
	{ "MPlayer",			NULL,		True }, \
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    29
	{ "Acroread",			NULL,		True }, \
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    30
};
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    31
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    32
/* layout(s) */
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    33
#define LAYOUTS \
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    34
static Layout layout[] = { \
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    35
	/* symbol		function */ \
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    36
	{ "[]=",		tile }, /* first entry is default */ \
837
123231b9eb87 renamed untiled into floating, keeping tiled instead of tiling (afaik tiled sounds more correct) - English speakers convinced me
Anselm R. Garbe <arg@suckless.org>
parents: 833
diff changeset
    37
	{ "><>",		floating }, \
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    38
};
840
602c33407b57 default masterwidth should also be at 600
Anselm R. Garbe <arg@suckless.org>
parents: 839
diff changeset
    39
#define MASTERWIDTH		600		/* master width per thousand */
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    40
#define NMASTER			1		/* clients in master area */
833
5dbe50521b57 nah, I don't want 640 as MASTERWIDTH
Anselm R. Garbe <arg@suckless.org>
parents: 832
diff changeset
    41
#define SNAP			32		/* snap pixel */
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    42
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    43
/* key definitions */
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    44
#define MODKEY			Mod1Mask
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
    45
#define KEYS \
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
    46
static Key key[] = { \
589
732c58a3d92d returning to old Key struct
arg@mig29
parents: 586
diff changeset
    47
	/* modifier			key		function	argument */ \
823
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    48
	{ MODKEY|ShiftMask,		XK_Return,	spawn,		"exec xterm" }, \
838
168547cc501b well I agree to several people claiming h/j/k/l is the better default than Tab/S-Tab/g/s for focus and master resizing
Anselm R. Garbe <arg@suckless.org>
parents: 837
diff changeset
    49
	{ MODKEY,			XK_p,		spawn, 		"exe=`dmenu_path | dmenu` && exec $exe" }, \
823
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    50
	{ MODKEY,			XK_space,	setlayout,	NULL }, \
878
d2ae55f83f9f made bar togglalble
Anselm R. Garbe <arg@suckless.org>
parents: 858
diff changeset
    51
	{ MODKEY,			XK_b,		togglebar,	NULL }, \
839
6cb99239c29b changed order if h/l
Anselm R. Garbe <arg@suckless.org>
parents: 838
diff changeset
    52
	{ MODKEY,			XK_h,		incmasterw,	"-32" }, \
838
168547cc501b well I agree to several people claiming h/j/k/l is the better default than Tab/S-Tab/g/s for focus and master resizing
Anselm R. Garbe <arg@suckless.org>
parents: 837
diff changeset
    53
	{ MODKEY,			XK_l,		incmasterw,	"32" }, \
842
572ae39c86e2 replacing Mod1-i with Mod1-Shift-j, Mod1-d with Mod1-Shift-k
Anselm R. Garbe <arg@suckless.org>
parents: 840
diff changeset
    54
	{ MODKEY|ShiftMask,		XK_j,		incnmaster,	"1" }, \
572ae39c86e2 replacing Mod1-i with Mod1-Shift-j, Mod1-d with Mod1-Shift-k
Anselm R. Garbe <arg@suckless.org>
parents: 840
diff changeset
    55
	{ MODKEY|ShiftMask,		XK_k,		incnmaster,	"-1" }, \
838
168547cc501b well I agree to several people claiming h/j/k/l is the better default than Tab/S-Tab/g/s for focus and master resizing
Anselm R. Garbe <arg@suckless.org>
parents: 837
diff changeset
    56
	{ MODKEY,			XK_j,		focusclient,	"1" }, \
168547cc501b well I agree to several people claiming h/j/k/l is the better default than Tab/S-Tab/g/s for focus and master resizing
Anselm R. Garbe <arg@suckless.org>
parents: 837
diff changeset
    57
	{ MODKEY,			XK_k,		focusclient,	"-1" }, \
823
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    58
	{ MODKEY,			XK_m,		togglemax,	NULL }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    59
	{ MODKEY,			XK_Return,	zoom,		NULL }, \
837
123231b9eb87 renamed untiled into floating, keeping tiled instead of tiling (afaik tiled sounds more correct) - English speakers convinced me
Anselm R. Garbe <arg@suckless.org>
parents: 833
diff changeset
    60
	{ MODKEY|ShiftMask,		XK_space,	togglefloating,	NULL }, \
823
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    61
	{ MODKEY|ShiftMask,		XK_c,		killclient,	NULL }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    62
	{ MODKEY,			XK_0,		view,		NULL }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    63
	{ MODKEY,			XK_1,		view,		"0" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    64
	{ MODKEY,			XK_2,		view,		"1" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    65
	{ MODKEY,			XK_3,		view,		"2" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    66
	{ MODKEY,			XK_4,		view,		"3" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    67
	{ MODKEY,			XK_5,		view,		"4" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    68
	{ MODKEY,			XK_6,		view,		"5" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    69
	{ MODKEY,			XK_7,		view,		"6" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    70
	{ MODKEY,			XK_8,		view,		"7" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    71
	{ MODKEY,			XK_9,		view,		"8" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    72
	{ MODKEY|ControlMask,		XK_1,		toggleview,	"0" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    73
	{ MODKEY|ControlMask,		XK_2,		toggleview,	"1" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    74
	{ MODKEY|ControlMask,		XK_3,		toggleview,	"2" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    75
	{ MODKEY|ControlMask,		XK_4,		toggleview,	"3" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    76
	{ MODKEY|ControlMask,		XK_5,		toggleview,	"4" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    77
	{ MODKEY|ControlMask,		XK_6,		toggleview,	"5" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    78
	{ MODKEY|ControlMask,		XK_7,		toggleview,	"6" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    79
	{ MODKEY|ControlMask,		XK_8,		toggleview,	"7" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    80
	{ MODKEY|ControlMask,		XK_9,		toggleview,	"8" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    81
	{ MODKEY|ShiftMask,		XK_0,		tag,		NULL }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    82
	{ MODKEY|ShiftMask,		XK_1,		tag,		"0" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    83
	{ MODKEY|ShiftMask,		XK_2,		tag,		"1" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    84
	{ MODKEY|ShiftMask,		XK_3,		tag,		"2" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    85
	{ MODKEY|ShiftMask,		XK_4,		tag,		"3" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    86
	{ MODKEY|ShiftMask,		XK_5,		tag,		"4" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    87
	{ MODKEY|ShiftMask,		XK_6,		tag,		"5" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    88
	{ MODKEY|ShiftMask,		XK_7,		tag,		"6" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    89
	{ MODKEY|ShiftMask,		XK_8,		tag,		"7" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    90
	{ MODKEY|ShiftMask,		XK_9,		tag,		"8" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    91
	{ MODKEY|ControlMask|ShiftMask,	XK_1,		toggletag,	"0" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    92
	{ MODKEY|ControlMask|ShiftMask,	XK_2,		toggletag,	"1" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    93
	{ MODKEY|ControlMask|ShiftMask,	XK_3,		toggletag,	"2" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    94
	{ MODKEY|ControlMask|ShiftMask,	XK_4,		toggletag,	"3" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    95
	{ MODKEY|ControlMask|ShiftMask,	XK_5,		toggletag,	"4" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    96
	{ MODKEY|ControlMask|ShiftMask,	XK_6,		toggletag,	"5" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    97
	{ MODKEY|ControlMask|ShiftMask,	XK_7,		toggletag,	"6" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    98
	{ MODKEY|ControlMask|ShiftMask,	XK_8,		toggletag,	"7" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
    99
	{ MODKEY|ControlMask|ShiftMask,	XK_9,		toggletag,	"8" }, \
fb5cbf0bd923 replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe <arg@suckless.org>
parents: 822
diff changeset
   100
	{ MODKEY|ShiftMask,		XK_q,		quit,		NULL }, \
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
   101
};