1 /* See LICENSE file for copyright and license details. */ |
1 /* See LICENSE file for copyright and license details. */ |
2 |
2 |
3 /* appearance */ |
3 /* appearance */ |
4 #define BARPOS BarTop /* BarBot, BarOff */ |
4 #define BARPOS BarTop /* BarBot, BarOff */ |
5 #define BORDERPX 1 |
5 #define BORDERPX 1 |
6 #define FONT "-*-terminus-medium-r-normal-*-14-*-*-*-*-*-*-*" |
6 #define FONT "-*-terminus-medium-r-normal-*-12-*-*-*-*-*-*-*" |
7 #define NORMBORDERCOLOR "#cccccc" |
7 #define NORMBORDERCOLOR "#cccccc" |
8 #define NORMBGCOLOR "#cccccc" |
8 #define NORMBGCOLOR "#cccccc" |
9 #define NORMFGCOLOR "#000000" |
9 #define NORMFGCOLOR "#000000" |
10 #define SELBORDERCOLOR "#0066ff" |
10 #define SELBORDERCOLOR "#0066ff" |
11 #define SELBGCOLOR "#0066ff" |
11 #define SELBGCOLOR "#0066ff" |
12 #define SELFGCOLOR "#ffffff" |
12 #define SELFGCOLOR "#ffffff" |
13 |
13 |
14 /* tagging */ |
14 /* tagging */ |
15 const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "www" }; |
15 const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "www" }; |
16 Bool initags[LENGTH(tags)] = {[0] = True}; |
16 int initags[LENGTH(tags)] = { [0] = 1 }; |
17 Rule rules[] = { |
17 Rule rules[] = { |
18 /* class:instance:title regex tags regex isfloating */ /* monitor */ |
18 /* class:instance:title regex tags regex isfloating */ |
19 { "Firefox", "www", False, -1 }, |
19 { "Firefox", "www", False }, |
20 { "Gimp", NULL, True, -1 }, |
20 { "Gimp", NULL, True }, |
21 { "MPlayer", NULL, True, -1 }, |
21 { "MPlayer", NULL, True }, |
22 { "Acroread", NULL, True, -1 }, |
22 { "Acroread", NULL, True }, |
23 }; |
23 }; |
24 |
24 |
25 /* layout(s) */ |
25 /* layout(s) */ |
26 #define MWFACT 0.6 /* master width factor [0.1 .. 0.9] */ |
26 #define MWFACT 0.6 /* master width factor [0.1 .. 0.9] */ |
27 #define RESIZEHINTS True /* False - respect size hints in tiled resizals */ |
27 #define RESIZEHINTS True /* False - respect size hints in tiled resizals */ |