2011-10-09 15:25:43 +00:00
|
|
|
static const Bool wmborder = True;
|
2021-03-05 18:03:46 +00:00
|
|
|
static int fontsize = 22;
|
2023-02-05 10:25:46 +00:00
|
|
|
/* overlay delay in seconds */
|
|
|
|
static double overlay_delay = 1.0;
|
|
|
|
/* repeat delay in seconds, will not work on keys with overlays */
|
|
|
|
static double repeat_delay = 0.75;
|
|
|
|
/* scan rate in microseconds, affects key repetition rate */
|
|
|
|
static int scan_rate = 50;
|
|
|
|
/* one row of keys takes up 1/x of the screen height */
|
|
|
|
static int heightfactor = 14;
|
2021-06-13 20:28:00 +00:00
|
|
|
static int xspacing = 5;
|
|
|
|
static int yspacing = 5;
|
2021-03-09 07:10:59 +00:00
|
|
|
static const char *defaultfonts[] = {
|
2021-03-05 18:03:46 +00:00
|
|
|
"DejaVu Sans:bold:size=22"
|
2020-08-02 13:46:12 +00:00
|
|
|
};
|
2021-03-09 07:10:59 +00:00
|
|
|
static const char *defaultcolors[SchemeLast][2] = {
|
2020-08-02 13:46:12 +00:00
|
|
|
/* fg bg */
|
2021-03-05 21:29:38 +00:00
|
|
|
[SchemeNorm] = { "#bbbbbb", "#132a33" },
|
2021-03-06 15:30:44 +00:00
|
|
|
[SchemeNormShift] = { "#008ac0", "#132a33" },
|
2021-03-05 21:29:38 +00:00
|
|
|
[SchemeNormABC] = { "#ffffff", "#14313d" },
|
2021-03-06 15:30:44 +00:00
|
|
|
[SchemeNormABCShift] = { "#008ac0", "#14313d" },
|
|
|
|
[SchemePress] = { "#ffffff", "#259937" },
|
|
|
|
[SchemePressShift] = { "#00c001", "#259937" },
|
2020-08-02 13:46:12 +00:00
|
|
|
[SchemeHighlight] = { "#58a7c6", "#005577" },
|
2021-03-06 15:30:44 +00:00
|
|
|
[SchemeHighlightShift] = { "#008ac0", "#005577" },
|
2021-03-06 12:37:38 +00:00
|
|
|
[SchemeOverlay] = { "#ffffff", "#2b3313" },
|
2021-03-06 15:30:44 +00:00
|
|
|
[SchemeOverlayShift] = { "#008ac0", "#2b3313" },
|
2021-06-13 20:28:00 +00:00
|
|
|
[SchemeWindow] = { "#bbbbbb", "#132a33" },
|
2020-08-02 13:46:12 +00:00
|
|
|
};
|
2021-03-06 15:30:44 +00:00
|
|
|
|