87 lines
1.6 KiB
Plaintext
87 lines
1.6 KiB
Plaintext
# 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 = "#B7BBB7"
|
|
color_degraded = "#E2995C"
|
|
color_bad = "#B04C50"
|
|
|
|
interval = 5
|
|
}
|
|
|
|
order += "tztime local"
|
|
order += "wireless _first_"
|
|
order += "ethernet _first_"
|
|
order += "cpu_usage"
|
|
order += "memory"
|
|
order += "battery all"
|
|
order += "volume master"
|
|
order += "path_exists vpn"
|
|
order += "path_exists empty"
|
|
|
|
tztime local {
|
|
format = " %Y-%m-%d %H:%M"
|
|
}
|
|
|
|
wireless _first_ {
|
|
format_up = "直 <%essid> %ip"
|
|
format_down = "睊"
|
|
color_bad = "#4B5056"
|
|
}
|
|
|
|
ethernet _first_ {
|
|
# if you use %speed, i3status requires root privileges
|
|
format_up = " %ip"
|
|
format_down = ""
|
|
color_bad = "#4B5056"
|
|
}
|
|
|
|
cpu_usage {
|
|
format = " %usage"
|
|
degraded_threshold = 90
|
|
max_threshold = 98
|
|
}
|
|
|
|
memory {
|
|
format = " %percentage_used"
|
|
threshold_degraded = "25%"
|
|
}
|
|
|
|
battery all {
|
|
format = "%status %percentage"
|
|
format_down = ""
|
|
status_chr = ""
|
|
status_bat = ""
|
|
status_unk = ""
|
|
status_full = "ﮣ"
|
|
integer_battery_capacity = true
|
|
last_full_capacity = true
|
|
hide_seconds = true
|
|
|
|
threshold_type = "percentage"
|
|
low_threshold = 15
|
|
}
|
|
|
|
volume master {
|
|
device = "pulse"
|
|
format = "墳 %volume"
|
|
format_muted = "婢"
|
|
}
|
|
|
|
path_exists vpn {
|
|
format = ""
|
|
format_down = ""
|
|
path = "/proc/sys/net/ipv4/conf/tun0"
|
|
}
|
|
|
|
path_exists empty {
|
|
format = ""
|
|
path = "/"
|
|
}
|