config.def.h
author Anselm R. Garbe <garbeam@gmail.com>
Sun, 28 Oct 2007 12:52:16 +0100
changeset 1048 98fc0d3c583a
parent 1047 ef0b927bf16c
child 1050 fb5fa382c002
permissions -rw-r--r--
replaced Nmacros with LENGTH(x) macro
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
910
c13cb8c6b7a5 referred to LICENSE file
Anselm R. Garbe <arg@suckless.org>
parents: 909
diff changeset
     1
/* See LICENSE file for copyright and license details. */
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
     2
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
     3
/* appearance */
878
d2ae55f83f9f made bar togglalble
Anselm R. Garbe <arg@suckless.org>
parents: 858
diff changeset
     4
#define BARPOS			BarTop /* BarBot, BarOff */
769
dc60583894e0 introduced tile.c, some refactoring of functions
Anselm R. Garbe <arg@suckless.org>
parents: 758
diff changeset
     5
#define BORDERPX		1
1020
2d8f63e31ffa fixed font definition
Anselm R. Garbe <garbeam@gmail.com>
parents: 1017
diff changeset
     6
#define FONT			"-*-terminus-medium-*-*-*-*-*-*-*-*-*-*-*"
1017
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
     7
#define NORMBORDERCOLOR		"#cccccc"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
     8
#define NORMBGCOLOR		"#cccccc"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
     9
#define NORMFGCOLOR		"#000000"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
    10
#define SELBORDERCOLOR		"#0066ff"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
    11
#define SELBGCOLOR		"#0066ff"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
    12
#define SELFGCOLOR		"#ffffff"
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
    13
1048
98fc0d3c583a replaced Nmacros with LENGTH(x) macro
Anselm R. Garbe <garbeam@gmail.com>
parents: 1047
diff changeset
    14
/* convenience */
98fc0d3c583a replaced Nmacros with LENGTH(x) macro
Anselm R. Garbe <garbeam@gmail.com>
parents: 1047
diff changeset
    15
#define LENGTH(x) (sizeof x / sizeof x[0])
98fc0d3c583a replaced Nmacros with LENGTH(x) macro
Anselm R. Garbe <garbeam@gmail.com>
parents: 1047
diff changeset
    16
845
baee494346e5 prepared 3.7, ready to rambo
Anselm R. Garbe <arg@suckless.org>
parents: 842
diff changeset
    17
/* tagging */
1025
107746bd83f0 removing NULL-terminating **tags definition in config.h
Anselm R. Garbe <garbeam@gmail.com>
parents: 1022
diff changeset
    18
const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "www" };
1048
98fc0d3c583a replaced Nmacros with LENGTH(x) macro
Anselm R. Garbe <garbeam@gmail.com>
parents: 1047
diff changeset
    19
Bool seltags[LENGTH(tags)] = {[0] = True};
98fc0d3c583a replaced Nmacros with LENGTH(x) macro
Anselm R. Garbe <garbeam@gmail.com>
parents: 1047
diff changeset
    20
Bool prevtags[LENGTH(tags)] = {[0] = True};
1001
2477f818215c made all stuff non-static - so you can choose wether to use dwm the static or the extern way when extending it
arg@suckless.org
parents: 990
diff changeset
    21
Rule rules[] = {
990
70f6fcd100b7 micromizing dwm step 1
Anselm R. Garbe <garbeam@gmail.com>
parents: 989
diff changeset
    22
	/* class:instance:title regex	tags regex	isfloating */
1011
92c19c929a59 switching to white normal bg, renaming tag 9 into www, for static use in conjunction with ff
Anselm R. Garbe <garbeam@gmail.com>
parents: 1009
diff changeset
    23
	{ "Firefox",			"www",		False },
990
70f6fcd100b7 micromizing dwm step 1
Anselm R. Garbe <garbeam@gmail.com>
parents: 989
diff changeset
    24
	{ "Gimp",			NULL,		True },
70f6fcd100b7 micromizing dwm step 1
Anselm R. Garbe <garbeam@gmail.com>
parents: 989
diff changeset
    25
	{ "MPlayer",			NULL,		True },
70f6fcd100b7 micromizing dwm step 1
Anselm R. Garbe <garbeam@gmail.com>
parents: 989
diff changeset
    26
	{ "Acroread",			NULL,		True },
798
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) */
1008
ac233c362502 introduced ISTILE, which can be easily extended with other layout functions to allow reuse of setmwfact() and zoom()
Anselm R. Garbe <garbeam@gmail.com>
parents: 1001
diff changeset
    30
