aboutsummaryrefslogtreecommitdiff
path: root/.config/picom.conf##template
blob: dee049a93d409051174c1816ad92830544190f2f (plain)
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
{% if yadm.hostname == "thoncc" %}
shadow-radius = 24;
shadow-opacity = 0.15;
shadow-offset-y = -24;
shadow-offset-x = -24;
{% else %}
shadow-radius = 48;
shadow-opacity = 0.3;
shadow-offset-y = -48;
shadow-offset-x = -48;
{% endif %}

# do not touch, shit finally works w/ gpu
backend = "xrender";
vsync = true;

corner-radius = 8;
shadow = true;

fade-in-step = 0.3;
fade-out-step = 0.18;
fade-delta = 16;

shadow-exclude = [
	"!I3_FLOATING_WINDOW@:c && class_g != 'st' && _NET_WM_WINDOW_TYPE@:32a *= '_NET_WM_WINDOW_TYPE_NORMAL'",
	"!I3_FLOATING_WINDOW@:c && WM_CLASS@:s = 'st'",
	"_NET_WM_WINDOW_TYPE@:32a *= '_NET_WM_WINDOW_TYPE_MENU' && override_redirect = true"
]

rounded-corners-exclude = [
	"!I3_FLOATING_WINDOW@:c && WM_CLASS@:s != 'rofi' && WM_CLASS@:s != 'dunst'"
]

wintypes: {
	dock = {
		shadow = false;
		opacity = 0.999;
	};

	desktop = {
		shadow = false;
	};

	tooltip = {
		fade = true;
		shadow = false;
		opacity = 1;
	};

	menu = {
		fade = false;
	};

	utility = {
		shadow = false;
	};

	notification = {
		fade = true;
	};
};

animations = true;
animation-stiffness-tag-change = 350.0;
animation-stiffness-in-tag = 350.0;
animation-window-mass = 0.8;
animation-dampening = 25.0;
animation-for-open-window = "none";
animation-clamping = false;