116 lines
2.0 KiB
Plaintext
Executable File
116 lines
2.0 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 = 5
|
|
|
|
color_good = "#26F582"
|
|
color_degraded = "#f4d430"
|
|
color_bad = "#EE6B6F"
|
|
}
|
|
|
|
order += "disk /"
|
|
order += "disk /var"
|
|
order += "disk /home"
|
|
order += "disk /media/driveBay"
|
|
#order += "run_watch Docker"
|
|
#order += "run_watch DHCP"
|
|
order += "path_exists VPN"
|
|
#order += "ipv6"
|
|
order += "wireless wlp3s0"
|
|
order += "ethernet enp0s25"
|
|
order += "volume master"
|
|
order += "battery 0"
|
|
#order += "cpu_temperature 0"
|
|
order += "load"
|
|
#order += "tztime local"
|
|
order += "tztime DE"
|
|
#order += "tztime KG"
|
|
|
|
# look for icons: https://fontawesome.com/icons?d=gallery
|
|
wireless wlp3s0 {
|
|
format_up = " %essid (%quality) %ip"
|
|
format_down = " -"
|
|
}
|
|
|
|
ethernet enp0s25 {
|
|
# if you use %speed, i3status requires root privileges
|
|
format_up = "E: %ip (%speed)"
|
|
format_down = "E: -"
|
|
}
|
|
|
|
battery 0 {
|
|
format = "%status %percentage %remaining"
|
|
format_down = ""
|
|
status_chr = "⚇ CHR"
|
|
status_bat = " "
|
|
status_full = " "
|
|
path = "/sys/class/power_supply/BAT%d/uevent"
|
|
low_threshold = 10
|
|
}
|
|
|
|
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 = "%Y-%m-%d (%V) %a %H:%M:%S"
|
|
}
|
|
|
|
tztime DE {
|
|
format = "DE %Y-%m-%d (%V) %a %H:%M:%S"
|
|
timezone = "Europe/Berlin"
|
|
}
|
|
|
|
tztime KG {
|
|
format = "KG %a %H:%M"
|
|
timezone = "Asia/Bishkek"
|
|
}
|
|
|
|
load {
|
|
format = "%1min"
|
|
}
|
|
|
|
cpu_temperature 0 {
|
|
format = "T: %degrees °C"
|
|
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp1_input"
|
|
}
|
|
|
|
disk "/" {
|
|
format = "/ %avail"
|
|
}
|
|
|
|
disk "/var" {
|
|
format = "/var %avail"
|
|
}
|
|
|
|
disk "/home" {
|
|
format = "/ %avail"
|
|
}
|
|
|
|
disk "/media/driveBay" {
|
|
format = "/ %avail"
|
|
}
|
|
|
|
volume master {
|
|
format = " %volume"
|
|
format_muted = " %volume"
|
|
device = "default"
|
|
mixer = "Master"
|
|
mixer_idx = 0
|
|
}
|