From f9559a2fb1d72b81efac56adca121dcb8b061398 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Mon, 7 Mar 2022 19:00:15 +0100 Subject: [PATCH] Border size + color. --- _suckless/dwm/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_suckless/dwm/config.h b/_suckless/dwm/config.h index 738f66a..09165d8 100644 --- a/_suckless/dwm/config.h +++ b/_suckless/dwm/config.h @@ -1,7 +1,7 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const unsigned int borderpx = 7; /* border pixel of windows */ +static const unsigned int borderpx = 5; /* border pixel of windows */ static const int startwithgaps = 1; /* 1 means gaps are used by default */ static const unsigned int gappx = 15; /* default gap between windows in pixels */ static const unsigned int snap = 32; /* snap pixel */ @@ -20,7 +20,7 @@ static const char col_bg[] = "#c7c7c7"; static const char col_bd[] = "#161616"; static const char col_fg_sel[] = "#ffffff"; static const char col_bg_sel[] = "#005577"; -static const char col_bd_sel[] = "#005577"; +static const char col_bd_sel[] = "#ffffff"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_fg, col_bg, col_bd },