]> git.donarmstrong.com Git - x_base.git/blob - .config/i3status/config
add i3wm configuration
[x_base.git] / .config / i3status / config
1 # i3status configuration file.
2 # see "man i3status" for documentation.
3
4 # It is important that this file is edited as UTF-8.
5 # The following line should contain a sharp s:
6 # ß
7 # If the above line is not correctly displayed, fix your editor first!
8
9 general {
10         colors = true
11         interval = 5
12 }
13
14 order += "ipv6"
15 order += "run_watch DHCP"
16 order += "path_exists VPN"
17 order += "wireless _first_"
18 order += "ethernet _first_"
19 order += "battery 0"
20 order += "battery 1"
21 order += "load"
22 order += "tztime local"
23
24 wireless _first_ {
25         format_up = "W: (%quality at %essid) %ip"
26         format_down = "W: down"
27 }
28
29 ethernet etho {
30         # if you use %speed, i3status requires root privileges
31         format_up = "E: %ip (%speed)"
32         format_down = "E: down"
33 }
34
35 battery 0 {
36         format = "%status %percentage %remaining"
37 }
38
39 battery 1 {
40         format = "%status %percentage %remaining"
41 }
42
43 run_watch DHCP {
44         pidfile = "/var/run/dhclient*.pid"
45 }
46
47 path_exists VPN {
48         path = "/proc/sys/net/ipv4/conf/tun0"
49 }
50
51 tztime local {
52         format = "%Y-%m-%d %H:%M:%S"
53 }
54
55 load {
56         format = "%1min"
57 }
58
59 disk "/" {
60         format = "%avail"
61 }