blob: 6f65e03baaa0fc2afd2cb39d421b096b936a3b2a (
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
|
# from left to right
sections = [ "music", "ip", "mounts", "clock" ]
delay = 10
separator = " | "
[ip]
label = "IP: "
interfaces = [ "eno1" ]
ipv4only = true
[mounts]
label = "mounts: "
mountpoints = [ "/", "/mnt/storage", "/mnt/storage1" ]
[music]
# type can be mpd or mocp
type = "mpd"
labelplaying = "▶ "
labelpaused = "⏸ "
labelstopped = "-"
# MPD only
host = "localhost"
port = 6600
[clock]
label = ""
format = "Monday 2006-01-02 15:04:05"
|