1
0
mirror of git://git.suckless.org/svkbd synced 2024-12-18 04:04:44 +00:00
svkbd/config.def.h
hazardchem 0e53d9d1a0 Reducing xspacing and yspacing to 1 so touchscreen users have less mistyping.
Signed-off-by: hazardchem <hazardchem@disroot.org>
2024-10-27 12:14:39 +01:00

31 lines
1.1 KiB
C

static const Bool wmborder = True;
static int fontsize = 22;
/* 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;
static int xspacing = 1;
static int yspacing = 1;
static const char *defaultfonts[] = {
"DejaVu Sans:bold:size=22"
};
static const char *defaultcolors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#bbbbbb", "#132a33" },
[SchemeNormShift] = { "#008ac0", "#132a33" },
[SchemeNormABC] = { "#ffffff", "#14313d" },
[SchemeNormABCShift] = { "#008ac0", "#14313d" },
[SchemePress] = { "#ffffff", "#259937" },
[SchemePressShift] = { "#00c001", "#259937" },
[SchemeHighlight] = { "#58a7c6", "#005577" },
[SchemeHighlightShift] = { "#008ac0", "#005577" },
[SchemeOverlay] = { "#ffffff", "#2b3313" },
[SchemeOverlayShift] = { "#008ac0", "#2b3313" },
[SchemeWindow] = { "#bbbbbb", "#132a33" },
};