blob: 5111d1636f6ad6cb98bdaf7ae376658661a52836 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# from left to right
sections = [ "music", "battery", "ip", "mounts", "hostname", "clock" ]
delay = 10
separator = " | "
[hostname]
label = "hostname: "
[ip]
label = "IP: "
interfaces = [ "eno1" ]
ipv4only = true
[mounts]
label = "mounts: "
mountpoints = [ "/", "/mnt/storage", "/mnt/storage1" ]
[music]
# type can be mpd, mocp or generic
type = "mpd"
labelplaying = "▶ "
labelpaused = "⏸ "
labelstopped = "-"
# MPD only
host = "localhost"
port = 6600
# generic only
nowplayingcmd = "music getnowplaying"
statuscmd = "music getstatus"
[clock]
label = ""
format = "Monday 2006-01-02 15:04:05"
[battery]
label = "battery: "
sublabel = "battery"
fulllabel = "🔋↑"
charginglabel = "⚡"
discharginglabel = "🔋↓"
unknownstatuslabel = "🤷"
|