summaryrefslogtreecommitdiff
path: root/.config/i3status/config
blob: 3909d214daccd4d77960c361ea49f11fe12b53cf (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
general {
    colors = false
    interval = 5
}

order += "wireless _first_"
order += "ethernet _first_"
order += "battery 0"
order += "volume master"
order += "tztime local"

wireless _first_ {
    format_up   = "󰖩 %quality %essid %ip"
    format_down = ""
}

ethernet _first_ {
    format_up   = "󰈀 %ip"
    format_down = ""
}
battery 0 {
        format = "%status %percentage %remaining"
        format_down = "󱉞"
        status_chr = "󰂋"
        status_bat = "󰂁"
        status_unk = "?"
        status_full = "󰁹"
        status_idle = "IDLE"
        path = "/sys/class/power_supply/BAT0/uevent"
        low_threshold = 15
}

volume master {
    format        = "󰕾 %volume"
    format_muted  = "󰝟 %volume"
    device        = "default"
    mixer         = "Master"
    mixer_idx     = 0
}

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