.i3status.conf

changeset 378
e13ba40f4533
parent 377
7190350f2ab3
child 379
3ea340bffa35
equal deleted inserted replaced
377:7190350f2ab3 378:e13ba40f4533
1
2 # i3status configuration file.
3 # see "man i3status" for documentation.
4
5 # It is important that this file is edited as UTF-8.
6 # The following line should contain a sharp s:
7 # ß
8 # If the above line is not correctly displayed, fix your editor first!
9
10 general {
11 colors = true
12 interval = 10
13 }
14
15 order += "ethernet eth0"
16 order += "load"
17 order += "tztime local"
18
19 wireless wlan0 {
20 format_up = "W: (%quality at %essid) %ip"
21 format_down = "W: down"
22 }
23
24 ethernet eth0 {
25 # if you use %speed, i3status requires root privileges
26 format_up = "E: %ip"
27 format_down = "E: down"
28 }
29
30 battery 0 {
31 format = "%status %percentage %remaining"
32 integer_battery_capacity = true
33 }
34
35 volume master {
36 format = "♪ %volume"
37 format_muted = "♪̶ %volume"
38 device = "default"
39 mixer = "Master"
40 mixer_idx = 0
41 }
42 run_watch DHCP {
43 pidfile = "/var/run/dhclient*.pid"
44 }
45
46 run_watch VPN {
47 pidfile = "/var/run/vpnc/pid"
48 }
49
50 tztime local {
51 format = "%m-%d %H:%M"
52 }
53
54 load {
55 format = "%1min"
56 }
57
58 disk "/" {
59 format = "%avail"
60 }

mercurial