all repos

dotfiles @ 5c2b55f

my dotfiles

config/i3/i3status (view raw)

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
# vim: ft=conf
general {
    colors = false
    interval = 1
    output_format = "i3bar"
}

order += "volume master"
order += "wireless _first_"
#order += "battery all"
order += "tztime local"

volume master {
    format = " %volume"
    format_muted = " %volume"
    device = "default"
    mixer = "Master"
    mixer_idx = 2
}

wireless _first_ {
    format_up = "%quality"
    format_down = "W: down"
}

battery all {
    format = "%status %percentage"
    last_full_capacity = true
    format_down = "No battery"
    status_chr = ""
    status_bat = ""
    status_unk = "? UNK"
    status_full = ""
    path = "/sys/class/power_supply/BAT%d/uevent"
    low_threshold = 10
}

tztime local {
    format = " %d %b  %H:%M"
}