diff options
-rw-r--r-- | picom/.config/picom/picom.conf | 2 | ||||
-rw-r--r-- | suckless/.config/suckless/dwm/config.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/picom/.config/picom/picom.conf b/picom/.config/picom/picom.conf index b637da5..9cb9e93 100644 --- a/picom/.config/picom/picom.conf +++ b/picom/.config/picom/picom.conf @@ -143,7 +143,7 @@ focus-exclude = [ "class_g = 'Cairo-clock'" ]; # Sets the radius of rounded window corners. When > 0, the compositor will # round the corners of windows. Does not interact well with # `transparent-clipping`. -# corner-radius = 5 +corner-radius = 5 # Exclude conditions for rounded corners. # rounded-corners-exclude = [ diff --git a/suckless/.config/suckless/dwm/config.h b/suckless/.config/suckless/dwm/config.h index 5a5bdc9..fe9f10a 100644 --- a/suckless/.config/suckless/dwm/config.h +++ b/suckless/.config/suckless/dwm/config.h @@ -5,10 +5,10 @@ /* appearance */ static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ -static const unsigned int gappih = 0; /* horiz inner gap between windows */ -static const unsigned int gappiv = 0; /* vert inner gap between windows */ -static const unsigned int gappoh = 0; /* horiz outer gap between windows and screen edge */ -static const unsigned int gappov = 0; /* vert outer gap between windows and screen edge */ +static const unsigned int gappih = 5; /* horiz inner gap between windows */ +static const unsigned int gappiv = 5; /* vert inner gap between windows */ +static const unsigned int gappoh = 5; /* horiz outer gap between windows and screen edge */ +static const unsigned int gappov = 5; /* vert outer gap between windows and screen edge */ static int smartgaps = 0; /* 1 means no outer gap when there is only one window */ static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static const int showbar = 1; /* 0 means no bar */ |