From 9a20f07bc7c0eb006e2ba402d5ce148c4ea9e99a Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 2 May 2020 16:12:42 +0200 Subject: [PATCH] Change default font and background color --- config.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index bfe2bac..ab3db7b 100644 --- a/config.h +++ b/config.h @@ -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" }, };