aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/config.h b/config.h
index 6d64672..fe8022d 100644
--- a/config.h
+++ b/config.h
@@ -1,21 +1,23 @@
/* See LICENSE file for copyright and license details. */
/* Default settings; can be overriden by command line. */
-static int bottom = 0;
+static int bottom = 1;
static int embedded = 0;
static int minpwlen = 32;
static int mon = -1;
-static int lineheight = 0;
-static int min_lineheight = 8;
+static int lineheight = 20;
+static int min_lineheight = 20;
+static int padding = 10;
+static int border_width = 2;
-static const char *asterisk = "*";
+static const char *asterisk = "•";
static const char *fonts[] = {
- "monospace:size=10"
+ "SauceCodePro Nerd Font:style=Regular:pixelsize=14"
};
static const char *prompt = NULL;
static const char *colors[SchemeLast][4] = {
- [SchemePrompt] = { "#bbbbbb", "#222222" },
- [SchemeNormal] = { "#bbbbbb", "#222222" },
- [SchemeSelect] = { "#eeeeee", "#005577" },
- [SchemeDesc] = { "#bbbbbb", "#222222" }
+ [SchemePrompt] = { "#ffffff", "#d85d5d" },
+ [SchemeNormal] = { "#888888", "#191919" },
+ [SchemeSelect] = { "#ffffff", "#547f62" },
+ [SchemeDesc] = { "#ffffff", "#d85d5d" }
};