config.def.h
author Anselm R Garbe <garbeam@gmail.com>
Wed, 05 Mar 2008 19:03:45 +0000
changeset 1125 e5ac5db22c91
parent 1123 76f6c8659f40
child 1126 395dc8e943ea
permissions -rw-r--r--
integrated the new -x -y -w toggles of dmenu into my setup
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 */
769
dc60583894e0 introduced tile.c, some refactoring of functions
Anselm R. Garbe <arg@suckless.org>
parents: 758
diff changeset
     4
#define BORDERPX		1
1105
8427b03e56db disabled AIM_XINERAMA
anselm@anselm1
parents: 1104
diff changeset
     5
#define FONT			"-*-terminus-medium-r-normal-*-14-*-*-*-*-*-*-*"
1017
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
     6
#define NORMBORDERCOLOR		"#cccccc"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
     7
#define NORMBGCOLOR		"#cccccc"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
     8
#define NORMFGCOLOR		"#000000"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
     9
#define SELBORDERCOLOR		"#0066ff"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
    10
#define SELBGCOLOR		"#0066ff"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
    11
#define SELFGCOLOR		"#ffffff"
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
    12
1125
e5ac5db22c91 integrated the new -x -y -w toggles of dmenu into my setup
Anselm R Garbe <garbeam@gmail.com>
parents: 1123
diff changeset
    13
#if ANSELM_OFFICE
1123
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    14
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    15
/* bar position */
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    16
#define BX 0
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    17
#define BY 0
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    18
#define BW 1280
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    19
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    20
/* master area */
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    21
#define MX 0
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    22
#define MY bh
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    23
#define MW 1280
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    24
#define MH 800 - bh
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    25
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    26
/* tile area, might be on a different screen */
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    27
#define TX 1280
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    28
#define TY 0
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    29
#define TW 1680
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    30
#define TH 1050
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    31
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    32
/* monocle area, might be restricted to a specific screen */
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    33
#define MOX MX
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    34
#define MOY MY
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    35
#define MOW MW
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    36
#define MOH MH
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    37
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    38
#else
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    39
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    40
/* bar position */
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    41
#define BX sx
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    42
#define BY sy
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    43
#define BW sw
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    44
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    45
/* master area */
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    46
#define MX sx
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    47
#define MY sy + bh
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    48
#define MW ((int)(((float)sw) * 0.6))
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    49
#define MH sh - bh
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    50
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    51
/* tile area, might be on a different screen */
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    52
#define TX sx + MW
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    53
#define TY MY
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    54
#define TW sw - MW
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    55
#define TH MH
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    56
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    57
/* monocle area, might be restricted to a specific screen */
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    58
#define MOX sx
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    59
#define MOY MY
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    60
#define MOW sw
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    61
#define MOH MH
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    62
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    63
#endif
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
    64
1117
fac7660be3de renamed monocle into maxmise, documented the keybindings in dwm(1)
anselm@anselm1
parents: 1116
diff changeset
    65
/* tagging */
1118
e8efb587e751 renamed MAXLEN into MAXTAGLEN (backward compliance)
anselm@anselm1
parents: 1117
diff changeset
    66
const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
1106
084b17f96d9b proceeded, though we still miss a real Tag struct
anselm@anselm1
parents: 1105
diff changeset
    67
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
    68
Rule rules[] = {
1104
167446962e09 simplified dwm
anselm@anselm1
parents: 1102
diff changeset
    69
	/* class:instance:title substr	tags ref	isfloating */
167446962e09 simplified dwm
anselm@anselm1
parents: 1102
diff changeset
    70
	{ "Firefox",			tags[8],	False },
1102
239f5ee65766 pushing my changes of tonight upstream (hg tip is NOW very UNSTABLE -- but those changes are necessary to get a decent multihead support) -- I renamed Monitor into View, to reflect in a better way the dwm terminology of the past
anselm@anselm1
parents: 1092
diff changeset
    71
	{ "Gimp",			NULL,		True },
239f5ee65766 pushing my changes of tonight upstream (hg tip is NOW very UNSTABLE -- but those changes are necessary to get a decent multihead support) -- I renamed Monitor into View, to reflect in a better way the dwm terminology of the past
anselm@anselm1
parents: 1092
diff changeset
    72
	{ "MPlayer",			NULL,		True },
239f5ee65766 pushing my changes of tonight upstream (hg tip is NOW very UNSTABLE -- but those changes are necessary to get a decent multihead support) -- I renamed Monitor into View, to reflect in a better way the dwm terminology of the past
anselm@anselm1
parents: 1092
diff changeset
    73
	{ "Acroread",			NULL,		True },
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    74
};
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    75
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    76
/* layout(s) */
1050
fb5fa382c002 revival of RESIZEHINTS
Anselm R. Garbe <garbeam@gmail.com>
parents: 1048
diff changeset
    77
