summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h28
1 files changed, 18 insertions, 10 deletions
diff --git a/config.h b/config.h
index adea87d..23a56c6 100644
--- a/config.h
+++ b/config.h
@@ -2,6 +2,10 @@
#include <X11/XF86keysym.h>
+static const char normfgcolor[] = "#bbbbbb";
+static const char selbordercolor[] = "#005577";
+static const char selbgcolor[] = "#005577";
+static const char urgbordercolor[] = "#ff0000";
/* appearance */
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int gappx = 6; /* gaps between windows */
@@ -13,23 +17,27 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display
static const int showsystray = 1; /* 0 means no systray */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
-static const char *fonts[] = { "mononoki Nerd Font Mono:size=10", "JoyPixels:size=9" };
-static const char dmenufont[] = "mononoki Nerd Font Mono:size=10";
-static const char col_gray1[] = "#000000";
-static const char col_gray2[] = "#000000";
-static const char col_gray3[] = "#bbbbbb";
-static const char col_gray4[] = "#eeeeee";
-static const char col_cyan[] = "#ffffff";
+static const char *fonts[] = { "mononoki Nerd Font Mono:size=12", "symbola:size=10" };
+static const char dmenufont[] = "mononoki Nerd Font Mono:size=12";
+static const char col_gray1[] = "#151219";
+static const char col_gray2[] = "#6e6f6c";
+static const char col_gray3[] = "#898883";
+static const char col_gray4[] = "#c5c3bc";
+static const char col_cyan[] = "#2783a1";
+static const char col_other[] = "#675f58";
+
static const char *colors[][3] = {
- /* fg bg border */
- [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- [SchemeSel] = { col_gray1, col_cyan, col_cyan },
+ /* fg bg border */
+ [SchemeNorm] = { col_gray4, col_gray1, col_gray3 }, // unfocused wins
+ [SchemeSel] = { col_gray4, col_gray2, col_gray4 }, // the focused win
+ [SchemeUrg] = { col_gray4, col_gray1, col_other },
};
typedef struct {
const char *name;
const void *cmd;
} Sp;
+<<<<<<< HEAD
const char *spcmd0[] = { "st", "-g", "100x33", "-c", "sphtop", "-e", "htop", NULL };
const char *spcmd1[] = { "st", "-g", "100x33", "-c", "spterm", NULL };
const char *spcmd2[] = { "st", "-g", "100x33", "-c", "sppmxr", "-e", "pulsemixer", NULL };