You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .config/picom/picom.conf
+24-10Lines changed: 24 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -68,17 +68,17 @@ shadow-opacity = 0.5;
68
68
# 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.
69
69
shadow-exclude = [
70
70
"! name~=''",
71
+
"argb",
71
72
"name = 'Notification'",
72
73
"name = 'Plank'",
73
74
"name = 'Docky'",
74
75
"name = 'Kupfer'",
75
76
"name = 'xfce4-notifyd'",
76
-
"name *= 'VLC'",
77
77
"name *= 'compton'",
78
78
"name *= 'picom'",
79
79
"name *= 'Chromium'",
80
80
"name *= 'Chrome'",
81
-
"class_g = 'Firefox' && argb",
81
+
"class_g = 'Firefox'",
82
82
"class_g = 'Conky'",
83
83
"class_g = 'Kupfer'",
84
84
"class_g = 'Synapse'",
@@ -87,9 +87,16 @@ shadow-exclude = [
87
87
"class_g ?= 'Xfce4-notifyd'",
88
88
"class_g ?= 'Xfce4-power-manager'",
89
89
];
90
+
90
91
# Avoid drawing shadow on all shaped windows (see also: --detect-rounded-corners)
91
92
shadow-ignore-shaped = false;
92
93
94
+
rounded-corners-exclude = [
95
+
"window_type = 'dropdown_menu'",
96
+
"window_type = 'popup_menu'",
97
+
"window_type = 'utility'",
98
+
];
99
+
93
100
#################################
94
101
#
95
102
# Opacity
@@ -102,8 +109,8 @@ frame-opacity = 1;
102
109
inactive-opacity-override = false;
103
110
104
111
# Dim inactive windows. (0.0 - 1.0)
105
-
# inactive-dim = 0.1;
106
-
inactive-dim = 0;
112
+
inactive-dim = 0.1;
113
+
107
114
# Do not let dimness adjust based on window opacity.
108
115
# inactive-dim-fixed = true;
109
116
# Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred.
@@ -112,11 +119,14 @@ inactive-dim = 0;
112
119
# blur-background-frame = true;
113
120
# Do not let blur radius adjust based on window opacity.
114
121
#blur-background-fixed = false;
115
-
#blur-background-exclude = [
116
-
# "window_type = 'dock'",
117
-
# "window_type = 'desktop'"
118
-
# "class_g = 'i3-frame'",
119
-
#];
122
+
blur-background-exclude = [
123
+
"class_g ='firefox'",
124
+
"class_g ='Thunderbird'",
125
+
"window_type = 'dropdown_menu'",
126
+
"window_type = 'popup_menu'",
127
+
"window_type = 'utility'",
128
+
"argb",
129
+
];
120
130
121
131
#blur:
122
132
#{
@@ -143,7 +153,11 @@ fade-out-step = 0.03;
143
153
# no-fading-openclose = true;
144
154
145
155
# Specify a list of conditions of windows that should not be faded.
0 commit comments