config.default.h
author Anselm R. Garbe <arg@suckless.org>
Fri, 13 Apr 2007 11:40:09 +0200
changeset 858 b797071ebbd4
parent 845 baee494346e5
child 878 d2ae55f83f9f
permissions -rw-r--r--
yet another fix of copyright compactisition
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>
b797071ebbd4 yet another fix of copyright compactisition
Anselm R. Garbe <arg@suckless.org>
parents: 845
diff changeset
     3
 * See LICENSE file for license details. */
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
     4
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
     5
/* appearance */
769
dc60583894e0 introduced tile.c, some refactoring of functions
Anselm R. Garbe <arg@suckless.org>
parents: 758
diff changeset
     6
#define BORDERPX		1
623
5308dd22b6ee found compromise for fonts
arg@mig29
parents: 622
diff changeset
     7
#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
     8
#define NORMBORDERCOLOR		"#dddddd"
694
dd2e2c947b1c applied new default colors
Anselm R. Garbe <arg@suckless.org>
parents: 689
diff changeset
     9
#define NORMBGCOLOR		"#eeeeee"
dd2e2c947b1c applied new default colors
Anselm R. Garbe <arg@suckless.org>
parents: 689
diff changeset
    10
#define NORMFGCOLOR		"#222222"
dd2e2c947b1c applied new default colors
Anselm R. Garbe <arg@suckless.org>
parents: 689
diff changeset
    11
#define SELBORDERCOLOR		"#ff0000"
dd2e2c947b1c applied new default colors
Anselm R. Garbe <arg@suckless.org>
parents: 689
diff changeset
    12
#define SELBGCOLOR		"#006699"
dd2e2c947b1c applied new default colors
Anselm R. Garbe <arg@suckless.org>
parents: 689
diff changeset
    13
#define SELFGCOLOR		"#ffffff"
739
7834ffd650d5 added TOPBAR option for making the bar appear what the user likes
Anselm R. Garbe <arg@suckless.org>
parents: 703
diff changeset
    14
#define TOPBAR			True		/* False */
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
    15
845
baee494346e5 prepared 3.7, ready to rambo
Anselm R. Garbe <arg@suckless.org>
parents: 842
diff changeset
    16
/* tagging */
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    17
#define TAGS \
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    18
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
    19
/* 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
    20
 * 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
    21
#define RULES \
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    22
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
    23
	/* 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
    24
	{ "Gimp",			NULL,		True }, \
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    25
	{ "MPlayer",			NULL,		True }, \
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    26
	{ "Acroread",			NULL,		True }, \
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    27
};
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    28
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    29
/* layout(s) */
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    30
#define LAYOUTS \
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    31
static Layout layout[] = { \
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    32
	/* symbol		function */ \
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    33
	{ "[]=",		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
    34
	{ "><>",		floating }, \
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    35
};
840
602c33407b57 default masterwidth should also be at 600
Anselm R. Garbe <arg@suckless.org>
parents: 839
diff changeset
    36
#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
    37
#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
    38
#define SNAP			32		/* snap pixel */
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    39
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    40
/* key definitions */
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    41
#define MODKEY			Mod1Mask
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
    42
#define KEYS \
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
    43
static Key key[] = { \
589
732c58a3d92d returning to old Key struct
arg@mig29
parents: 586
diff changeset
    44
	/* 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
    45
	{ 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
    46
	{ 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
    47
	{ MODKEY,			XK_space,	setlayout,	NULL }, \
839
6cb99239c29b changed order if h/l
Anselm R. Garbe <arg@suckless.org>
parents: 838
diff changeset
    48
	{ 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
    49
	{ 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
    50
	{ 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
    51
	{ 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
    52
	{ 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
    53
	{ 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
    54
	{ 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
    55
	{ 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
    56
	{ 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
    57
	{ 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
    58
	{ 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
    59
	{ 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
    60
	{ 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
    61
	{ 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
    62
	{ 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
    63
	{ 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
    64
	{ 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
    65
	{ 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
    66
	{ 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
    67
	{ 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
    68
	{ 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
    69
	{ 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
    70
	{ 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
    71
	{ 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
    72
	{ 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
    73
	{ 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
    74
	{ 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
    75
	{ 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
    76
	{ 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
    77
	{ 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
    78
	{ 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
    79
	{ 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
    80
	{ 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
    81
	{ 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
    82
	{ 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
    83
	{ 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
    84
	{ 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
    85
	{ 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
    86
	{ 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
    87
	{ 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
    88
	{ 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
    89
	{ 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
    90
	{ 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
    91
	{ 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
    92
	{ 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
    93
	{ 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
    94
	{ 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
    95
	{ 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
    96
	{ MODKEY|ShiftMask,		XK_q,		quit,		NULL }, \
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
    97
};