-
Notifications
You must be signed in to change notification settings - Fork 2
/
default.lua
64 lines (58 loc) · 1.17 KB
/
default.lua
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
local settings = require("settings")
local colors = require("colors")
sbar.default(
{
updates = "when_shown",
icon = {
color = colors.white,
font = {
family = settings.font.text,
style = settings.font.style_map.Bold,
size = 14.0
},
},
label = {
padding_left = settings.paddings,
padding_right = settings.paddings,
font = {
family = settings.font.text,
style = settings.font.style_map.SemiBold,
size = 12.0
},
color = colors.lightgray
},
background = {
height = 26,
corner_radius = 6,
border_width = 0.5,
border_color = colors.bar.border,
image = {
corner_radius = 8
},
},
popup = {
icon = { drawing = false, },
label = {
font = {
family = settings.font.text,
style = settings.font.style_map.SemiBold,
size = 14.0
},
color = colors.bar.foreground_alt
},
background = {
border_width = 1,
corner_radius = 6,
border_color = colors.popup.border,
color = colors.popup.bg,
shadow = {
drawing = true
},
},
blur_radius = 80
},
padding_right = settings.group_paddings,
padding_left = settings.group_paddings,
scroll_texts = true
}
)