2017-06-20 17:26:09 +02: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 {
|
2017-06-20 19:01:39 +02:00
|
|
|
output_format = i3bar
|
2017-06-20 17:26:09 +02:00
|
|
|
colors = true
|
|
|
|
interval = 5
|
2017-06-20 19:01:39 +02:00
|
|
|
separator = "~"
|
2017-06-20 17:26:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
order += "disk /"
|
|
|
|
order += "disk /home"
|
|
|
|
order += "run_watch DHCP"
|
|
|
|
order += "path_exists VPN"
|
2017-06-20 19:01:39 +02:00
|
|
|
order += "wireless wlp2s0"
|
2017-06-20 17:26:09 +02:00
|
|
|
order += "ethernet eth0"
|
2017-06-20 19:01:39 +02:00
|
|
|
order += "battery 0"
|
2017-06-20 17:26:09 +02:00
|
|
|
#order += "cpu_temperature 0"
|
|
|
|
#order += "cpu_temperature 1"
|
2017-06-20 19:01:39 +02:00
|
|
|
#order += "load"
|
2017-06-20 17:26:09 +02:00
|
|
|
order += "cpu_usage"
|
|
|
|
order += "volume master"
|
|
|
|
order += "tztime local"
|
|
|
|
|
2017-06-20 19:01:39 +02:00
|
|
|
wireless wlp2s0 {
|
|
|
|
format_up = "W: %ip (%quality at %essid, %bitrate)"
|
2017-06-20 17:26:09 +02:00
|
|
|
format_down = "W: down"
|
|
|
|
}
|
|
|
|
|
|
|
|
ethernet eth0 {
|
|
|
|
# if you use %speed, i3status requires the cap_net_admin capability
|
|
|
|
format_up = "E: %ip (%speed)"
|
|
|
|
format_down = "E: down"
|
|
|
|
}
|
|
|
|
|
|
|
|
run_watch DHCP {
|
|
|
|
pidfile = "/var/run/dhclient*.pid"
|
|
|
|
}
|
|
|
|
|
|
|
|
path_exists VPN {
|
|
|
|
# path exists when a VPN tunnel launched by nmcli/nm-applet is active
|
|
|
|
path = "/proc/sys/net/ipv4/conf/tun0"
|
|
|
|
}
|
|
|
|
|
|
|
|
tztime local {
|
|
|
|
format = "%Y-%m-%d %H:%M:%S"
|
|
|
|
}
|
|
|
|
|
|
|
|
load {
|
2017-06-20 19:01:39 +02:00
|
|
|
format = "Load: %1min"
|
2017-06-20 17:26:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
disk "/" {
|
|
|
|
format = "Root: %percentage_free"
|
|
|
|
}
|
|
|
|
|
|
|
|
disk "/home" {
|
|
|
|
format = "Home: %percentage_free"
|
|
|
|
}
|
|
|
|
|
|
|
|
volume master {
|
|
|
|
format = "♪: %volume"
|
2017-06-20 19:01:39 +02:00
|
|
|
format_muted = "🎻: %volume"
|
2017-06-20 17:26:09 +02:00
|
|
|
device = "default"
|
|
|
|
mixer = "Master"
|
|
|
|
mixer_idx = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu_usage {
|
|
|
|
format = "CPU: %usage"
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu_temperature 0 {
|
|
|
|
format = "Core 0: %degrees °C"
|
|
|
|
path = "/sys/bus/acpi/devices/LNXTHERM:00/thermal_zone/temp"
|
|
|
|
}
|
|
|
|
cpu_temperature 1 {
|
|
|
|
format = "Core 1: %degrees °C"
|
|
|
|
path = "/sys/bus/acpi/devices/LNXTHERM:01/thermal_zone/temp"
|
|
|
|
|
|
|
|
}
|
2017-06-20 19:01:39 +02:00
|
|
|
|
|
|
|
battery 0 {
|
|
|
|
format = "%status %percentage %remaining"
|
|
|
|
format_down = "No battery"
|
|
|
|
status_chr = "⚡ CHR:"
|
|
|
|
status_bat = "🔋 BAT:"
|
|
|
|
status_unk = "? UNK:"
|
|
|
|
status_full = "☻ FULL:"
|
|
|
|
path = "/sys/class/power_supply/BAT%d/uevent"
|
|
|
|
low_threshold = 10
|
|
|
|
}
|
|
|
|
|
|
|
|
|