-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpicom.conf
More file actions
119 lines (96 loc) · 2.75 KB
/
picom.conf
File metadata and controls
119 lines (96 loc) · 2.75 KB
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
# ╔═╗╦╔═╗╔═╗╔╦╗ ╔═╗╔═╗╔╗╔╔═╗╦╔═╗ - z0mbi3
# ╠═╝║║ ║ ║║║║ ║ ║ ║║║║╠╣ ║║ ╦ - https://github.com/gh0stzk/dotfiles
# ╩ ╩╚═╝╚═╝╩ ╩ ╚═╝╚═╝╝╚╝╚ ╩╚═╝ - My picom configuration
#################################
# Shadows #
#################################
shadow = false;
shadow-radius = 18;
shadow-opacity = 0.90;
shadow-offset-x = -23;
shadow-offset-y = -22;
shadow-color = "#000000"
shadow-exclude = [
"name = 'Notification'",
"class_g = 'Conky'",
"class_g ?= 'Notify-osd'",
"class_g = 'Cairo-clock'",
"class_g = 'jgmenu'",
"class_g = 'slop'",
"class_g = 'scratch'",
"class_g = 'Spotify'",
"class_g = 'retroarch'",
"class_g = 'firefox'",
"class_g = 'Rofi'",
"_GTK_FRAME_EXTENTS@:c",
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
];
#################################
# Fading #
#################################
fading = false;
fade-in-step = 0.03;
fade-out-step = 0.03;
no-fading-destroyed-argb = true
fade-delta = 6
fade-exclude = [
"class_g = 'slop'",
#"class_g = 'Rofi'",
"class_g = 'scratch'"
];
#################################
# Corners #
#################################
corner-radius = 0
rounded-corners-exclude = [
"window_type = 'dropdown_menu'",
"window_type = 'popup_menu'",
"window_type = 'popup'",
"window_type = 'dock'",
"class_g = 'Polybar'",
"class_g = 'eww-bar'",
"class_g = 'Viewnior'",
"class_g = 'Rofi'",
"class_g = 'mpv'",
"class_g = 'retroarch'"
];
#################################
# Transparency / Opacity #
#################################
inactive-opacity = 1.0;
inactive-opacity-override = false;
focus-exclude = [
"class_g = 'Cairo-clock'",
"class_g = 'slop'" # maim
];
opacity-rule = [
"100:class_g = 'Alacritty'",
"100:class_g = 'FloaTerm'",
"95:class_g = 'Updating'",
"90:class_g = 'scratch'"
];
#################################
# General Settings #
#################################
# Available backends "xrender" "glx" "egl" "xr_glx_hybrid"
backend = "glx";
dithered-present = false;
vsync = false;
mark-wmwin-focused = true;
mark-ovredir-focused = true;
detect-rounded-corners = true;
detect-client-opacity = true;
detect-transient = true;
glx-no-stencil = true;
use-damage = true;
log-level = "error";
#################################
# Wintypes #
#################################
wintypes:
{
normal = { fade = true; shadow = false; }
tooltip = { fade = false; shadow = false; focus = true; full-shadow = false; }
dock = { shadow = false; clip-shadow-above = false; }
dnd = { shadow = false; }
};