config_files/py3status/config

93 lines
1.7 KiB
Text
Raw Normal View History

2019-03-28 15:15:36 +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 {
colors = true
2019-08-30 16:41:53 +02:00
# These will be used if not supplied by a module
color = '#f2f0ec'
color_good = '#00e6ac'
color_bad = '#f2777a'
color_degraded = '#ffcc66'
2019-03-28 15:15:36 +01:00
interval = 5
}
order += "window_title_async"
#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"
2019-08-30 16:41:53 +02:00
window_title_async {
2019-03-28 15:15:36 +01:00
format = "{title}"
2019-08-30 16:41:53 +02:00
min_length = 120
max_width = 120
position = "center"
2019-03-28 15:15:36 +01:00
}
wireless _first_ {
format_up = "W: (%quality at %essid, %bitrate) %ip"
format_down = ""
}
wifi {
2019-05-09 16:15:45 +02:00
format = " {bitrate}{bitrate_unit} {icon} {ssid} {ip}|"
2019-03-28 15:15:36 +01:00
}
ethernet _first_ {
# if you use %speed, i3status requires root privileges
format_up = "%ip (%speed)"
2019-03-28 15:15:36 +01:00
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 {
2019-08-30 16:41:53 +02:00
format = " %1min %5min %15min"
2019-03-28 15:15:36 +01:00
}
2019-07-10 14:33:51 +02:00
tztime local {
2019-08-30 16:41:53 +02:00
format = "%a %d %b %H:%M:%S"
2019-07-10 14:33:51 +02:00
}
2019-03-28 15:15:36 +01:00
volume master {
format = "♪: %volume"
2019-08-30 16:41:53 +02:00
format_muted = ""
2019-03-28 15:15:36 +01:00
}
path_exists VPN {
path = "/proc/sys/net/ipv4/conf/tun_turris"
format = "%title: %status"
}