diff options
Diffstat (limited to '.config/picom')
-rw-r--r-- | .config/picom/picom.conf | 35 |
1 files changed, 30 insertions, 5 deletions
diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf index 4723dcd..e74baf2 100644 --- a/.config/picom/picom.conf +++ b/.config/picom/picom.conf | |||
@@ -1,5 +1,30 @@ | |||
1 | opacity-rule = [ | 1 | shadow = true; |
2 | "90:class_g = 'URxvt'", | 2 | |
3 | "90:class_g = 'Steam'", | 3 | vsync = true; |
4 | "95:class_g = 'KeePassXC'" | 4 | |
5 | ]; | 5 | shadow-radius = 15; |
6 | #shadow-offset-x = -10; | ||
7 | #shadow-offset-y = -10; | ||
8 | shadow-opacity = 0.7; | ||
9 | shadow-ignore-shaped = false; | ||
10 | shadow-exclude = [ "class_g = 'dwm'", | ||
11 | "class_g = 'Firefox-esr'", | ||
12 | "class_g = 'dmenu'"]; | ||
13 | |||
14 | inactive-opacity = 0.9; | ||
15 | active-opacity = 1.0; | ||
16 | frame-opacity = 1.0; | ||
17 | inactive-opacity-override = false; | ||
18 | inactive-dim = 0.1; | ||
19 | opacity-rule = ["100:class_g = 'dwm'", | ||
20 | "100:class_g = 'Firefox-esr'", | ||
21 | "100:class_g = 'dmenu'"]; | ||
22 | |||
23 | fading = true; | ||
24 | fade-delta = 5; | ||
25 | fade-in-step = 0.3; | ||
26 | fade-out-step = 0.3; | ||
27 | |||
28 | corner-radius = 10; | ||
29 | rounded-corners-exclude = ["class_g = 'dwm'", | ||
30 | "class_g = 'dmenu'"] | ||