#define MWFACT			0.6	/* master width factor [0.1 .. 0.9] */
ac233c362502 introduced ISTILE, which can be easily extended with other layout functions to allow reuse of setmwfact() and zoom()
Anselm R. Garbe <garbeam@gmail.com>
parents: 1001
diff changeset
    31
#define SNAP			32	/* snap pixel */
1001
2477f818215c made all stuff non-static - so you can choose wether to use dwm the static or the extern way when extending it
arg@suckless.org
parents: 990
diff changeset
    32
Layout layouts[] = {
990
70f6fcd100b7 micromizing dwm step 1
Anselm R. Garbe <garbeam@gmail.com>
parents: 989
diff changeset
    33
	/* symbol		function */
70f6fcd100b7 micromizing dwm step 1
Anselm R. Garbe <garbeam@gmail.com>
parents: 989
diff changeset
    34
	{ "[]=",		tile }, /* first entry is default */
70f6fcd100b7 micromizing dwm step 1
Anselm R. Garbe <garbeam@gmail.com>
parents: 989
diff changeset
    35
	{ "><>",		floating },
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    36
};
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    37
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    38
/* key definitions */
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    39
#define MODKEY			Mod1Mask
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
    40
#define KEYS \
958
8b502be8b8e0 made plural arrays
Anselm R. Garbe <garbeam@gmail.com>
parents: 956
diff changeset
    41
Key keys[] = { \
589
732c58a3d92d returning to old Key struct
arg@mig29
parents: 586
diff changeset
    42
	/* modifier			key		function	argument */ \
984
57dd38ea27ba removed config.arg.h, only 1 config.h necessary
Anselm R. Garbe <garbeam@gmail.com>
parents: 979
diff changeset
    43
	{ MODKEY,			XK_p,		spawn, \
57dd38ea27ba removed config.arg.h, only 1 config.h necessary
Anselm R. Garbe <garbeam@gmail.com>
parents: 979
diff changeset
    44
		"exe=`dmenu_path | dmenu -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"'" \
57dd38ea27ba removed config.arg.h, only 1 config.h necessary
Anselm R. Garbe <garbeam@gmail.com>
parents: 979
diff changeset
    45
		" -sb '"SELBGCOLOR"' -sf '"SELFGCOLOR"'` && exec $exe" }, \
1022
e50432b2ba5f s/xterm/uxterm/
Anselm R. Garbe <garbeam@gmail.com>
parents: 1020
diff changeset
    46
	{ MODKEY|ShiftMask,		XK_Return,	spawn, "exec uxterm" }, \
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 }, \
878
d2ae55f83f9f made bar togglalble
Anselm R. Garbe <arg@suckless.org>
parents: 858
diff changeset
    48
	{ MODKEY,			XK_b,		togglebar,	NULL }, \
956
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    49
	{ MODKEY,			XK_j,		focusnext,	NULL }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    50
	{ MODKEY,			XK_k,		focusprev,	NULL }, \
959
0aeefb841608 applied Jukka Salmi's setmwfact patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 958
diff changeset
    51
	{ MODKEY,			XK_h,		setmwfact,	"-0.05" }, \
