2019-02-16 11:34:08 +01: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 {
|
2019-02-17 13:52:23 +01:00
|
|
|
output_format = "i3bar"
|
2019-02-16 11:34:08 +01:00
|
|
|
colors = true
|
|
|
|
interval = 1
|
|
|
|
}
|
|
|
|
|
2019-02-17 10:57:26 +01:00
|
|
|
order += "disk /"
|
|
|
|
order += "disk /home"
|
2019-02-16 11:34:08 +01:00
|
|
|
order += "ipv6"
|
|
|
|
order += "volume master"
|
|
|
|
order += "load"
|
|
|
|
order += "wireless _first_"
|
|
|
|
order += "ethernet _first_"
|
|
|
|
order += "battery all"
|
|
|
|
order += "tztime utc"
|
|
|
|
order += "tztime local"
|
|
|
|
|
|
|
|
# Load is first as the treshold may need the most modification here
|
|
|
|
load {
|
|
|
|
format = "%1min %5min %15min"
|
2019-02-17 10:57:26 +01:00
|
|
|
# The default is 5 while my laptop has only 4 and older PC 1.
|
2019-02-17 13:52:23 +01:00
|
|
|
# CHANGEME - apparently whether . or , works depends on locale -.-
|
|
|
|
#max_threshold = "3.7"
|
2019-02-17 10:57:26 +01:00
|
|
|
#max_threshold = "0,7"
|
2019-02-16 11:34:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
wireless _first_ {
|
|
|
|
#format_up = "W: (%quality at %essid) %frequency %ip"
|
|
|
|
format_up = "W:%quality %frequency"
|
2019-02-16 12:33:22 +01:00
|
|
|
format_down = "W:🢃"
|
2019-02-16 11:34:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ethernet _first_ {
|
|
|
|
# if you use %speed, i3status requires root privileges
|
|
|
|
#format_up = "E: %ip (%speed)"
|
2019-02-16 12:33:22 +01:00
|
|
|
format_up = "E:🢁"
|
|
|
|
format_down = "E:🢃"
|
2019-02-16 11:34:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
battery all {
|
|
|
|
format = "%status %percentage %remaining"
|
|
|
|
format_down = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
tztime utc {
|
|
|
|
timezone = "UTC"
|
|
|
|
format = "%Z: %Y-%m-%d %H.%M.%S"
|
|
|
|
}
|
|
|
|
|
|
|
|
tztime local {
|
|
|
|
format = "%Z: %Y-%m-%d %H.%M.%S"
|
|
|
|
#format = "%Z: %c"
|
|
|
|
}
|
|
|
|
|
|
|
|
volume master {
|
|
|
|
format = "♪: %volume"
|
|
|
|
format_muted = "♪: muted (%volume)"
|
|
|
|
device = "pulse"
|
|
|
|
}
|
|
|
|
|
|
|
|
ipv6 {
|
2019-02-16 12:33:22 +01:00
|
|
|
format_up = "IPv6: 🢁"
|
|
|
|
format_down = "IPv6: 🢃"
|
2019-02-16 11:34:08 +01:00
|
|
|
}
|
2019-02-17 10:57:26 +01:00
|
|
|
|
|
|
|
disk / {
|
|
|
|
format = "/: %free"
|
|
|
|
}
|
|
|
|
|
|
|
|
disk /home {
|
|
|
|
format = "/home: %free"
|
|
|
|
}
|