81 lines
1.4 KiB
Plaintext
81 lines
1.4 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
|
||
|
interval = 5
|
||
|
color_good = "#2AA198"
|
||
|
color_bad = "#586E75"
|
||
|
color_degraded = "#DC322F"
|
||
|
separator = ""
|
||
|
}
|
||
|
|
||
|
order += "ipv6"
|
||
|
order += "ethernet _first_"
|
||
|
order += "disk /"
|
||
|
order += "disk /home"
|
||
|
order += "wireless _first_"
|
||
|
order += "load"
|
||
|
order += "memory"
|
||
|
order += "volume master"
|
||
|
order += "battery all"
|
||
|
order += "tztime local"
|
||
|
|
||
|
wireless _first_ {
|
||
|
#format_up = "W: (%quality at %essid) %ip"
|
||
|
format_up = " %essid %ip %bitrate "
|
||
|
format_down = " "
|
||
|
}
|
||
|
|
||
|
ethernet _first_ {
|
||
|
# if you use %speed, i3status requires root privileges
|
||
|
format_up = "E: %ip (%speed)"
|
||
|
format_down = "E: "
|
||
|
}
|
||
|
|
||
|
battery all {
|
||
|
format = " %status %percentage %remaining "
|
||
|
status_bat = ""
|
||
|
status_chr = ""
|
||
|
status_full = ""
|
||
|
status_unk = "?"
|
||
|
threshold_type = time
|
||
|
}
|
||
|
|
||
|
tztime local {
|
||
|
format = "%d.%m.%Y %H:%M"
|
||
|
}
|
||
|
|
||
|
load {
|
||
|
format = " %1min"
|
||
|
}
|
||
|
|
||
|
disk "/" {
|
||
|
format = " %avail"
|
||
|
}
|
||
|
|
||
|
disk "/home" {
|
||
|
format = " %avail "
|
||
|
}
|
||
|
|
||
|
ipv6 {
|
||
|
format_up = "IPv6 up"
|
||
|
#format_down = "no IPv6"
|
||
|
}
|
||
|
|
||
|
memory {
|
||
|
format = " %used "
|
||
|
}
|
||
|
|
||
|
volume master {
|
||
|
device = "pulse"
|
||
|
format = " %volume"
|
||
|
format_muted = ""
|
||
|
mixer = "Master"
|
||
|
}
|