dotfiles/.i3/status_small.conf

76 lines
1.4 KiB
Plaintext
Raw Permalink Normal View History

# 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 {
2018-01-06 15:34:00 +01:00
colors = true
interval = 15
color_good = "#56F5B2"
color_degraded = "#CEB746"
color_bad = "#EE6B6F"
color_separator = "#334E8F"
}
order += "run_watch Docker"
order += "run_watch DHCP"
order += "path_exists VPN"
order += "wireless wlp3s0"
2020-11-07 19:05:22 +01:00
# order += "ethernet eth0"
2022-02-05 13:38:41 +01:00
order += "ethernet enp31s0"
order += "volume master"
order += "battery 0"
order += "load"
order += "tztime local"
battery 0 {
2018-01-06 15:34:00 +01:00
format = "%status %percentage %remaining"
format_down = "∞ PLUG"
status_chr = "⚇ CHR"
status_bat = "⚡ BAT"
status_full = "☻ FULL"
path = "/sys/class/power_supply/BAT%d/uevent"
low_threshold = 10
}
2020-11-07 19:05:22 +01:00
# ethernet eth0 {
2022-02-05 13:38:41 +01:00
ethernet enp31s0 {
2018-01-06 15:34:00 +01:00
# if you use %speed, i3status requires root privileges
format_up = "E: up"
format_down = "E: down"
}
2018-01-06 15:34:00 +01:00
run_watch Docker {
2018-01-06 15:34:00 +01:00
pidfile = "/run/docker.pid"
}
run_watch DHCP {
2018-01-06 15:34:00 +01:00
pidfile = "/var/run/dhclient*.pid"
}
path_exists VPN {
2018-01-06 15:34:00 +01:00
path = "/proc/sys/net/ipv4/conf/tun0"
}
tztime local {
2018-01-06 15:34:00 +01:00
format = "%m-%d %H:%M:%S"
}
load {
2018-01-06 15:34:00 +01:00
format = "%1min"
}
volume master {
2018-01-06 15:34:00 +01:00
format = " %volume"
format_muted = " %volume"
device = "default"
mixer = "Master"
mixer_idx = 0
}