config.arg.h
author Anselm R. Garbe <arg@suckless.org>
Tue, 15 May 2007 12:09:18 +0200
changeset 878 d2ae55f83f9f
parent 862 b0b95daf853b
child 899 be0361d55c96
permissions -rw-r--r--
made bar togglalble
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 */
878
d2ae55f83f9f made bar togglalble
Anselm R. Garbe <arg@suckless.org>
parents: 862
diff changeset
     6
#define BARPOS			BarTop /* BarBot, BarOff */
769
dc60583894e0 introduced tile.c, some refactoring of functions
Anselm R. Garbe <arg@suckless.org>
parents: 758
diff changeset
     7
#define BORDERPX		1
862
b0b95daf853b using pixelcarnage-monospace (proggyclean), because this is better to the eyes
Anselm R. Garbe <arg@suckless.org>
parents: 858
diff changeset
     8
#define FONT			"-*-pixelcarnage monospace-*-r-*-*-14-*-*-*-*-*-*-*"
689
cbec08a54a15 implemented new color scheme accordingly to Sanders proposal
Anselm R. Garbe <arg@suckless.org>
parents: 688
diff changeset
     9
#define NORMBORDERCOLOR		"#333"
681
335c93c666c7 this looks better now ;)
Anselm R. Garbe <arg@suckless.org>
parents: 680
diff changeset
    10
#define NORMBGCOLOR		"#222"
335c93c666c7 this looks better now ;)
Anselm R. Garbe <arg@suckless.org>
parents: 680
diff changeset
    11
#define NORMFGCOLOR		"#ccc"
807
5f8b05768780 using a green selborder
Anselm R. Garbe <arg@suckless.org>
parents: 806
diff changeset
    12
#define SELBORDERCOLOR		"#8c8"
806
b70dfab847b7 reverting to bg 555
Anselm R. Garbe <arg@suckless.org>
parents: 805
diff changeset
    13
#define SELBGCOLOR		"#555"
681
335c93c666c7 this looks better now ;)
Anselm R. Garbe <arg@suckless.org>
parents: 680
diff changeset
    14
#define SELFGCOLOR		"#fff"
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: 786
diff changeset
    17
#define TAGS \
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 786
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
#define RULES \
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    20
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
    21
	/* 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
    22
	{ "Firefox",			"3",		False }, \
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    23
	{ "Gimp",			NULL,		True }, \
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    24
	{ "MPlayer",			NULL,		True }, \
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    25
	{ "Acroread",			NULL,		True }, \
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    26
};
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 786
diff changeset
    27
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    28
/* layout(s) */
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 786
diff changeset
    29
#define LAYOUTS \
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 786
diff changeset
    30
