Files
dotfiles/.config/i3status/config

80 lines
1.8 KiB
Plaintext
Raw Normal View History

2019-02-06 17:12:59 -08: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 = 7
color_good = "#7cafc2"
color_degraded = "#dc9656"
color_bad = "#ab4642"
2019-02-06 17:12:59 -08:00
}
#color_good = "#a1b56c" #light green
#color_degraded = "#f7ca88" #light yellow
#color_degraded = "#dc9656" #light orange
#color_bad = "#ab4642" #light red
#color_good = "#86c1b9" #light cyan
#color_good = "#7cafc2" #light blue
#color_good = "#4A6EF" #blue
#color_degraded = "#85678F"
#color_bad = "#FF1D1D" #red
order += "disk /"
order += "ipv6"
2019-02-06 17:12:59 -08:00
order += "wireless _first_"
order += "ethernet _first_"
#order += "run_watch DHCP"
order += "path_exists VPN"
order += "battery all"
order += "cpu_temperature 0"
2019-02-06 17:12:59 -08:00
order += "load"
order += "tztime local"
wireless _first_ {
format_up = "W: (%quality at %essid, %frequency) %ip"
2019-02-06 17:12:59 -08:00
format_down = "W: down"
}
ethernet _first_ {
# if you use %speed, i3status requires root privileges
format_up = "E: %ip (%speed)"
format_down = "E: down"
}
battery all {
format = "%status %percentage %remaining"
}
tztime local {
format = "%Y-%m-%d %H:%M:%S"
}
load {
format = "%1min"
}
disk "/" {
format = "%avail"
}
path_exists VPN {
# path exists when a VPN tunnel launched by nmcli/nm-applet is active
path = "/proc/sys/net/ipv4/conf/tun0"
}
run_watch DHCP {
pidfile = "/var/run/dhclient*.pid"
}
#update the following device path for temp1_input as needed
cpu_temperature 0 {
format = "%degrees °C"
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon3/temp1_input"
}