#define RESIZEHINTS		True	/* False - respect size hints in tiled resizals */
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
    78
#define SNAP			32	/* snap pixel */
1117
fac7660be3de renamed monocle into maxmise, documented the keybindings in dwm(1)
anselm@anselm1
parents: 1116
diff changeset
    79
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
    80
Layout layouts[] = {
990
70f6fcd100b7 micromizing dwm step 1
Anselm R. Garbe <garbeam@gmail.com>
parents: 989
diff changeset
    81
	/* symbol		function */
70f6fcd100b7 micromizing dwm step 1
Anselm R. Garbe <garbeam@gmail.com>
parents: 989
diff changeset
    82
	{ "[]=",		tile }, /* first entry is default */
70f6fcd100b7 micromizing dwm step 1
Anselm R. Garbe <garbeam@gmail.com>
parents: 989
diff changeset
    83
	{ "><>",		floating },
1121
898952a1689d renamed maximise to monocle again.
Anselm R Garbe <garbeam@gmail.com>
parents: 1118
diff changeset
    84
	{ "[M]",		monocle },
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    85
};
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    86
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    87
/* key definitions */
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    88
#define MODKEY			Mod1Mask
1060
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    89
Key keys[] = {
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    90
	/* modifier			key		function	argument */
1125
e5ac5db22c91 integrated the new -x -y -w toggles of dmenu into my setup
Anselm R Garbe <garbeam@gmail.com>
parents: 1123
diff changeset
    91
#if ANSELM_OFFICE
e5ac5db22c91 integrated the new -x -y -w toggles of dmenu into my setup
Anselm R Garbe <garbeam@gmail.com>
parents: 1123
diff changeset
    92
	{ MODKEY,			XK_p,		spawn,
e5ac5db22c91 integrated the new -x -y -w toggles of dmenu into my setup
Anselm R Garbe <garbeam@gmail.com>
parents: 1123
diff changeset
    93
		"exec dmenu_run -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"' -sb '"SELBGCOLOR"' -sf '"SELFGCOLOR"' -x 0 -y 0 -w 1280" },
e5ac5db22c91 integrated the new -x -y -w toggles of dmenu into my setup
Anselm R Garbe <garbeam@gmail.com>
parents: 1123
diff changeset
    94
#else
1060
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    95
	{ MODKEY,			XK_p,		spawn,
1074
239bb2d7c7da added dmenu_run to config.h
anselm@anselm1
parents: 1071
diff changeset
    96
		"exec dmenu_run -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"' -sb '"SELBGCOLOR"' -sf '"SELFGCOLOR"'" },
1125
e5ac5db22c91 integrated the new -x -y -w toggles of dmenu into my setup
Anselm R Garbe <garbeam@gmail.com>
parents: 1123
diff changeset
    97
#endif
1060
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    98
	{ MODKEY|ShiftMask,		XK_Return,	spawn, "exec uxterm" },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    99
	{ MODKEY,			XK_j,		focusnext,	NULL },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   100
	{ MODKEY,			XK_k,		focusprev,	NULL },
1070
dc37f0e022f7 implemented reapply for re-applying the tagging rules during runtime, Mod-r
Anselm R. Garbe <garbeam@gmail.com>
parents: 1060
diff changeset
   101
	{ MODKEY,			XK_r,		reapply,	NULL },
1060
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   102
	{ MODKEY,			XK_Return,	zoom,		NULL },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   103
	{ MODKEY,			XK_Tab,		viewprevtag,	NULL },
1123
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
   104
	{ MODKEY,			XK_m,		setlayout,	"[M]" },
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
   105
	{ MODKEY,			XK_f,		setlayout,	"><>" },
76f6c8659f40 implemented the stuff as I discussed on dwm@
Anselm R Garbe <garbeam@gmail.com>
parents: 1121
diff changeset
   106
	{ MODKEY,			XK_t,		setlayout,	"[]=" },
1060
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   107
	{ MODKEY|ShiftMask,		XK_space,	togglefloating,	NULL },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   108
	{ MODKEY|ShiftMask,		XK_c,		killclient,	NULL },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   109
	{ MODKEY,			XK_0,		view,		NULL },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   110
	{ MODKEY,			XK_1,		view,		tags[0] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   111
	{ MODKEY,			XK_2,		view,		tags[1] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   112
	{ MODKEY,			XK_3,		view,		tags[2] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   113
	{ MODKEY,			XK_4,		view,		tags[3] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   114
	{ MODKEY,			XK_5,		view,		tags[4] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   115
	{ MODKEY,			XK_6,		view,		tags[5] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   116
	{ MODKEY,			XK_7,		view,		tags[6] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   117
	{ MODKEY,			XK_8,		view,		tags[7] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   118
	{ MODKEY,			XK_9,		view,		tags[8] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   119
	{ MODKEY|ControlMask,		XK_1,		toggleview,	tags[0] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   120
	{ MODKEY|ControlMask,		XK_2,		toggleview,	tags[1] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   121
	{ MODKEY|ControlMask,		XK_3,		toggleview,	tags[2] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   122
	{ MODKEY|ControlMask,		XK_4,		toggleview,	tags[3] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   123
	{ MODKEY|ControlMask,		XK_5,		toggleview,	tags[4] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   124
	{ MODKEY|ControlMask,		XK_6,		toggleview,	tags[5] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   125
	{ MODKEY|ControlMask,		XK_7,		toggleview,	tags[6] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   126
	{ MODKEY|ControlMask,		XK_8,		toggleview,	tags[7] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   127
	{ MODKEY|ControlMask,		XK_9,		toggleview,	tags[8] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   128
	{ MODKEY|ShiftMask,		XK_0,		tag,		NULL },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   129
	{ MODKEY|ShiftMask,		XK_1,		tag,		tags[0] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   130
	{ MODKEY|ShiftMask,		XK_2,		tag,		tags[1] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   131
	{ MODKEY|ShiftMask,		XK_3,		tag,		tags[2] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   132
	{ MODKEY|ShiftMask,		XK_4,		tag,		tags[3] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   133
	{ MODKEY|ShiftMask,		XK_5,		tag,		tags[4] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   134
	{ MODKEY|ShiftMask,		XK_6,		tag,		tags[5] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   135
	{ MODKEY|ShiftMask,		XK_7,		tag,		tags[6] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   136
	{ MODKEY|ShiftMask,		XK_8,		tag,		tags[7] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   137
	{ MODKEY|ShiftMask,		XK_9,		tag,		tags[8] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   138
	{ MODKEY|ControlMask|ShiftMask,	XK_1,		toggletag,	tags[0] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   139
	{ MODKEY|ControlMask|ShiftMask,	XK_2,		toggletag,	tags[1] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   140
	{ MODKEY|ControlMask|ShiftMask,	XK_3,		toggletag,	tags[2] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   141
	{ MODKEY|ControlMask|ShiftMask,	XK_4,		toggletag,	tags[3] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   142
	{ MODKEY|ControlMask|ShiftMask,	XK_5,		toggletag,	tags[4] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   143
	{ MODKEY|ControlMask|ShiftMask,	XK_6,		toggletag,	tags[5] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   144
	{ MODKEY|ControlMask|ShiftMask,	XK_7,		toggletag,	tags[6] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   145
	{ MODKEY|ControlMask|ShiftMask,	XK_8,		toggletag,	tags[7] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   146
	{ MODKEY|ControlMask|ShiftMask,	XK_9,		toggletag,	tags[8] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   147
	{ MODKEY|ShiftMask,		XK_q,		quit,		NULL },
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
   148
};