forked from WillPower3309/awesome-dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
picom.conf
41 lines (37 loc) · 896 Bytes
/
picom.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
vsync = false;
backend = "glx";
glx-no-stencil = true;
glx-no-rebind-pixmap = true;
xrender-sync-fence = "true";
glx-swap-method = -10;
unredir-if-possible = false;
shadow = true;
shadow-radius = 40;
shadow-opacity = .55;
shadow-offset-x = -40;
shadow-offset-y = -20;
shadow-exclude = [
"_NET_WM_WINDOW_TYPE:a = '_NET_WM_WINDOW_TYPE_NOTIFICATION'",
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'",
"_GTK_FRAME_EXTENTS@:c"
];
shadow-ignore-shaped = false;
# detect-rounded-corners = true;
# opacity-rule = [
# "90:class_g = 'Alacritty'",
# "90:class_g = 'Org.gnome.Nautilus'",
# "65:window_type = 'dock'"
# ];
corner-radius = 20;
rounded-corners-exclude = [
"window_type = 'dock'",
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_MAXIMIZED_VERT'"
]
# blur:
# {
# method = "kawase";
# strength = 15;
# background = false;
# background-frame = false;
# background-fixed = false;
# };