73 lines
1.3 KiB
Plaintext
Executable File
73 lines
1.3 KiB
Plaintext
Executable File
# 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 = 15
|
|
}
|
|
|
|
order += "run_watch Docker"
|
|
order += "run_watch DHCP"
|
|
order += "path_exists VPN"
|
|
order += "wireless wlp3s0"
|
|
order += "ethernet eth0"
|
|
order += "volume master"
|
|
order += "battery 0"
|
|
order += "load"
|
|
order += "tztime local"
|
|
|
|
battery 0 {
|
|
format = "%status %percentage %remaining"
|
|
format_down = "∞ PLUG"
|
|
status_chr = "⚇ CHR"
|
|
status_bat = "⚡ BAT"
|
|
status_full = "☻ FULL"
|
|
path = "/sys/class/power_supply/BAT%d/uevent"
|
|
low_threshold = 10
|
|
}
|
|
|
|
|
|
wireless wlp3s0 {
|
|
format_up = " %essid (%quality)"
|
|
format_down = " -"
|
|
}
|
|
|
|
ethernet eth0 {
|
|
# if you use %speed, i3status requires root privileges
|
|
format_up = "E: up"
|
|
format_down = "E: down"
|
|
}
|
|
|
|
run_watch Docker {
|
|
pidfile = "/run/docker.pid"
|
|
}
|
|
|
|
run_watch DHCP {
|
|
pidfile = "/var/run/dhclient*.pid"
|
|
}
|
|
|
|
path_exists VPN {
|
|
path = "/proc/sys/net/ipv4/conf/tun0"
|
|
}
|
|
|
|
tztime local {
|
|
format = "%m-%d %H:%M:%S"
|
|
}
|
|
|
|
load {
|
|
format = "%1min"
|
|
}
|
|
|
|
volume master {
|
|
format = " %volume"
|
|
format_muted = " %volume"
|
|
device = "default"
|
|
mixer = "Master"
|
|
mixer_idx = 0
|
|
}
|