This repository has been archived by the owner on Jun 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpicom.conf
executable file
·157 lines (140 loc) · 3.78 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#========================= Corners =========================#
corner-radius = 10;
rounded-corners-exclude = [
"class_g ?= 'tint2'",
"class_g ?= 'polybar'",
];
round-borders = 2;
round-borders-exclude = [
"class_g = 'polybar'",
"class_g = 'jetbrains-webstorm'"
];
round-borders-rule = [
"2:class_g ?= 'URxvt'",
"2:class_g ?= 'Alacritty'",
"0:class_g ?= 'neovide'",
"2:class_g ?= 'code'",
"2:class_g ?= 'spotify'",
"2:class_g ?= 'Chromium'",
"2:class_g ?= 'discord'",
"2:class_g ?= 'firefox'",
"0:class_g ?= 'polybar'",
"2:class_g ?= 'rofi'",
"2:class_g ?= 'microsoft-edge'",
"2:class_g ?= 'Postman'",
"2:class_g ?= 'Microsoft-edge'",
"2:class_g ?= 'Microsoft-edge'",
"2:class_g ?= 'TelegramDesktop'",
"2:class_g ?= 'edge'",
"2:class_g ?= 'Google-chrome'",
];
#========================= Shadows =========================#
shadow = false;
shadow-radius = 0;
shadow-opacity = 0.30;
shadow-offset-x = -12;
shadow-offset-y = -12;
shadow-exclude = [
"class_g = 'Cairo-clock'",
"class_g = 'CoverGloobus'",
"class_g = 'Tilda'",
"class_g = 'Polybar'",
"name ?= 'gnome-pie'",
"class_g ?= 'Plank'",
"name *= 'recordmydesktop'",
"name = 'Notification'",
"name = 'Docky'",
"name = 'Kupfer'",
"name = 'xfce4-notifyd'",
"name *= 'VLC'",
"name *= 'Chromium'",
"name *= 'Chrome'",
"class_g = 'Conky'",
"class_g = 'Kupfer'",
"class_g = 'Synapse'",
"class_g ?= 'Notify-osd'",
"class_g ?= 'Cairo-dock'",
"class_g ?= 'Xfce4-notifyd'",
"class_g ?= 'Xfce4-power-manager'",
"_GTK_FRAME_EXTENTS@:c",
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
];
#========================= Fading =========================#
fading = true;
fade-in-step = 0.093;
fade-out-step = 0.093;
fade-delta = 10;
fade-exclude = [
"class_g = 'slop'" # maim
]
no-fading-openclose = false
no-fading-destroyed-argb = false
#========================= Opacity =========================#
mark-ovredir-focused = false;
inactive-opacity = 1;
frame-opacity = 0;
inactive-dim-fixed = 0.5
inactive-opacity-override = false;
active-opacity = 1;
focus-exclude = [
"class_g = 'Cairo-clock'",
"class_g = 'Bar'",
"class_g = 'slop'"
];
opacity-rule = [
"100:class_g = 'Rofi'",
"20:class_g = 'cmatrix'"
];
#========================= Blurring =========================#
blur: {
method = "dual_kawase";
strength = 10;
kern = "3x3box";
background = true;
background-fixed = true;
}
blur-background-exclude = [
"window_type = 'dock'",
"window_type = 'desktop'",
"class_g = 'Plank'",
"class_g = 'polybar'",
"class_g = 'slop'",
"class_g = 'Chromium'",
"_GTK_FRAME_EXTENTS@:c",
];
#========================= General Settings =========================#
backend = "glx";
vsync = true;
mark-wmwin-focused = false;
mark-ovredir-focused = false;
detect-rounded-corners = false;
detect-client-opacity = true;
refresh-rate = 0;
detect-transient = true;
detect-client-leader = true;
glx-no-stencil = true;
xrender-sync-fence = true
transparent-clipping = false
glx-no-rebind-pixmap = true
glx-copy-from-font = true
use-damage = true;
glx-no-stencil = true
log-level = "info";
animations = false
animation-for-transient-window = "fly-in"
animation-for-open-window = "fly-in"
animation-for-unmap-window = "fly-in"
animation-for-workspace-switch-in = "slide-down"; #the windows in the workspace that is coming in
animation-for-workspace-switch-out = "slide-up"; #the windows in the workspace that are coming out
animation-stiffness = 250
animation-dampening = 25
animation-window-mass = 0.8
animation-delta = 8
animation-clamping = true
wintypes:
{
tooltip = { fade=true; shadow=true; opacity=0.95; focus=true; full-shadow=false; };
popup_menu = { opacity=1.0; }
dropdown_menu = { opacity=1.0; }
utility = { shadow=false; opacity=1.0; }
};