From 46c871b744fa4d741996d0602fe4787f09e1832d Mon Sep 17 00:00:00 2001 From: Moritz Luedecke Date: Sun, 20 Aug 2017 02:01:59 +0200 Subject: [PATCH] Use standard settings from dmenu --- config.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/config.h b/config.h index e7d6d6f..5d2a512 100644 --- a/config.h +++ b/config.h @@ -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" } };