Thu, 09 Oct 2014 12:28:58 -0400
Merge from default
1 | 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 | |
71
0be1b725711a
bring in changes from mhoward-lt
Meredith Howard <mhoward@roomag.org>
parents:
44
diff
changeset
|
12 | interval = 10 |
1 | 13 | } |
14 | ||
15 | order += "load" | |
148 | 16 | order += "volume master" |
17 | order += "disk /" | |
18 | order += "cpu_temperature 0" | |
23
a61d6f99a162
Create branch mhoward-lt for host-specific stuff
Meredith Howard <mhoward@roomag.org>
parents:
1
diff
changeset
|
19 | order += "battery 0" |
1 | 20 | order += "tztime local" |
21 | ||
22 | wireless wlan0 { | |
148 | 23 | format_up = "W: %essid" |
1 | 24 | format_down = "W: down" |
25 | } | |
26 | ||
27 | ethernet eth0 { | |
28 | # if you use %speed, i3status requires root privileges | |
30
55d119b276a4
Speed never available in VBox
Meredith Howard <mhoward@roomag.org>
parents:
1
diff
changeset
|
29 | format_up = "E: %ip" |
1 | 30 | format_down = "E: down" |
31 | } | |
32 | ||
33 | battery 0 { | |
34 | format = "%status %percentage %remaining" | |
71
0be1b725711a
bring in changes from mhoward-lt
Meredith Howard <mhoward@roomag.org>
parents:
44
diff
changeset
|
35 | integer_battery_capacity = true |
1 | 36 | } |
37 | ||
71
0be1b725711a
bring in changes from mhoward-lt
Meredith Howard <mhoward@roomag.org>
parents:
44
diff
changeset
|
38 | volume master { |
0be1b725711a
bring in changes from mhoward-lt
Meredith Howard <mhoward@roomag.org>
parents:
44
diff
changeset
|
39 | format = "♪ %volume" |
0be1b725711a
bring in changes from mhoward-lt
Meredith Howard <mhoward@roomag.org>
parents:
44
diff
changeset
|
40 | format_muted = "♪̶ %volume" |
0be1b725711a
bring in changes from mhoward-lt
Meredith Howard <mhoward@roomag.org>
parents:
44
diff
changeset
|
41 | device = "default" |
0be1b725711a
bring in changes from mhoward-lt
Meredith Howard <mhoward@roomag.org>
parents:
44
diff
changeset
|
42 | mixer = "Master" |
0be1b725711a
bring in changes from mhoward-lt
Meredith Howard <mhoward@roomag.org>
parents:
44
diff
changeset
|
43 | mixer_idx = 0 |
0be1b725711a
bring in changes from mhoward-lt
Meredith Howard <mhoward@roomag.org>
parents:
44
diff
changeset
|
44 | } |
1 | 45 | run_watch DHCP { |
46 | pidfile = "/var/run/dhclient*.pid" | |
47 | } | |
48 | ||
49 | run_watch VPN { | |
50 | pidfile = "/var/run/vpnc/pid" | |
51 | } | |
52 | ||
53 | tztime local { | |
71
0be1b725711a
bring in changes from mhoward-lt
Meredith Howard <mhoward@roomag.org>
parents:
44
diff
changeset
|
54 | format = "%m-%d %H:%M" |
1 | 55 | } |
56 | ||
57 | load { | |
148 | 58 | format = "%1min %5min" |
1 | 59 | } |
60 | ||
61 | disk "/" { | |
62 | format = "%avail" | |
63 | } | |
148 | 64 | |
65 | cpu_temperature 0 { | |
66 | format = "%degrees °C" | |
67 | path = "/sys/devices/platform/coretemp.0/temp2_input" | |
68 | } |