2011-10-09 15:25:43 +00:00
|
|
|
static const Bool wmborder = True;
|
2020-08-02 13:46:14 +00:00
|
|
|
static int fontsize = 20;
|
|
|
|
static double overlay_delay = 1.0;
|
2020-08-02 13:46:16 +00:00
|
|
|
static int heightfactor = 16; //one row of keys takes up 1/x of the screen height
|
2020-08-02 13:46:12 +00:00
|
|
|
static const char *fonts[] = {
|
2020-08-02 13:46:14 +00:00
|
|
|
"DejaVu Sans:bold:size=20"
|
2020-08-02 13:46:12 +00:00
|
|
|
};
|
|
|
|
static const char *colors[SchemeLast][2] = {
|
|
|
|
/* fg bg */
|
2020-08-02 13:46:14 +00:00
|
|
|
[SchemeNorm] = { "#ffffff", "#14313d" },
|
|
|
|
[SchemePress] = { "#ffffff", "#000000" },
|
2020-08-02 13:46:12 +00:00
|
|
|
[SchemeHighlight] = { "#58a7c6", "#005577" },
|
|
|
|
};
|