blob: 9f71e432e34bfa34290e23ea1d6758d1100a7a31 (
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
71
72
73
|
# _____ _ __ _
#| __ (_) / _(_)
#| |__) | ___ ___ _ __ ___ ___ ___ _ __ | |_ _ __ _
#| ___/ |/ __/ _ \| '_ ` _ \ / __/ _ \| '_ \| _| |/ _` |
#| | | | (_| (_) | | | | | | | (_| (_) | | | | | | | (_| |
#|_| |_|\___\___/|_| |_| |_| \___\___/|_| |_|_| |_|\__, |
# __/ |
# |___/
# Shadow
shadow = true;
shadow-radius = 12;
shadow-offset-x = -7;
shadow-offset-y = -7;
shadow-exclude = [
"name = 'Notification'",
"class_g = 'Conky'",
"class_g ?= 'Notify-osd'",
"class_g = 'Cairo-clock'",
"_GTK_FRAME_EXTENTS@:c"
];
# Fading
fading = true;
fade-in-step = 0.04;
fade-out-step = 0.06;
fade-delta = 20
# Transparency / Opacity
inactive-opacity = 1;
frame-opacity = 1.0;
inactive-opacity-override = false;
active-opacity = 1.0
focus-exclude = [ "class_g = 'Cairo-clock'" ];
opacity-rule = [
"90:class_g = 'st-256color'",
]
# Corners
corner-radius = 5
rounded-corners-exclude = [
"window_type = 'dock'",
"class_g = 'dwm'",
"window_type = 'desktop'"
];
# General Settings
backend = "glx"
vsync = true;
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 = "warn";
wintypes:
{
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
dock = { shadow = false; clip-shadow-above = true; }
dnd = { shadow = false; }
popup_menu = { opacity = 0.8; }
dropdown_menu = { opacity = 0.8; }
};
|