diff options
author | InigoGutierrez <inigogf.95@gmail.com> | 2019-12-02 10:40:08 +0100 |
---|---|---|
committer | InigoGutierrez <inigogf.95@gmail.com> | 2019-12-02 10:40:08 +0100 |
commit | 0a56adf6ead97706991a2bc0241f0e1ab0df32ec (patch) | |
tree | 4b361d07e6cc832faa6d06f531f76525ba8d7a69 /files/picom | |
parent | efd23300b89998835a2fc1960178fe0fa1546737 (diff) | |
download | configs-0a56adf6ead97706991a2bc0241f0e1ab0df32ec.tar.gz configs-0a56adf6ead97706991a2bc0241f0e1ab0df32ec.zip |
Mon 02 Dec 2019 10:40:10 AM CET
Diffstat (limited to 'files/picom')
-rw-r--r-- | files/picom/picom.conf | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/files/picom/picom.conf b/files/picom/picom.conf index cb92872..378ccab 100644 --- a/files/picom/picom.conf +++ b/files/picom/picom.conf @@ -75,13 +75,14 @@ shadow-opacity = 0.25; # This list includes all the affected apps I found in my testing. The "! name~=''" part excludes shadows on any "Unknown" windows, this prevents a visual glitch with the XFWM alt tab switcher.
shadow-exclude = [
"! name~=''",
+ "name *= 'dunst'",
+ "name *= 'i3bar'",
"name = 'Notification'",
"name = 'Plank'",
"name = 'Docky'",
"name = 'Kupfer'",
"name = 'xfce4-notifyd'",
"name *= 'VLC'",
- "name *= 'dunst'",
"name *= 'picom'",
"name *= 'Chromium'",
"name *= 'Chrome'",
@@ -126,7 +127,8 @@ blur-background-exclude = [ ];
opacity-rule = [
- "70:class_g = 'URxvt' && focused",
+ "70:class_g = 'URxvt' && !focused"
+ #"80:_NET_WM_NAME@:s = 'rofi'"
];
#################################
@@ -191,7 +193,7 @@ dbe = false; unredir-if-possible = false;
# Specify a list of conditions of windows that should always be considered focused.
-focus-exclude = [ ];
+focus-exclude = [ "_NET_WM_NAME@:s = 'rofi'" ];
# Use WM_TRANSIENT_FOR to group windows, and consider windows in the same group focused at the same time.
detect-transient = false;
|