Change default font and background color

This commit is contained in:
Alex 2020-05-02 16:12:42 +02:00 committed by Alex Denes
parent 4190c28a34
commit 9a20f07bc7
Signed by: caskd
GPG Key ID: F92BA85F61F4C173

View File

@ -4,13 +4,12 @@
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
"FuraMono Nerd Font:size=10",
"monospace:size=10"
"FiraMono-Regular:pixelsize=12:antialias=true:autohint=true"
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#bbbbbb", "#222222" },
[SchemeNorm] = { "#bbbbbb", "#000000" },
[SchemeSel] = { "#eeeeee", "#d01010" },
[SchemeOut] = { "#000000", "#e02020" },
};