summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2023-01-06 16:39:18 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2023-01-06 16:39:18 +0100
commit9d89de55f871cce68b5762f22d8f199f546d2241 (patch)
tree0f0c51a71d4e69d0425299e9f3ccfa86a8025d05
parent2c678fd9d19db73f2134a7fd97a32c011184bbaa (diff)
change to gruvbox
-rw-r--r--config.def.h18
-rw-r--r--config.h8
2 files changed, 16 insertions, 10 deletions
diff --git a/config.def.h b/config.def.h
index 697d511..0800eb3 100644
--- a/config.def.h
+++ b/config.def.h
@@ -1,18 +1,19 @@
/* See LICENSE file for copyright and license details. */
/* Default settings; can be overriden by command line. */
+#include <endian.h>
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
-static const unsigned int alpha = 0xf0;
+static const unsigned int alpha = 0xcc;
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
- "monospace:size=10"
+ "SauceCodePro Nerd Font:style=Regular:pixelsize=14"
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */
- [SchemeNorm] = { "#bbbbbb", "#222222" },
- [SchemeSel] = { "#eeeeee", "#005577" },
- [SchemeOut] = { "#000000", "#00ffff" },
+ [SchemeNorm] = { "#ebdbb2", "#282828" },
+ [SchemeSel] = { "#282828", "#b16286" },
+ [SchemeOut] = { "#888888", "#191919" },
};
static const unsigned int alphas[SchemeLast][2] = {
@@ -22,7 +23,12 @@ static const unsigned int alphas[SchemeLast][2] = {
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
-static unsigned int lines = 0;
+static unsigned int lines = 20;
+static unsigned int gapxx = 10;
+static unsigned int border = 10;
+static unsigned int borderline = 0;
+static unsigned int border_width = 2;
+static unsigned int border_color = 0xb16286;
/*
* Characters not considered part of a word while deleting words
diff --git a/config.h b/config.h
index e01e231..0800eb3 100644
--- a/config.h
+++ b/config.h
@@ -3,7 +3,7 @@
#include <endian.h>
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
-static const unsigned int alpha = 0x99;
+static const unsigned int alpha = 0xcc;
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
"SauceCodePro Nerd Font:style=Regular:pixelsize=14"
@@ -11,8 +11,8 @@ static const char *fonts[] = {
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */
- [SchemeNorm] = { "#888888", "#191919" },
- [SchemeSel] = { "#ffffff", "#547f62" },
+ [SchemeNorm] = { "#ebdbb2", "#282828" },
+ [SchemeSel] = { "#282828", "#b16286" },
[SchemeOut] = { "#888888", "#191919" },
};
@@ -28,7 +28,7 @@ static unsigned int gapxx = 10;
static unsigned int border = 10;
static unsigned int borderline = 0;
static unsigned int border_width = 2;
-static unsigned int border_color = 0x547f62;
+static unsigned int border_color = 0xb16286;
/*
* Characters not considered part of a word while deleting words