diff options
author | Moritz Luedecke <ritze@skweez.net> | 2017-09-15 00:39:22 +0200 |
---|---|---|
committer | Moritz Luedecke <ritze@skweez.net> | 2017-09-15 00:39:22 +0200 |
commit | 9e8572af7eb9640a8bb690adf9ca2ecfa6992644 (patch) | |
tree | e542af1e728a446027730f6a30b7e40074a4c27d /config.h | |
parent | 84a7f88da195e4859839638a3eaba68a64cf732d (diff) |
Move all config variables into config.h and rename topbar to buttom
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,14 +1,16 @@ /* See LICENSE file for copyright and license details. */ /* Default settings; can be overriden by command line. */ -static int topbar = 1; +static int bottom = 1; static int embedded = 0; static int minpwlen = 32; +static int mon = -1; + +static const char *asterisk = "*"; static const char *fonts[] = { "monospace:size=10" }; static const char *prompt = NULL; -static const char *asterisk = "*"; static const char *colors[SchemeLast][4] = { [SchemePrompt] = { "#bbbbbb", "#222222" }, [SchemeNormal] = { "#bbbbbb", "#222222" }, |