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
|
#![enable(implicit_some)]
#![enable(unwrap_newtypes)]
#![enable(unwrap_variant_newtypes)]
(
show_song_table_header: true,
song_table_format: [
(
prop: (kind: Property(Position)),
width: "3",
alignment: Right,
label: "#"
),
(
prop: (kind: Property(Title), default: (kind: Property(Filename))),
width: "45%",
alignment: Left,
label: "Title"
),
(
prop: (kind: Property(Artist), default: (kind: Text("Unknown"))),
width: "35%",
alignment: Left,
label: "Artist"
),
(
prop: (kind: Property(Duration)),
width: "15%",
alignment: Right,
label: "Time"
),
],
text_color: None,
borders_style: (fg: "#4c566a"),
highlighted_item_style: (fg: "#81a1c1", modifiers: "Bold"),
current_item_style: (fg: "#88c0d0", modifiers: "Bold | Reversed"),
lyrics: (
unplayed_style: (fg: "#4c566a"),
played_style: (fg: "#88c0d0", modifiers: "Bold"),
dir: "/mnt/giga/music/",
fetch: true,
),
)
|