aboutsummaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2024-12-24 12:19:45 +0100
committerJoe <rbo@gmx.us>2024-12-24 12:19:45 +0100
commit183015e159906d194d313824a83db9cbf221b4d4 (patch)
tree0cdeb919371a463c24f78d43e3a86516b73697c6 /config.def.h
parentnb (diff)
downloaddwm-183015e159906d194d313824a83db9cbf221b4d4.tar.gz
dwm-183015e159906d194d313824a83db9cbf221b4d4.tar.bz2
dwm-183015e159906d194d313824a83db9cbf221b4d4.tar.xz
dwm-183015e159906d194d313824a83db9cbf221b4d4.tar.zst
dwm-183015e159906d194d313824a83db9cbf221b4d4.zip
status2d
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/config.def.h b/config.def.h
index a96eb3b..b3c9525 100644
--- a/config.def.h
+++ b/config.def.h
@@ -3,10 +3,10 @@
/* appearance */
static const unsigned int borderpx = 3; /* border pixel of windows */
static const unsigned int brdsh_w = 3; /* width of the app bar dash */
-static const unsigned int brdsh_ypos = 0; /* y-position of the dash */
+static const unsigned int brdsh_ypos = 25; /* y-position of the dash */
static const unsigned int text_ypos = 1; /* y-position of text */
static const unsigned int gappx = 6; /* gaps between windows */
-static const unsigned int snap = 32; /* snap pixel */
+static const unsigned int snap = 24; /* snap pixel */
static const int swallowfloating = 1; /* 1 means swallow floating windows by default */
static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
static const unsigned int systrayonleft = 0; /* 0: systray in the right corner, >0: systray on left of status text */
@@ -15,14 +15,15 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display
static const int showsystray = 1; /* 0 means no systray */
static const int showbar = 0; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
+static const int user_bh = 25; /* 0 means that dwm will calculate bar height, >= 1 means dwm will user_bh as bar height */
static const int focusonwheel = 0;
-static const char *fonts[] = { "UbuntuMono Nerd Font:size=14" };
+static const char *fonts[] = { "NotoSansMono Nerd Font:size=14" };
static const char dmenufont[] = "monospace:size=11";
-static const char col_gray1[] = "#222222";
-static const char col_gray2[] = "#444444";
-static const char col_gray3[] = "#bbbbbb";
-static const char col_gray4[] = "#eeeeee";
-static const char col_cyan[] = "#900000";
+static const char col_gray1[] = "#1d2021"; /* bar background */
+static const char col_gray2[] = "#32302f"; /* last square, windows borders */
+static const char col_gray3[] = "#ebdbb2"; /* squares bg, maybe text */
+static const char col_gray4[] = "#ebdbb2"; /* selected square */
+static const char col_cyan[] = "#900000"; /* red tint */
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },