diff options
| author | Sam Chudnick <sam@chudnick.com> | 2023-06-11 08:00:24 -0400 |
|---|---|---|
| committer | Sam Chudnick <sam@chudnick.com> | 2023-06-11 08:00:24 -0400 |
| commit | 12ce8bdd65d3b5fcd6e8227eaecd5f772a90f8da (patch) | |
| tree | 5be7566c5ef41877e1d03a013667fdae1aedf252 /.config/picom | |
| parent | 9e82c96713989a7565eadac505b36e3dbe91cd5a (diff) | |
Configuration file updates and additions.
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'"] | ||
