blob: 4583ca89005acef974a8b888650ad379c129f801 (
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
42
43
44
45
46
47
48
|
general {
colors = true
color_good = "#a3be8c"
color_bad = "#bf616a"
color_degraded = "#d08770"
output_format = "i3bar"
interval = 1
}
order += "disk /"
order += "battery 0"
order += "cpu_temperature 0"
order += "load"
order += "time"
order += "volume master"
battery 0 {
format = "%status %percentage %remaining %emptytime"
format_down = "No battery"
status_chr = "⚡ CHR"
status_bat = "🔋 BAT"
status_unk = "? UNK"
status_full = "☻ FULL"
low_threshold = 10
}
time {
format = "%Y-%m-%d %H:%M:%S"
}
load {
format = "%5min"
}
cpu_temperature 0 {
format = "T: %degrees °C"
}
disk "/" {
format = "%free"
}
volume master {
format = "Vol:%volume"
device = "default"
mixer = "Master"
mixer_idx = 0
}
|