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
+45-20Lines changed: 45 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,3 @@
1
-
# Thank you code_nomad: http://9m.no/ꪯ鵞
2
-
# and Arch Wiki contributors: https://wiki.archlinux.org/index.php/Compton
3
-
4
1
#################################
5
2
#
6
3
# Backend
@@ -41,6 +38,7 @@ glx-copy-from-front = false;
41
38
# Defaults to undefined.
42
39
#glx-swap-method = "undefined";
43
40
41
+
44
42
#################################
45
43
#
46
44
# Shadows
@@ -68,17 +66,17 @@ shadow-opacity = 0.5;
68
66
# 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
67
shadow-exclude = [
70
68
"! name~=''",
69
+
"argb",
71
70
"name = 'Notification'",
72
71
"name = 'Plank'",
73
72
"name = 'Docky'",
74
73
"name = 'Kupfer'",
75
74
"name = 'xfce4-notifyd'",
76
-
"name *= 'VLC'",
77
75
"name *= 'compton'",
78
76
"name *= 'picom'",
79
77
"name *= 'Chromium'",
80
78
"name *= 'Chrome'",
81
-
"class_g = 'Firefox' && argb",
79
+
"class_g = 'Firefox'",
82
80
"class_g = 'Conky'",
83
81
"class_g = 'Kupfer'",
84
82
"class_g = 'Synapse'",
@@ -87,6 +85,7 @@ shadow-exclude = [
87
85
"class_g ?= 'Xfce4-notifyd'",
88
86
"class_g ?= 'Xfce4-power-manager'",
89
87
];
88
+
90
89
# Avoid drawing shadow on all shaped windows (see also: --detect-rounded-corners)
91
90
shadow-ignore-shaped = false;
92
91
@@ -102,8 +101,8 @@ frame-opacity = 1;
102
101
inactive-opacity-override = false;
103
102
104
103
# Dim inactive windows. (0.0 - 1.0)
105
-
# inactive-dim = 0.1;
106
-
inactive-dim = 0;
104
+
inactive-dim = 0.1;
105
+
107
106
# Do not let dimness adjust based on window opacity.
108
107
# inactive-dim-fixed = true;
109
108
# Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred.
@@ -112,18 +111,17 @@ inactive-dim = 0;
112
111
# blur-background-frame = true;
113
112
# Do not let blur radius adjust based on window opacity.
114
113
#blur-background-fixed = false;
115
-
#blur-background-exclude = [
116
-
# "window_type = 'dock'",
117
-
# "window_type = 'desktop'"
118
-
# "class_g = 'i3-frame'",
119
-
#];
120
-
121
-
#blur:
122
-
#{
123
-
# method = "gaussian";
124
-
# size = 10;
125
-
# deviation = 5.0;
126
-
#}
114
+
115
+
blur: {
116
+
method = "dual_kawase";
117
+
strength = 7;
118
+
}
119
+
120
+
blur-background-exclude = [
121
+
"class_g ='firefox'",
122
+
"class_g ='Thunderbird'",
123
+
"argb",
124
+
];
127
125
128
126
#################################
129
127
#
@@ -143,7 +141,8 @@ fade-out-step = 0.03;
143
141
# no-fading-openclose = true;
144
142
145
143
# Specify a list of conditions of windows that should not be faded.
146
-
fade-exclude = [ ];
144
+
fade-exclude = [
145
+
];
147
146
148
147
#################################
149
148
#
@@ -210,8 +209,34 @@ wintypes:
210
209
# focus: Whether to always consider windows of this type focused.
0 commit comments