1 # github.com/rafi i3status config
2
3 # i3status configuration file
4 # see "man i3status" for documentation.
5
6 # It is important that this file is edited as UTF-8.
7 # The following line should contain a sharp s:
8 # ß
9 # If the above line is not correctly displayed, fix your editor first!
10
11 general {
12 colors = true
13 color_good = "#BBBBBB"
14 color_bad = "#CC1616"
15 color_degraded = "#55858E"
16 interval = 2
17 }
18
19 order += "volume master"
20 order += "load"
21 order += "cpu_usage"
22 order += "disk /"
23 order += "disk /media/media"
24 order += "ethernet eth0"
25 order += "tztime local"
26 #order += "ipv6"
27 #order += "run_watch DHCP"
28 #order += "run_watch VPN"
29 #order += "wireless wlan0"
30
31 volume master {
32 # format = " ♪: %volume "
33 device = "default"
34 mixer = "Master"
35 mixer_idx = 0
36 # termsyn font
37 format = "À %volume "
38 }
39
40 load {
41 # format = " Δ: %1min "
42 # termsyn font
43 format = " Î %1min"
44 }
45
46 cpu_usage {
47 format = "%usage "
48 }
49
50 #cpu_temperature 0 {
51 # format = " ± %degrees°"
52 # path = "/sys/devices/platform/coretemp.0/temp2_input"
53 # max_threshold = 95
54 #}
55
56 disk "/" {
57 format = " ¨ %avail:/ "
58 }
59
60 disk "/media/media" {
61 format = " ¨ %avail:m "
62 }
63
64 wireless wlan0 {
65 format_up = " W: (%quality at %essid) %ip "
66 format_down = " ☡ WiFi "
67 }
68
69 ethernet eth0 {
70 # if you use %speed, i3status requires root privileges
71 # format_up = " Ω: %ip "
72 # format_down = " ∅ eth0 "
73
74 # termsyn font
75 format_up = " %ip "
76 format_down = " Ð eth0 "
77 }
78
79 run_watch DHCP {
80 pidfile = "/var/run/dhclient*.pid"
81 }
82
83 run_watch VPN {
84 pidfile = "/var/run/vpnc/pid"
85 }
86
87 tztime local {
88 # format = " %h-%d %H:%M ☰ "
89 # termsyn font
90 format = " %h-%d É %H:%M ¸ ÈÈÈ È "
91 }