dotfiles/.config/i3status/config

77 lines
1.7 KiB
Text
Raw Normal View History

2021-05-14 21:16:34 +02: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 = 5
2021-05-30 22:10:33 +02:00
color_good = "#50fa7b"
color_bad = "#ff79c6"
color_degraded = "#ff5555"
2021-05-14 21:16:34 +02:00
}
2021-05-30 22:10:33 +02:00
# order += "ipv6"
order += "cpu_usage"
order += "disk /"
# order += "disk /home"
2021-05-14 21:16:34 +02:00
order += "wireless _first_"
order += "ethernet _first_"
order += "battery all"
2021-05-30 22:10:33 +02:00
# order += "load"
2021-05-14 21:16:34 +02:00
order += "memory"
order += "tztime local"
2021-05-30 22:10:33 +02:00
cpu_usage {
format = " cpu %usage "
2021-05-14 21:16:34 +02:00
}
2021-05-30 22:10:33 +02:00
load {
format = " load %1min "
# max_threshold = 0.3
2021-05-14 21:16:34 +02:00
}
2021-05-30 22:10:33 +02:00
disk "/" {
# format = " hdd %avail "
format = " ⛁ %avail "
2021-05-14 21:16:34 +02:00
}
2021-05-30 22:10:33 +02:00
ethernet _first_ {
# if you use %speed, i3status requires root privileges
format_up = " lan: %ip %speed "
format_down = " no lan "
2021-05-14 21:16:34 +02:00
}
2021-05-30 22:10:33 +02:00
battery all {
# format = "%status %percentage %remaining %emptytime"
format = " %status %percentage"
format_down = "No battery"
last_full_capacity = true
integer_battery_capacity = true
# status_chr = ""
status_chr = "⚡"
# status_bat = "bat"
# status_bat = "☉"
status_bat = ""
# status_unk = "?"
status_unk = ""
# status_full = ""
status_full = "☻"
low_threshold = 15
threshold_type = time
2021-05-14 21:16:34 +02:00
}
memory {
format = "%used | %available"
threshold_degraded = "1G"
format_degraded = "MEMORY < %available"
}
tztime local {
2021-05-30 22:10:33 +02:00
# format = "%Y-%m-%d %H:%M:%S"
format = " %d.%m. %H:%M "
2021-05-14 21:16:34 +02:00
}