Commit | Line | Data |
---|---|---|
cd3b4dc1 AB |
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 = 3 | |
12 | } | |
13 | ||
14 | #order += "ipv6" | |
15 | order += "disk /" | |
16 | #order += "run_watch DHCP" | |
17 | #order += "run_watch VPN" | |
18 | #order += "wireless wlp3s0" | |
19 | #order += "ethernet eth0" | |
20 | order += "battery 0" | |
21 | order += "volume master" | |
22 | order += "load" | |
23 | order += "tztime local" | |
24 | order += "time" | |
25 | ||
26 | wireless wlp3s0 { | |
27 | # format_up = "W: (%quality at %essid) %ip" | |
28 | format_up = "W: %ip at %essid" | |
29 | format_down = "W: down" | |
30 | } | |
31 | ||
32 | ethernet eth0 { | |
33 | # if you use %speed, i3status requires root privileges | |
34 | format_up = "E: %ip (%speed)" | |
35 | format_down = "E: down" | |
36 | } | |
37 | ||
38 | battery 0 { | |
39 | # format = "%status %percentage %remaining" | |
40 | format = " %percentage" | |
41 | ||
42 | } | |
43 | ||
44 | run_watch DHCP { | |
45 | pidfile = "/var/run/dhclient*.pid" | |
46 | } | |
47 | ||
48 | run_watch VPN { | |
49 | pidfile = "/var/run/vpnc/pid" | |
50 | } | |
51 | ||
52 | tztime local { | |
53 | format = " %a %b %_d, %Y" | |
54 | } | |
55 | time { | |
56 | format = " %I:%M" | |
57 | } | |
58 | ||
59 | load { | |
60 | format = " %1min" | |
61 | } | |
62 | ||
63 | disk "/" { | |
64 | format = " %avail" | |
65 | } | |
66 | ||
67 | volume master { | |
68 | # format = "♪: %volume" | |
69 | # format = " %volume" | |
70 | format = " %volume" | |
71 | format_muted = " %volume" | |
72 | device = "pulse" | |
73 | mixer = "Master" | |
74 | mixer_idx = 0 | |
75 | } |