blob: 9efcb0b373b683f7946932f915051893d74bdc52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
static int topbar = 1;
static const char *fonts[] = {
"monospace:size=14"
};
static const char *prompt = NULL;
static const char *colors[SchemeLast][2] = {
[SchemeNorm] = { "#bbbbbb", "#222222" },
[SchemeSel] = { "#eeeeee", "#005577" },
[SchemeOut] = { "#000000", "#00ffff" },
};
static unsigned int lines = 0;
static const char worddelimiters[] = " ";
|