|
1 | 1 | /* See LICENSE file for copyright and license details. */
|
2 | 2 |
|
3 | 3 | /* appearance */
|
4 |
| -static const char *fonts[] = { |
5 |
| - "monospace:size=10" |
6 |
| -}; |
7 |
| -static const char dmenufont[] = "monospace:size=10"; |
8 |
| -static const char normbordercolor[] = "#444444"; |
9 |
| -static const char normbgcolor[] = "#222222"; |
10 |
| -static const char normfgcolor[] = "#bbbbbb"; |
11 |
| -static const char selbordercolor[] = "#005577"; |
12 |
| -static const char selbgcolor[] = "#005577"; |
13 |
| -static const char selfgcolor[] = "#eeeeee"; |
14 | 4 | static const unsigned int borderpx = 1; /* border pixel of windows */
|
15 | 5 | static const unsigned int snap = 32; /* snap pixel */
|
16 | 6 | static const int showbar = 1; /* 0 means no bar */
|
17 | 7 | static const int topbar = 1; /* 0 means bottom bar */
|
| 8 | +static const char *fonts[] = { "monospace:size=10" }; |
| 9 | +static const char dmenufont[] = "monospace:size=10"; |
| 10 | +static const char col_gray1[] = "#222222"; |
| 11 | +static const char col_gray2[] = "#444444"; |
| 12 | +static const char col_gray3[] = "#bbbbbb"; |
| 13 | +static const char col_gray4[] = "#eeeeee"; |
| 14 | +static const char col_cyan[] = "#005577"; |
| 15 | +static const char *colors[][3] = { |
| 16 | + /* fg bg border */ |
| 17 | + { col_gray3, col_gray1, col_gray2}, /* normal */ |
| 18 | + { col_gray4, col_cyan, col_cyan }, /* selected */ |
| 19 | +}; |
18 | 20 |
|
19 | 21 | /* tagging */
|
20 | 22 | static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
|
@@ -54,7 +56,7 @@ static const Layout layouts[] = {
|
54 | 56 |
|
55 | 57 | /* commands */
|
56 | 58 | static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
57 |
| -static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; |
| 59 | +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; |
58 | 60 | static const char *termcmd[] = { "st", NULL };
|
59 | 61 |
|
60 | 62 | static Key keys[] = {
|
|
0 commit comments