summaryrefslogtreecommitdiffstats
path: root/i3status.conf
blob: aab6ae7f53882921ae1206f2875d14d5a239ed4c (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
general {
    output_format = i3bar
    interval = 1
}

order += "cpu_usage"
order += "wireless wlan0"
order += "ethernet eth0"
order += "battery 0"
order += "time"

cpu_usage {
    format = "CPU: %usage"
}

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

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

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

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