-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyamc.ron
39 lines (39 loc) · 883 Bytes
/
yamc.ron
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
(
refresh_rate_ms: 100,
image: Image(
force_symbols: false,
margins: Box(
top: 1,
bottom: 1,
left: 2,
right: 3,
),
size: (24, 12),
),
metadata: Metadata(
vertical_margins: (3, 1),
interline_gap: 0,
),
controls_bar: ControlsBar(
button_prev: Button(
icon: '⏮',
padding: (1, 1),
margins: (0, 3),
),
button_playpause: ButtonSwitchable(
icon_state1: '',
icon_state2: '▶',
padding: (1, 1),
margins: (0, 0),
),
button_next: Button(
icon: '⏭',
padding: (1, 1),
margins: (3, 0),
),
use_background: true,
use_caps: true,
cap_left:'',
cap_right: '',
)
)