dotfiles/files/.i3status.conf

95 lines
1.9 KiB
Plaintext
Raw Permalink Normal View History

2016-10-12 16:00:00 +02: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
interval = 5
color_good = "#36E592"
color_degraded = "#CE9726"
color_bad = "#CE4B4F"
color_separator = "#B3BEFF"
}
order += "ipv6"
#order += "run_watch DHCP"
order += "path_exists VPN"
order += "wireless wlo1"
order += "ethernet eno1"
#order += "volume master"
2016-12-14 18:11:24 +01:00
order += "microphone"
2016-10-12 16:00:00 +02:00
order += "battery 1"
2016-12-14 18:11:24 +01:00
order += "arch_updates"
2016-10-12 16:00:00 +02:00
order += "load"
order += "cpu_temperature 0"
order += "tztime local"
2016-12-14 18:11:24 +01:00
arch_updates {
2020-10-09 15:13:49 +02:00
format = " {pacman}"
2016-12-14 18:11:24 +01:00
}
microphone {
color_unmute = "#E73235"
color_mute = "#FFFFFF"
}
2016-10-12 16:00:00 +02:00
volume master {
format = " %volume"
format_muted = " %volume"
device = "default"
mixer = "Master"
mixer_idx = 0
}
wireless wlo1 {
format_up = " (%essid) %ip"
format_down = ""
on_click 3 = "exec /home/tobast/.config/i3/bin/restart-nmapplet"
2016-10-12 16:00:00 +02:00
}
ethernet eno1 {
# if you use %speed, i3status requires root privileges
2020-10-09 15:13:49 +02:00
format_up = " %ip (%speed)"
format_down = ""
2016-10-12 16:00:00 +02:00
}
path_exists VPN {
path = "/proc/sys/net/ipv4/conf/tun0"
}
battery 1 {
format = "%status %percentage %remaining (%consumption)"
status_chr = ""
2020-10-09 15:13:49 +02:00
status_bat = ""
2016-10-12 16:00:00 +02:00
status_full= ""
low_threshold = 20
threshold_type = "percentage"
}
run_watch DHCP {
pidfile = "/var/run/dhclient*.pid"
}
run_watch VPN {
pidfile = "/var/run/openvpn@tobast.fr.pid"
}
tztime local {
format = "%d-%m-%Y %H:%M"
2016-12-14 18:11:24 +01:00
on_click 1 = "exec /home/tobast/.config/i3/bin/calendar-widget $X_POS $Y_POS &"
2016-10-12 16:00:00 +02:00
}
load {
2020-10-09 15:13:49 +02:00
format = " %1min"
2016-10-12 16:00:00 +02:00
}
cpu_temperature 0 {
format = "%degrees°C"
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp1_input"
}