diff options
author | Moritz Luedecke <ritze@skweez.net> | 2017-08-01 20:00:08 +0200 |
---|---|---|
committer | Moritz Luedecke <ritze@skweez.net> | 2017-08-01 20:00:08 +0200 |
commit | 410ef5960fde8a8d601264859032bb9032ead6f6 (patch) | |
tree | 1d3e0de900423d482dfa0aa619fbfb5e98ea58b2 /config.h | |
parent | ff4fd40baab131ee5eb24b3a25230c9c430ee785 (diff) |
Revert some changes and add old code from dmenu
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -1,12 +1,13 @@ /* See LICENSE file for copyright and license details. */ -static Bool topbar = True; -static const char *fonts[]={ - "Noto Sans UI:size=13" +/* Default settings; can be overriden by command line. */ + +static int topbar = 1; +static const char *fonts[] = { + "monospace:size=10" +}; +static const char *prompt = NULL; +static const char *asterisk = "*"; +static const char *colors[SchemeLast][2] = { + [SchemeNorm] = { "#bbbbbb", "#222222" }, + [SchemeSel] = { "#eeeeee", "#005577" } }; -static const char *secstring = "● ● "; -/*static char *description = NULL;*/ -static const char *prompt = "🔑 Pinentry "; -static const char *normbgcolor = "#000000"; -static const char *normfgcolor = "#ffffff"; -static const char *selbgcolor = "#d9904a"; -static const char *selfgcolor = "#ffffff"; |