plugfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 0e698981f2df8e59bd25548b5ac4ad5c7ab84dab
parent 726c3b0aedae823c807f509df53f20e7e453067e
Author: NicholasFarrow <nicholas.w.farrow@gmail.com>
Date:   Sat, 11 Apr 2020 22:50:06 +1000

Fix shadows and transparency

Diffstat:
A.config/compton.conf | 39+++++++++++++++++++++++++++++++++++++++
R.config/.compton.conf -> compton.conf | 0
2 files changed, 39 insertions(+), 0 deletions(-)

diff --git a/.config/compton.conf b/.config/compton.conf @@ -0,0 +1,39 @@ +## Shadow +shadow = true; +no-dnd-shadow = true; +no-dock-shadow = false; +clear-shadow = true; +shadow-radius = 12; +shadow-offset-x = -17; +shadow-offset-y = -7; +shadow-opacity = 0.9; +shadow-exclude = [ "class_g = 'Polybar'"]; + + +## fading +fading = true; +fade-delta = 0.25; +fade-in-step = 0.02; +fade-out-step = 0.02; +fade-exclude = [ +]; + +## opacity +active-opacity = 1.0; +#frame-opacity = 0.7; +inactive-opacity = 0.80 +focus-exclude = [ "class_g = 'chromium'", "class_g = 'Brave-browser'"] + +#opacity-rule = [ "80:class_g = 'code-oss'" ]; + + +## blur +blur-background = true; +#blur-background-frame = false; +#blur-background-fixed = false; +#blur-kern = "3x3box"; +blur-method = "kawase"; +blur-strength = 8; +#blur-background-exclude = [ "window_type = 'desktop'" ]; + +opacity-rule = [ "100:class_g = 'St'" ]; diff --git a/.config/.compton.conf b/compton.conf