aboutsummaryrefslogtreecommitdiffstats
path: root/i3/i3status.conf
blob: 337dc6cedacb1498396488dff81650f61f75aa29 (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
general {
    output_format = "i3bar"
    colors = true
    interval = 5
}

order += "disk /"
order += "cpu_temperature 0"
order += "load"
order += "tztime local"

disk "/" {
    format = "%free"
}

cpu_temperature 0 {
    format = "T: %degrees °C"
    path = "/sys/devices/platform/coretemp.0/temp1_input"
}

load {
    format = "%5min"
}

tztime local {
    format = "%Y-%m-%d %H:%M:%S"
}