diff options
Diffstat (limited to '.config/compton.conf')
| -rw-r--r-- | .config/compton.conf | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/.config/compton.conf b/.config/compton.conf new file mode 100644 index 0000000..08cbf2b --- /dev/null +++ b/.config/compton.conf @@ -0,0 +1,64 @@ +#corner-radius = 15.0; + +## 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.5; + +## fading +fading = true; +fade-delta = 0.25; +fade-in-step = 0.02; +fade-out-step = 0.02; +fade-exclude = [ +]; + +## opacity +active-opacity = 0.8; +frame-opacity = 0.5; +opacity-rule = [ + "80:class_g = 'Thunar'", + "80:class_g = 'Code'", + "50:class_g = 'discord'", + "80:class_g = 'jetbrains-studio'" +]; + +## other +backend = "glx"; +mark-wmwin-focused = true; +mark-ovredir-focused = true; +detect-rounded-corners = true; +detect-client-opacity = true; +refresh-rate = 0; +vsync = "none"; +dbe = false; +paint-on-overlay = true; +focus-exclude = [ "class_g = 'Cairo-clock'" , + "class_g = 'CoverGloobus'", + "class_g = 'Tilda'", + "class_g = 'google-chrome'", + "class_g = 'Firefox-esr'" +]; +detect-transient = true; +detect-client-leader = true; +invert-color-include = [ ]; +glx-copy-from-front = false; +glx-swap-method = "undefined"; +wintypes: +{ + tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; }; +}; + +## blur +blur-background = true; +blur-background-frame = false; +blur-background-fixed = false; +blur-kern = "3x3box"; +blur-method = "kawase"; +blur-strength = 10; +blur-background-exclude = [ "class_g = 'slop'", "class_g = 'Peek'", "window_type = 'desktop'" ]; |
