11 lines
334 B
C
11 lines
334 B
C
static const Bool wmborder = True;
|
|
static int fontsize = 8;
|
|
static const char *fonts[] = {
|
|
"Iosevka Nerd Font:size=11"
|
|
};
|
|
static const char *colors[SchemeLast][2] = {
|
|
/* fg bg */
|
|
[SchemeNorm] = { "#ebdbb2", "#282828" },
|
|
[SchemePress] = { "#ebdbb2", "#458588" },
|
|
[SchemeHighlight] = { "#ebdbb2", "#458588" },
|
|
};
|