svkbd-exkc/config.h

19 lines
563 B
C
Raw Normal View History

2020-12-22 05:51:39 +00:00
static const Bool wmborder = True;
static const char *fonts[] = {
2022-07-08 18:26:51 +00:00
"FiraCode Nerd Font:style=Light:antialias=true:autohint=true",
"Chiron Sans HK Light:style=Light",
"JoyPixels:style=Regular",//Emoji
2022-07-08 18:22:18 +00:00
2020-12-22 05:51:39 +00:00
};
2023-05-04 22:43:02 +00:00
static int fontsize = 20;
2020-12-22 05:51:39 +00:00
static double overlay_delay = 1.0;
2023-05-04 22:43:02 +00:00
static int heightfactor = 15; //one row of keys takes up 1/x of the screen height
2020-12-22 05:51:39 +00:00
static const char *colors[SchemeLast][2] = {
2021-01-31 11:59:14 +00:00
// fg bg
[SchemeHighlight] = { "#ff5555", "#282a36" },
[SchemeNorm] = { "#ff5555", "#282a36" },
[SchemePress] = { "#282a36", "#ff79c6" },
2020-12-22 05:51:39 +00:00
};