summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorMoritz Luedecke <ritze@skweez.net>2017-08-01 20:00:08 +0200
committerMoritz Luedecke <ritze@skweez.net>2017-08-01 20:00:08 +0200
commit410ef5960fde8a8d601264859032bb9032ead6f6 (patch)
tree1d3e0de900423d482dfa0aa619fbfb5e98ea58b2 /config.h
parentff4fd40baab131ee5eb24b3a25230c9c430ee785 (diff)
Revert some changes and add old code from dmenu
Diffstat (limited to 'config.h')
-rw-r--r--config.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/config.h b/config.h
index fa37f97..492d528 100644
--- a/config.h
+++ b/config.h
@@ -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";