summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorMoritz Luedecke <ritze@skweez.net>2017-08-10 07:48:16 +0200
committerMoritz Luedecke <ritze@skweez.net>2017-08-10 07:48:16 +0200
commitdbe3d0cfd94fa8f9232226629cb4612bc7df29e4 (patch)
treef90f6c9614cf244a09d3081e6dddab49d5ce8905 /config.h
parent8babd3393b8673effcae276e1185ed41637f1211 (diff)
Add description at the right side
Diffstat (limited to 'config.h')
-rw-r--r--config.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/config.h b/config.h
index 492d528..e7d6d6f 100644
--- a/config.h
+++ b/config.h
@@ -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" }
};