summaryrefslogtreecommitdiffstats
path: root/config/i3status/config
blob: 4c2bcdd085ecf9eb892abafc7e37023601b3b129 (plain) (blame)
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
general {
    output_format = i3bar
    interval = 1
}

order += "cpu_usage"
order += "wireless wlp3s0"
order += "ethernet enp0s25"
order += "battery 0"
order += "battery 1"
order += "time"
order += "load"

cpu_usage {
    format = "CPU: %usage"
}

wireless wlp3s0 {
    format_up = "wlp3s0: (%essid: %quality)"
    format_down = "wlp3s0"
}

ethernet enp0s25 {
    format_up = "enp0s25: (%speed)"
    format_down = "enp0s25"
}

battery 0 {
    last_full_capacity = true
    format = "%status %percentage (%remaining %consumption)"
}

battery 1 {
    last_full_capacity = true
    format = "%status %percentage (%remaining %consumption)"
}

time {
    format = "%a %b %d %H:%M:%S"
}

load {
    format = "%1min"
}