0aeefb841608 applied Jukka Salmi's setmwfact patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 958
diff changeset
    52
	{ MODKEY,			XK_l,		setmwfact,	"+0.05" }, \
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
    53
	{ 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
    54
	{ MODKEY,			XK_Return,	zoom,		NULL }, \
1027
0735e86bbd49 added antoszka's viewprev patch with some minor modifications, restored Client->tags as Bool *, however kept the static initialization of ntags and seltags (prevtags) - this seems to be the best compromise
Anselm R. Garbe <garbeam@gmail.com>
parents: 1025
diff changeset
    55
	{ MODKEY,			XK_Tab,		viewprevtag,	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 }, \
956
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    59
	{ MODKEY,			XK_1,		view,		tags[0] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    60
	{ MODKEY,			XK_2,		view,		tags[1] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    61
	{ MODKEY,			XK_3,		view,		tags[2] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    62
	{ MODKEY,			XK_4,		view,		tags[3] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    63
	{ MODKEY,			XK_5,		view,		tags[4] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    64
	{ MODKEY,			XK_6,		view,		tags[5] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    65
	{ MODKEY,			XK_7,		view,		tags[6] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    66
	{ MODKEY,			XK_8,		view,		tags[7] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    67
	{ MODKEY,			XK_9,		view,		tags[8] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    68
	{ MODKEY|ControlMask,		XK_1,		toggleview,	tags[0] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    69
	{ MODKEY|ControlMask,		XK_2,		toggleview,	tags[1] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    70
	{ MODKEY|ControlMask,		XK_3,		toggleview,	tags[2] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    71
	{ MODKEY|ControlMask,		XK_4,		toggleview,	tags[3] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    72
	{ MODKEY|ControlMask,		XK_5,		toggleview,	tags[4] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    73
	{ MODKEY|ControlMask,		XK_6,		toggleview,	tags[5] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    74
	{ MODKEY|ControlMask,		XK_7,		toggleview,	tags[6] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    75
	{ MODKEY|ControlMask,		XK_8,		toggleview,	tags[7] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    76
	{ MODKEY|ControlMask,		XK_9,		toggleview,	tags[8] }, \
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
    77
	{ MODKEY|ShiftMask,		XK_0,		tag,		NULL }, \
956
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    78
	{ MODKEY|ShiftMask,		XK_1,		tag,		tags[0] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    79
	{ MODKEY|ShiftMask,		XK_2,		tag,		tags[1] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    80
	{ MODKEY|ShiftMask,		XK_3,		tag,		tags[2] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    81
	{ MODKEY|ShiftMask,		XK_4,		tag,		tags[3] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    82
	{ MODKEY|ShiftMask,		XK_5,		tag,		tags[4] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    83
	{ MODKEY|ShiftMask,		XK_6,		tag,		tags[5] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    84
	{ MODKEY|ShiftMask,		XK_7,		tag,		tags[6] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    85
	{ MODKEY|ShiftMask,		XK_8,		tag,		tags[7] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    86
	{ MODKEY|ShiftMask,		XK_9,		tag,		tags[8] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    87
	{ MODKEY|ControlMask|ShiftMask,	XK_1,		toggletag,	tags[0] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    88
	{ MODKEY|ControlMask|ShiftMask,	XK_2,		toggletag,	tags[1] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    89
	{ MODKEY|ControlMask|ShiftMask,	XK_3,		toggletag,	tags[2] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    90
	{ MODKEY|ControlMask|ShiftMask,	XK_4,		toggletag,	tags[3] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    91
	{ MODKEY|ControlMask|ShiftMask,	XK_5,		toggletag,	tags[4] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    92
	{ MODKEY|ControlMask|ShiftMask,	XK_6,		toggletag,	tags[5] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    93
	{ MODKEY|ControlMask|ShiftMask,	XK_7,		toggletag,	tags[6] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    94
	{ MODKEY|ControlMask|ShiftMask,	XK_8,		toggletag,	tags[7] }, \
484245788760 made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe <garbeam@gmail.com>
parents: 944
diff changeset
    95
	{ MODKEY|ControlMask|ShiftMask,	XK_9,		toggletag,	tags[8] }, \
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
    96
	{ MODKEY|ShiftMask,		XK_q,		quit,		NULL }, \
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
    97
};