-
Notifications
You must be signed in to change notification settings - Fork 3
/
picom.conf
90 lines (86 loc) · 2.11 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Basic config
backend = "glx";
#log-level = "warn";
#log-file = "/home/tiz/xdg/share/picom.log";
unredir-if-possible = true;
#glx-no-stencil = true;
#glx-no-rebind-pixmap = true;
#xrender-sync-fence = true;
# Fading
fading = true;
fade-delta = 10;
fade-in-step = 0.04;
fade-out-step = 0.04;
no-fading-openclose = false;
no-fading-destroyed-argb = false;
# Shadow
shadow = true;
shadow-opacity = 0.85;
shadow-radius = 10;
shadow-offset-x = -10;
shadow-offset-y = -10;
#shadow-exclude-reg = "x26+0+0";
xinerama-shadow-crop = true;
shadow-exclude = [
"override_redirect = true",
"width >= 1880 && height >= 1054",
"name = 'cpt_frame_window'",
"name = 'as_toolbar'",
"name = 'zoom_linux_float_video_window'",
"name = 'AnnoInputLinux'",
"window_type = 'dock'",
"window_type = 'desktop'",
"window_type = 'dnd'",
"window_type = 'notification'",
"window_type = 'tooltip'",
"class_g = 'Conky'",
"class_g ?= 'notify-osd'",
"class_g = 'Cairo-clock'",
"class_g = 'Xfce4-find-cursor'",
"class_g = 'Discover-overlay'",
"class_g = 'Rofi'",
"class_g = 'dazstudio.exe'",
"class_g = 'Firefox' && argb && window_type != 'tooltip'",
"_GTK_FRAME_EXTENTS@:c"
]
clip-shadow-above = [
"window_type = 'dock'",
]
# Blur
blur-background-frame = true;
blur-background-fixed = false;
#blur-kern = "7x7box";
blur: {
method: "dual_kawase";
strength: 3;
size: 10;
deviation: 5.0;
}
blur-background-exclude = [
"override_redirect = true",
"name = 'cpt_frame_window'",
"name = 'as_toolbar'",
"name = 'zoom_linux_float_video_window'",
"name = 'AnnoInputLinux'",
# "window_type = 'dock'",
"window_type = 'desktop'",
"window_type = 'dnd'",
"window_type = 'notification'",
"window_type = 'tooltip'",
"class_g = 'Conky'",
"class_g = 'Xfce4-find-cursor'",
"class_g = 'Discover-overlay'",
"class_g = 'Rofi'",
"class_g = 'dazstudio.exe'",
"class_g = 'Firefox' && argb && window_type != 'tooltip'",
"_GTK_FRAME_EXTENTS@:c"
]
# Window types
wintypes:
{
tooltip = { fade = true; shadow = false; focus = true; full-shadow = false; }
dock = { shadow = false; }
dnd = { shadow = false; }
popup_menu = { opacity = 0.90; }
dropdown_menu = { opacity = 0.90; }
};