mirror of git://git.suckless.org/svkbd
14 lines
451 B
C
14 lines
451 B
C
static const Bool wmborder = True;
|
|
static int fontsize = 20;
|
|
static double overlay_delay = 1.0;
|
|
static int heightfactor = 16; //one row of keys takes up 1/x of the screen height
|
|
static const char *fonts[] = {
|
|
"DejaVu Sans:bold:size=20"
|
|
};
|
|
static const char *colors[SchemeLast][2] = {
|
|
/* fg bg */
|
|
[SchemeNorm] = { "#ffffff", "#14313d" },
|
|
[SchemePress] = { "#ffffff", "#000000" },
|
|
[SchemeHighlight] = { "#58a7c6", "#005577" },
|
|
};
|