From b745401cc464b7f6dc7e3e022ea3ed209ab6a151 Mon Sep 17 00:00:00 2001 From: Jason Hilder Date: Tue, 23 Jun 2026 21:03:02 +0200 Subject: [PATCH] Using picom now --- config/picom/picom.conf | 65 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 config/picom/picom.conf diff --git a/config/picom/picom.conf b/config/picom/picom.conf new file mode 100644 index 0000000..1bfd18f --- /dev/null +++ b/config/picom/picom.conf @@ -0,0 +1,65 @@ +################################# +# Fading # +################################# +fading = true; +fade-in-step = 0.08; +fade-out-step = 0.08; + +################################# +# Transparency / Opacity # +################################# +frame-opacity = 1.0; + +################################# +# Corners # +################################# +corner-radius = 13; + +################################# +# FAST SNAPPY ANIMATIONS # +################################# +animations = ( + { + triggers = ["open", "show"]; + preset = "appear"; + duration = 0.20; + }, + { + triggers = ["close", "hide"]; + preset = "disappear"; + duration = 0.20; + }, + { + triggers = ["geometry"]; + preset = "geometry-change"; + duration = 0.30; + } +); + +################################# +# General Settings # +################################# +backend = "xrender"; +dithered-present = false; +vsync = true; +detect-rounded-corners = true; +detect-client-opacity = true; +detect-transient = true; +use-damage = true; +log-level = "warn"; + +################################# +# Window Rules # +################################# +rules: ( + # No rounded corners on dock and desktop + { + match = "window_type = 'dock' || window_type = 'desktop' || class_g = 'Rofi'"; + corner-radius = 0; + }, + # Dim all app windows besides systems stuff + { + match = "focused = 0 && window_type = 'normal' && class_g != 'Rofi'"; + dim = 0.45; + } +)