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
|
# Animations
transition-length = 250;
transition-pow-x = 0.3;
transition-pow-y = 0.3;
transition-pow-w = 0.3;
transition-pow-h = 0.3;
size-transition = true;
## Corners
corner-radius = 5;
round-borders = 5;
rounded-corners-exclude = [
"window_type = 'dock'",
"window_type = 'desktop'",
"class_g = 'Plank'"
];
## Shadows
shadow = true;
shadow-radius = 10;
shadow-opacity = 0.25;
shadow-offset-x = -10;
shadow-offset-y = -10;
# shadow-red = 0
# shadow-green = 0
# shadow-blue = 0
shadow-color = "#000000"
shadow-exclude = [
#"name = 'Notification'",
"class_g = 'Conky'",
#"class_g ?= 'Notify-osd'",
"class_g = 'firefox'",
#"class_g = 'Rofi'",
"class_g = 'Plank'",
"_GTK_FRAME_EXTENTS@:c"
];
# shadow-exclude-reg = ""
## Fading
fading = true;
fade-in-step = 0.03;
fade-out-step = 0.03;
fade-delta = 7
fade-exclude = [
"class_g *?= \"rofi\""
]
no-fading-openclose = false
no-fading-destroyed-argb = false
## Transparency / Opacity
inactive-opacity = 1.0;
frame-opacity = 1.0;
inactive-opacity-override = false;
active-opacity = 1.0
inactive-dim = 0.0
focus-exclude = [
"class_g *?= \"rofi\"",
"class_g = 'Plank'"
];
inactive-dim-fixed = 1.0
# opacity-rule = []
# Background-Blurring
blur: {
method = "dual_kawase";
strength = 4.0;
# deviation = 1.0;
# kernel = "11x11gaussian";
}
# blur-background = true;
# blur-background-frame = true;
# blur-kern = "3x3box";
# blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1";
# blur-background-fixed = true;
blur-background-exclude = [
"window_type = 'desktop'",
"window_type = 'utility'",
#"window_type = 'notification'",
"class_g = 'slop'",
#"class_g = 'Polybar'",
"class_g = 'Firefox' && argb",
"class_g = 'Plank'",
"name = 'rofi - Search'",
"_GTK_FRAME_EXTENTS@:c"
];
# blur-method = "dual_kawase"
# blur-size = 12
# blur-deviation = false
# blur-strength = 5
# blur-background = false
# blur-background-frame = false
# blur-background-fixed = false
# blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1";
blur-kern = "3x3box";
# General Settings
backend = "glx"; #xrender, glx, xr_glx_hybrid
vsync = true;
mark-wmwin-focused = true;
mark-ovredir-focused = true;
detect-rounded-corners = true;
detect-client-opacity = true;
refresh-rate = 0;
use-ewmh-active-win = true;
unredir-if-possible = false
# unredir-if-possible-delay = 0
# unredir-if-possible-exclude = []
detect-transient = true;
detect-client-leader = true;
# resize-damage = 1
# invert-color-include = []
# glx-no-stencil = false
# glx-no-rebind-pixmap = false
use-damage = true;
xrender-sync-fence = true;
# no-ewmh-fullscreen = false
# max-brightness = 1.0
# transparent-clipping = false
log-level = "warn";
# log-file = "/path/to/your/log/file"
# 'WINDOW_TYPE' is one of the 15 window types defined in EWMH standard:
# "unknown", "desktop", "dock", "toolbar", "menu", "utility",
# "splash", "dialog", "normal", "dropdown_menu", "popup_menu",
# "tooltip", "notification", "combo", and "dnd".
wintypes:
{
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
dock = { shadow = false; }
dnd = { shadow = false; }
popup_menu = { opacity = 0.95; }
dropdown_menu = { opacity = 0.95; }
};
|