-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpicom.conf
executable file
·180 lines (166 loc) · 5.62 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
##############################################################################
# ANIMATION #
# Fork: dccsillag #
##############################################################################
# animations = true;
# animation-stiffness = 200.0;
# animation-dampening = 25.0;
# animation-clamp = false;
# animation-mass = 1;
# animation-for-open-window = "zoom";
# animation-for-menu-window = "zoom";
# animation-for-transient-window = "zoom";
# animation-for-workspace-switch-in = "zoom";
# animation-for-workspace-switch-out = "zoom";
##############################################################################
# TRANSITION #
# Fork: Arian8j2 #
##############################################################################
# When windows get moved or resized it transitions window position
transition = true;
# How many pixels move window to make the first position in transition (defaults to 20)
transition-offset = 30;
# Direction of transition (top, right, bottom, left) e.g: "right" direction will make
# all windows come from right to left
# (smart-x, smart-y) are smart direction that will check if there are
# multiple windows that splits the screen and will change their directions,
# in "smart-x" it changes direction of left window to "right" and direction of
# right window to "left", if screen is not split and a window is taking
# a lot of screen it will change that window direction to "left".
# "smart-y" is also exactly like "smart-x" but instead of translating directions to
# "right" and "left", it translate to "top" and "bottom"
transition-direction = "top";
# Function that calculates new position of window (defaults to "ease-out-cubic")
# see https://easings.net for list of all functions
# naming conventions are different to that site tho, e.g "easeInSine" is listed
# on site but here that translated to "ease-in-sine"
transition-timing-function = "ease-out-back";
# Time between frames in transition. (0.01 - 1.0, defaults to 0.028)
transition-step = 0.035;
# Similar to opacity rules but determites transition direction e.g:
# "right: name *= 'Firefox'" will make firefox transition direction to right
# Specify a list of transition rules, in the format `DIRECTION:PATTERN`
# for disabling transition on specific patterns use "none" keyword as a direction
# e.g: use "none: window_type = 'popup_menu'" for disabling transitions on popup menus
transition-rule = [
"none: window_type = 'dialog'",
"none: window_type = 'menu'",
"none: window_type = 'dropdown_menu'",
"none: window_type = 'popup_menu'",
"none: window_type = 'tooltip'",
"smart-x: class_g = 'Dunst'",
"smart-y: class_g ?= 'rofi'"
];
##############################################################################
# GENERAL #
##############################################################################
corner-radius = 20;
frame-opacity = 1.0;
active-opacity = 0.95;
opacity-rule = [
"89: class_g *?= 'Spotify'",
"96: class_i *?= 'vscodium'",
"100: class_i *?= 'DesktopEditors'",
"100: class_i *?= 'Matlab'",
"100: class_i *?= 'Navigator'",
"100: class_i *?= 'VirtualBox Machine'",
"100: class_i *?= 'anydesk'",
"100: class_i *?= 'chrome'",
"100: class_i *?= 'cvavr.exe'",
"100: class_i *?= 'eog'",
"100: class_i *?= 'evince'",
"100: class_i *?= 'jellyfinmediaplayer'",
"100: class_i *?= 'kdeconnect-app'",
"100: class_i *?= 'kmag'",
"100: class_i *?= 'matplotlib'",
"100: class_i *?= 'nemo'",
"100: class_i *?= 'octave-gui'",
"100: class_i *?= 'plexmediaplayer'",
"100: class_i *?= 'teams'",
"100: class_i *?= 'vlc'",
"100: class_i *?= 'xreader'",
"100: class_i *?= 'zathura'",
"100: class_i *?='alttab'",
"100: class_g *?= 'virt-manager'",
"100: class_g *?= 'transmission-gtk'",
"100: class_g *?= 'realvnc-vncviewer'",
"100: class_g *?= 'mpv'",
"100: class_g *?= 'libreoffice'",
"100: class_g *?= 'gimp-2.10'",
"100: class_g *?= 'Ferdi'",
"100: class_g *?= 'feh'",
"100: class_g *?= 'Dunst'",
"100: class_g *?= 'Brave'",
"100: class_g *?= 'UxPlay@arch'",
"100: class_g *?= 'whatsapp'"
];
# blur-method = "dual_kawase";
blur-kern = "3x3box";
blur-strength = 3;
blur-background-exclude = [
"QTILE_INTERNAL@:c",
"class_i *?= 'zathura'",
"class_i *?= 'octave-gui'",
"class_i *?= 'nemo'",
"class_i *?= 'Navigator'",
"class_i *?= 'evince'",
"class_i *?= 'cvavr.exe'",
"class_i *?= 'chromium'",
"class_g *?= 'virt-manager'",
"class_g *?= 'transmission-gtk'",
"class_g *?= 'Plank'",
"class_g *?= 'mpv'",
"class_g *?= 'libreoffice'",
"class_g *?= 'google-chrome-beta'",
"class_g *?= 'gimp-2.10'",
"class_g *?= 'Firefox'",
"class_g *?= 'Ferdi'",
"class_g *?= 'feh'",
"class_g *?= 'Dunst'",
"class_g *?= 'Brave'"
];
# experimental-backends = true;
shadow = false;
shadow-exclude = [ "QTILE_INTERNAL@:c", "QTILE_INTERNAL:32c = 1" ];
wintypes :
{
dock :
{
shadow = false;
};
dnd :
{
shadow = false;
};
tooltip :
{
shadow = false;
opacity = 1.0;
};
menu :
{
opacity = 1.0;
};
dropdown_menu :
{
opacity = 1.0;
};
popup_menu :
{
opacity = 1.0;
};
utility :
{
opacity = 1.0;
};
};
backend = "xr_glx_hybrid";
# vsync = true;
mark-wmwin-focused = true;
mark-ovredir-focused = true;
detect-rounded-corners = true;
detect-client-opacity = true;
detect-transient = true;
detect-client-leader = true;
use-damage = false;
log-level = "warn";