dotfiles/_i3__oda.armorique.lan/i3status.conf

74 lines
1.2 KiB
Plaintext
Raw Normal View History

2017-11-12 10:17:54 +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 {
2017-11-14 19:09:35 +00:00
output_format = "i3bar"
colors = true
interval = 5
2017-11-12 10:17:54 +00:00
}
2017-11-14 19:09:35 +00:00
order += "battery all"
2017-11-24 14:45:00 +00:00
order += "online_status"
order += "external_script xbacklight_status"
#order += "ipv6"
2017-11-12 10:17:54 +00:00
order += "wireless _first_"
order += "ethernet _first_"
2017-11-24 14:45:00 +00:00
order += "disk /"
order += "disk /home"
2017-11-14 19:09:35 +00:00
order += "load"
2017-11-12 10:17:54 +00:00
order += "cpu_temperature acpitz0"
order += "volume master"
order += "tztime local"
cpu_temperature acpitz0 {
2017-11-21 17:51:47 +00:00
format = " %degrees ⁰C"
2017-11-12 10:17:54 +00:00
}
2017-11-24 14:45:00 +00:00
online_status {
icon_on = ""
icon_off = ""
}
2017-11-12 10:17:54 +00:00
wireless _first_ {
2017-11-21 17:51:47 +00:00
format_up = " (%essid) %ip"
format_down = " down"
2017-11-12 10:17:54 +00:00
}
ethernet _first_ {
2017-11-14 19:09:35 +00:00
format_up = " %ip"
format_down = " down"
2017-11-12 10:17:54 +00:00
}
battery all {
2017-11-14 19:09:35 +00:00
format = " %status %percentage %remaining"
2017-11-12 10:17:54 +00:00
}
tztime local {
format = "%A %e %B %H:%M"
}
load {
2017-11-14 19:09:35 +00:00
format = " %5min"
2017-11-12 10:17:54 +00:00
}
disk "/" {
2017-11-14 19:09:35 +00:00
format = " / %avail"
}
disk "/home" {
format = " /home %avail"
2017-11-12 10:17:54 +00:00
}
volume master {
2017-11-14 19:09:35 +00:00
format = " %volume"
2017-11-12 10:17:54 +00:00
}
2017-11-24 14:45:00 +00:00
external_script "xbacklight_status" {
script_path = "/home/meutel/.i3/xbacklight_status.sh"
}