config/i3status.conf

61 lines
1.1 KiB
Plaintext
Raw Normal View History

2019-05-23 21:01:15 +00: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
}
order += "wireless wlo1"
2019-05-24 23:02:40 +00:00
order += "battery 0"
order += "volume master"
2019-05-23 21:01:15 +00:00
order += "cpu_usage"
order += "cpu_temperature cpu"
order += "load"
2019-05-23 21:01:15 +00:00
order += "tztime local"
wireless wlo1 {
format_up = "Wi-Fi: %essid (%quality)"
2019-05-24 23:02:40 +00:00
format_down = ""
}
2019-05-23 21:01:15 +00:00
tztime local {
format = "%Y-%m-%d %H:%M:%S"
}
cpu_usage {
format = "CPU: %usage"
2019-05-24 11:48:04 +00:00
separator = false
}
cpu_temperature cpu {
format = "%degrees°C"
2019-05-24 23:02:40 +00:00
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon*/temp1_input"
max_threshold = 95
2019-05-24 11:48:04 +00:00
separator = false
}
load {
format = "↑ %1min"
2019-05-23 21:01:15 +00:00
}
battery 0 {
format = "%status %percentage"
format_down = ""
status_chr = "⚡"
status_bat = "🔋"
status_unk = "?"
status_full = "☻ "
low_threshold = 20
}
volume master {
format = "🔈: %volume"
format_muted = "🔇"
2019-05-23 21:01:15 +00:00
}