105 lines
2 KiB
Text
105 lines
2 KiB
Text
# 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
|
|
# These will be used if not supplied by a module
|
|
color = '#f2f0ec'
|
|
color_good = '#f2f0ec'
|
|
color_bad = '#f2777a'
|
|
color_degraded = '#ffcc66'
|
|
interval = 5
|
|
}
|
|
|
|
order += "window"
|
|
order += "mpris"
|
|
#order += "wireless _first_"
|
|
order += "wifi"
|
|
order += "ethernet _first_"
|
|
order += "path_exists VPN"
|
|
order += "net_rate"
|
|
order += "battery_level"
|
|
order += "load"
|
|
order += "volume master"
|
|
order += "tztime local"
|
|
|
|
window{
|
|
format = "{title}"
|
|
min_length = 120
|
|
max_width = 120
|
|
position = "center"
|
|
}
|
|
|
|
mpris {
|
|
#format = "[{nowplaying}] {previous} {toggle} {next}|[{artist} - ][{title}] {previous} {toggle} {next}"
|
|
format = "[{artist} - ][{title}] {previous} {toggle} {next}"
|
|
format_none = ""
|
|
icon_pause = ""
|
|
icon_play = ""
|
|
icon_stop = ""
|
|
icon_next = ""
|
|
icon_previous = ""
|
|
|
|
}
|
|
|
|
wireless _first_ {
|
|
format_up = "W: (%quality at %essid, %bitrate) %ip"
|
|
format_down = ""
|
|
}
|
|
|
|
wifi {
|
|
format = " {bitrate}{bitrate_unit} {icon} {ssid} {ip}|"
|
|
}
|
|
|
|
ethernet _first_ {
|
|
# if you use %speed, i3status requires root privileges
|
|
format_up = "%ip (%speed)"
|
|
format_down = ""
|
|
}
|
|
|
|
ipv6 {
|
|
|
|
format_down = ""
|
|
|
|
}
|
|
|
|
net_rate {
|
|
|
|
format = "{interface}{down}↓{up}↑"
|
|
si_units = True
|
|
|
|
}
|
|
|
|
battery_level {
|
|
format = "{icon} {percent}%"
|
|
charging_character = "⚡"
|
|
notification = true
|
|
blocks = ""
|
|
battery_id = "all"
|
|
}
|
|
|
|
load {
|
|
format = " %1min %5min %15min"
|
|
}
|
|
|
|
tztime local {
|
|
format = "%a %d %b %H:%M:%S"
|
|
}
|
|
|
|
volume master {
|
|
format = "♪: %volume"
|
|
format_muted = ""
|
|
|
|
}
|
|
|
|
path_exists VPN {
|
|
|
|
path = "/proc/sys/net/ipv4/conf/tun_turris"
|
|
format = "%title: %status"
|
|
|
|
}
|