i3/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 color_good = "#a8c2ed"
12 color_bad = "#a56d82"
13 color_degraded = "#c17d97"
14 interval = 5
15 }
16
17 order += "disk /"
18 order += "wireless _first_"
19 order += "ethernet _first_"
20 order += "battery 0"
21 order += "load"
22 order += "volume master"
23 order += "cpu_temperature 0"
24 order += "tztime local"
25
26 volume master {
27 format = " ♪: %volume "
28 device = "default"
29 mixer = "Master"
30 mixer_idx = 0
31 }
32
33 wireless _first_ {
34 format_up = " W: (%quality at %essid) %ip "
35 format_down = " W: down "
36 }
37
38 ethernet _first_ {
39 # if you use %speed, i3status requires root privileges
40 format_up = " E: %ip (%speed) "
41 format_down = "E Down"
42 }
43
44 battery 0 {
45 format = " %status %percentage %remaining "
46 format_down = " No battery "
47 status_chr = " ⚡ CHR "
48 status_bat = "BAT "
49 status_full = " ☻ FULL "
50 path = "/sys/class/power_supply/BAT%d/uevent"
51 low_threshold = 10
52 }
53
54 run_watch DHCP {
55 pidfile = "/var/run/dhclient*.pid"
56 }
57
58 run_watch VPNC {
59 pidfile = "/var/run/vpnc/pid"
60 }
61
62 tztime local {
63 format = " %Y-%m-%d %H:%M:%S "
64 }
65
66 load {
67 format = " %1min "
68 }
69
70 disk "/" {
71 format = "Free / : %avail "
72 }
73
74 cpu_temperature 0 {
75 format = " %degrees °C "
76 path = "/sys/devices/platform/coretemp.0/hwmon/hwmon3/temp1_input"
77 }