2016-01-21 22:39:41 +00:00
|
|
|
# i3status configuration file.
|
|
|
|
# see "man i3status" for documentation.
|
|
|
|
|
|
|
|
# It is important that this file is edited as UTF-8.
|
|
|
|
# The following line should contain a sharp s:
|
|
|
|
# ß
|
|
|
|
# If the above line is not correctly displayed, fix your editor first!
|
|
|
|
|
|
|
|
general {
|
|
|
|
colors = true
|
|
|
|
interval = 5
|
|
|
|
}
|
|
|
|
|
2016-03-23 23:05:05 +00:00
|
|
|
order += "ipv6"
|
|
|
|
order += "volume master"
|
2016-01-21 22:39:41 +00:00
|
|
|
order += "disk /"
|
|
|
|
order += "disk /home"
|
|
|
|
order += "run_watch VPN"
|
|
|
|
order += "wireless _first_"
|
|
|
|
order += "ethernet _first_"
|
|
|
|
order += "run_watch DHCP"
|
2016-02-09 20:00:31 +00:00
|
|
|
order += "battery 1"
|
2016-01-21 22:39:41 +00:00
|
|
|
order += "load"
|
2016-03-23 23:05:05 +00:00
|
|
|
order += "cpu_temperature 0"
|
2016-01-21 22:39:41 +00:00
|
|
|
order += "tztime local"
|
|
|
|
|
|
|
|
wireless _first_ {
|
2016-02-10 15:16:18 +00:00
|
|
|
format_up = "W: (%essid: %quality) %ip"
|
2016-01-21 22:39:41 +00:00
|
|
|
format_down = "W: down"
|
|
|
|
}
|
|
|
|
|
|
|
|
ethernet _first_ {
|
|
|
|
# if you use %speed, i3status requires root privileges
|
|
|
|
format_up = "E: %ip (%speed)"
|
|
|
|
format_down = "E: down"
|
|
|
|
}
|
|
|
|
|
2016-02-09 20:00:31 +00:00
|
|
|
battery 1 {
|
2016-03-23 23:05:05 +00:00
|
|
|
format = "%status %percentage %remaining %consumption"
|
|
|
|
status_chr = "⚇"
|
|
|
|
status_bat = "⚡"
|
|
|
|
status_full = "☻"
|
|
|
|
last_full_capacity = true
|
|
|
|
low_threshold = "20"
|
|
|
|
threshold_type = "percentage"
|
|
|
|
hide_seconds = true
|
|
|
|
integer_battery_capacity = true
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu_temperature 0 {
|
|
|
|
format = "%degreesC"
|
2016-01-21 22:39:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
run_watch DHCP {
|
|
|
|
pidfile = "/var/run/dhclient*.pid"
|
|
|
|
}
|
|
|
|
|
|
|
|
run_watch VPN {
|
|
|
|
pidfile = "/var/run/vpnc/pid"
|
|
|
|
}
|
|
|
|
|
|
|
|
tztime local {
|
|
|
|
format = "%Y-%m-%d %H:%M"
|
|
|
|
}
|
|
|
|
|
|
|
|
load {
|
|
|
|
format = "%1min"
|
|
|
|
}
|
|
|
|
|
|
|
|
disk "/home" {
|
2016-02-09 20:00:31 +00:00
|
|
|
format = "/home: %percentage_used"
|
2016-01-21 22:39:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
disk "/" {
|
2016-02-09 20:00:31 +00:00
|
|
|
format = "/: %percentage_used"
|
2016-01-21 22:39:41 +00:00
|
|
|
}
|
2016-03-23 23:05:05 +00:00
|
|
|
|
|
|
|
volume master {
|
2016-03-24 14:19:46 +00:00
|
|
|
format = "🔈%volume"
|
2016-03-23 23:05:05 +00:00
|
|
|
format_muted = "🔇"
|
2016-04-18 16:41:08 +00:00
|
|
|
device = "pulse"
|
2016-03-23 23:05:05 +00:00
|
|
|
}
|