summaryrefslogtreecommitdiff
path: root/.config/picom
diff options
context:
space:
mode:
authorSam Chudnick <sam@chudnick.com>2023-06-11 08:00:24 -0400
committerSam Chudnick <sam@chudnick.com>2023-06-11 08:00:24 -0400
commit12ce8bdd65d3b5fcd6e8227eaecd5f772a90f8da (patch)
tree5be7566c5ef41877e1d03a013667fdae1aedf252 /.config/picom
parent9e82c96713989a7565eadac505b36e3dbe91cd5a (diff)
Configuration file updates and additions.
Diffstat (limited to '.config/picom')
-rw-r--r--.config/picom/picom.conf35
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 @@
1opacity-rule = [ 1shadow = true;
2 "90:class_g = 'URxvt'", 2
3 "90:class_g = 'Steam'", 3vsync = true;
4 "95:class_g = 'KeePassXC'" 4
5]; 5shadow-radius = 15;
6#shadow-offset-x = -10;
7#shadow-offset-y = -10;
8shadow-opacity = 0.7;
9shadow-ignore-shaped = false;
10shadow-exclude = [ "class_g = 'dwm'",
11 "class_g = 'Firefox-esr'",
12 "class_g = 'dmenu'"];
13
14inactive-opacity = 0.9;
15active-opacity = 1.0;
16frame-opacity = 1.0;
17inactive-opacity-override = false;
18inactive-dim = 0.1;
19opacity-rule = ["100:class_g = 'dwm'",
20 "100:class_g = 'Firefox-esr'",
21 "100:class_g = 'dmenu'"];
22
23fading = true;
24fade-delta = 5;
25fade-in-step = 0.3;
26fade-out-step = 0.3;
27
28corner-radius = 10;
29rounded-corners-exclude = ["class_g = 'dwm'",
30 "class_g = 'dmenu'"]