linuxscripts/user-config/i3status/config
2019-07-01 19:06:21 -05:00

81 lines
1.8 KiB
Text

# 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
#color_good = "#b8bb26"
#color_bad = "#fb4934"
#color_degraded = "#fabd2f"
separator = ""
output_format = "i3bar"
interval = 2
}
order += "path_exists VPN"
order += "disk /"
order += "disk /home"
#order += "disk /mnt/data"
order += "load"
order += "memory"
order += "cpu_temperature 0"
order += "battery all"
order += "tztime local"
order += "volume master"
volume master {
format = "🔊 %volume"
format_muted = "🔇 %volume"
}
disk "/" {
format = "🌱 %avail"
low_threshold = 25
threshold_type = percentage_avail
}
disk "/home" {
format = "🏡 %avail"
low_threshold = 25
threshold_type = percentage_avail
}
path_exists VPN {
# path exists when a VPN tunnel is active
format = "🖧 OK"
format_down = "🖧 X"
path = "/proc/sys/net/ipv4/conf/tun0"
}
battery all {
format = "%status %percentage"
integer_battery_capacity = true
status_chr = "⚡"
status_bat = "🔋"
status_full = "☻"
last_full_capacity = true
}
load {
format = "👣 %1min %5min %15min"
}
memory {
format = "⚖️ %used | %available"
threshold_degraded = "1G"
format_degraded = "⛔ < %available"
}
cpu_temperature 0 {
format = "🌡️ %degrees °C"
format_above_threshold = "🔥 %degrees °C"
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon[1-3]/temp1_input"
}
tztime local {
format = "🌎 %a %d %H:%M"
}