From f1fe92f4802d832ab4f539a4c2819d84a4e80fb1 Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Mon, 3 Jun 2024 14:11:14 +0100 Subject: [PATCH] DMW colors and settings --- suckless/dwm/config.def.h | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/suckless/dwm/config.def.h b/suckless/dwm/config.def.h index 089ab451..ce603c89 100644 --- a/suckless/dwm/config.def.h +++ b/suckless/dwm/config.def.h @@ -3,25 +3,20 @@ #include "exitdwm.c" /* appearance */ -static const unsigned int borderpx = 2; /* border pixel of windows */ +static const unsigned int borderpx = 4; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ 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 */ +static const unsigned int systrayonleft = 1; /* 0: systray in the right corner, >0: systray on left of status text */ static const unsigned int systrayspacing = 2; /* systray spacing */ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/ 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[] = { "JetBrainsMono NF:size=20" }; -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[] = "#005577"; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeNorm] = { "ebdbb2", "282828", "1d2021" }, + [SchemeSel] = { "282828", "ebdbb2", "ebdbb2" }, }; /* tagging */