blob: 492d5282634a40e60510db61a5b67a69a81df01f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* See LICENSE file for copyright and license details. */
/* Default settings; can be overriden by command line. */
static int topbar = 1;
static const char *fonts[] = {
"monospace:size=10"
};
static const char *prompt = NULL;
static const char *asterisk = "*";
static const char *colors[SchemeLast][2] = {
[SchemeNorm] = { "#bbbbbb", "#222222" },
[SchemeSel] = { "#eeeeee", "#005577" }
};
|