diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -4,11 +4,13 @@ static int topbar = 1; static int minpwlen = 32; static const char *fonts[] = { - "Noto Sans UI:size=13" // "monospace:size=10" + "monospace:size=10" }; -static const char *prompt = "🔑"; //NULL; -static const char *asterisk = "● "; //"*"; -static const char *colors[SchemeLast][2] = { - [SchemeNorm] = { "#ffffff", "#000000" }, // "#bbbbbb", "#222222" }, - [SchemeSel] = { "#eeeeee", "#d9904a" } // "#eeeeee", "#005577" } +static const char *prompt = NULL; +static const char *asterisk = "*"; +static const char *colors[SchemeLast][4] = { + [SchemePrompt] = { "#bbbbbb", "#222222" }, + [SchemeNormal] = { "#bbbbbb", "#222222" }, + [SchemeSelect] = { "#eeeeee", "#005577" }, + [SchemeDesc] = { "#bbbbbb", "#222222" } }; |