static Layout layout[] = { \
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 786
diff changeset
    31
	/* symbol		function */ \
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 786
diff changeset
    32
	{ "[]=",		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
    33
	{ "><>",		floating }, \
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 786
diff changeset
    34
};
833
5dbe50521b57 nah, I don't want 640 as MASTERWIDTH
Anselm R. Garbe <arg@suckless.org>
parents: 832
diff changeset
    35
#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
    36
#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
    37
#define SNAP			32		/* snap pixel */
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 786
diff changeset
    38
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    39
/* key definitions */
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    40
#define MODKEY			Mod1Mask
152
4a64fd270e47 removed 5LOC
arg@10ksloc.org
parents: 150
diff changeset
    41
#define KEYS \
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
    42
static Key key[] = { \
693
2d96ab546084 applied sanders patch of my config
Anselm R. Garbe <arg@suckless.org>
parents: 689
diff changeset
    43
	/* modifier			key		function	argument */ \
816
f52272c62eb9 nah grouped keybindings by context
Anselm R. Garbe <arg@suckless.org>
parents: 813
diff changeset
    44
	{ MODKEY,			XK_p,		spawn, \
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
    45
		"exe=`dmenu_path | dmenu -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"'" \
841
ce272578871b oops, small bugfix in my config
Anselm R. Garbe <arg@suckless.org>
parents: 838
diff changeset
    46
		" -sb '"SELBGCOLOR"' -sf '"SELFGCOLOR"'` && exec $exe" }, \
816
f52272c62eb9 nah grouped keybindings by context
Anselm R. Garbe <arg@suckless.org>
parents: 813
diff changeset
    47
	{ MODKEY|ShiftMask,		XK_Return,	spawn, \
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
    48
		"exec urxvtcd -tr -bg '#222' -fg '#eee' -cr '#eee' +sb -fn '"FONT"'" }, \
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: 816
diff changeset
    49
	{ MODKEY,			XK_space,	setlayout,	NULL }, \
878
d2ae55f83f9f made bar togglalble
Anselm R. Garbe <arg@suckless.org>
parents: 862
diff changeset
    50
	{ MODKEY,			XK_b,		togglebar,	NULL }, \
832
a634bea99a51 using MASTERWIDTH=640 and 32px steps by default (incmasterw())
Anselm R. Garbe <arg@suckless.org>
parents: 830
diff changeset
    51
	{ MODKEY,			XK_h,		incmasterw,	"-32" }, \
a634bea99a51 using MASTERWIDTH=640 and 32px steps by default (incmasterw())
Anselm R. Garbe <arg@suckless.org>
parents: 830
diff changeset
    52
	{ 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: 841
diff changeset
    53
	{ 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: 841
diff changeset
    54
	{ MODKEY|ShiftMask,		XK_k,		incnmaster,	"-1" }, \
829
f1ec35606dbc merged focus{prev.next} into focusclient(1/-1)
Anselm R. Garbe <arg@suckless.org>
parents: 823
diff changeset
    55
	{ MODKEY,			XK_j,		focusclient,	"1" }, \
f1ec35606dbc merged focus{prev.next} into focusclient(1/-1)
Anselm R. Garbe <arg@suckless.org>
parents: 823
diff changeset
    56
	{ 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: 816
diff changeset
    57
	{ 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: 816
diff changeset
    58
	{ 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
    59
	{ 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: 816
diff changeset
    60
	{ 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: 816
diff changeset
    61
	{ 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: 816
diff changeset
    62
	{ 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: 816
diff changeset
    63
	{ 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: 816
diff changeset
    64
	{ 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: 816
diff changeset
    65
	{ 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: 816
diff changeset
    66
	{ 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: 816
diff changeset
    67
	{ 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: 816
diff changeset
    68
	{ 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: 816
diff changeset
    69
	{ 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: 816
diff changeset
    70
	{ 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: 816
diff changeset
    71
	{ 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: 816
diff changeset
    72
	{ 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: 816
diff changeset
    73
	{ 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: 816
diff changeset
    74
	{ 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: 816
diff changeset
    75
	{ 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: 816
diff changeset
    76
	{ 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: 816
diff changeset
    77
	{ 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: 816
diff changeset
    78
	{ 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: 816
diff changeset
    79
	{ 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: 816
diff changeset
    80
	{ 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: 816
diff changeset
    81
	{ 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: 816
diff changeset
    82
	{ 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: 816
diff changeset
    83
	{ 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: 816
diff changeset
    84
	{ 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: 816
diff changeset
    85
	{ 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: 816
diff changeset
    86
	{ 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: 816
diff changeset
    87
	{ 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: 816
diff changeset
    88
	{ 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: 816
diff changeset
    89
	{ 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: 816
diff changeset
    90
	{ 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: 816
diff changeset
    91
	{ 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: 816
diff changeset
    92
	{ 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: 816
diff changeset
    93
	{ 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: 816
diff changeset
    94
	{ 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: 816
diff changeset
    95
	{ 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: 816
diff changeset
    96
	{ 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: 816
diff changeset
    97
	{ 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: 816
diff changeset
    98
	{ 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: 816
diff changeset
    99
	{ MODKEY|ShiftMask,		XK_q,		quit,		NULL }, \
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
   100
};