diff options
author | Moritz Luedecke <ritze@skweez.net> | 2017-08-10 07:48:16 +0200 |
---|---|---|
committer | Moritz Luedecke <ritze@skweez.net> | 2017-08-10 07:48:16 +0200 |
commit | dbe3d0cfd94fa8f9232226629cb4612bc7df29e4 (patch) | |
tree | f90f6c9614cf244a09d3081e6dddab49d5ce8905 /config.h | |
parent | 8babd3393b8673effcae276e1185ed41637f1211 (diff) |
Add description at the right side
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -2,12 +2,13 @@ /* Default settings; can be overriden by command line. */ static int topbar = 1; +static int minpwlen = 32; static const char *fonts[] = { - "monospace:size=10" + "Noto Sans UI:size=13" // "monospace:size=10" }; -static const char *prompt = NULL; -static const char *asterisk = "*"; +static const char *prompt = "🔑"; //NULL; +static const char *asterisk = "● "; //"*"; static const char *colors[SchemeLast][2] = { - [SchemeNorm] = { "#bbbbbb", "#222222" }, - [SchemeSel] = { "#eeeeee", "#005577" } + [SchemeNorm] = { "#ffffff", "#000000" }, // "#bbbbbb", "#222222" }, + [SchemeSel] = { "#eeeeee", "#d9904a" } // "#eeeeee", "#005577" } }; |