Dotfiles_Generator/templates/i3/i3status

69 lines
1.3 KiB
Plaintext

{# symlink{~/.config/i3status/config} #}
# 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 = "{{nord14}}"
color_degraded = "{{nord13}}"
color_bad = "{{nord11}}"
interval = 5
}
# order += "ipv6"
{% if device == "laptop" %}
order += "wireless _first_"
{% endif %}
order += "ethernet _first_"
{% if device == "laptop" %}
order += "battery all"
{% endif %}
order += "disk /"
order += "load"
order += "memory"
order += "tztime local"
order += "tztime utc"
wireless _first_ {
format_up = "W: (%quality at %essid) %ip"
format_down = "W: down"
}
ethernet _first_ {
format_up = "E: %ip (%speed)"
format_down = "E: down"
}
battery all {
format = "%status %percentage %remaining"
}
disk "/" {
format = "%avail"
}
load {
format = "%1min"
}
memory {
format = "%used | %available"
threshold_degraded = "1G"
format_degraded = "MEMORY < %available"
}
tztime local {
format = "%Y-%m-%d %H:%M:%S %Z"
}
tztime utc {
format = "%H:%M:%S %Z"
timezone = "Etc/UTC"
}