Files
lnx-arch/dots/i3status/config

125 lines
2.9 KiB
Plaintext
Raw Normal View History

2024-05-20 14:21:32 -05:00
# i3status configuration file.
# see "man i3status" for documentation.
# or https://i3wm.org/i3status/manpage.html
# 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
2024-05-23 06:36:43 -05:00
color_good = "#fd68d5"
color_bad = "#2AFF00"
color_degraded = "#FE1805"
2024-05-23 06:48:19 -05:00
markup = "pango"
2024-05-20 14:21:32 -05:00
}
order += "cpu_usage"
order += "load"
order += "memory"
order += "disk /"
order += "disk /media/drive2"
order += "disk /media/drive3"
order += "wireless _first_"
order += "ethernet _first_"
order += "path_exists vpn"
order += "battery all"
2024-05-20 18:33:13 -05:00
order += "time"
2024-05-20 14:21:32 -05:00
order += "volume master"
2024-05-23 06:26:29 -05:00
order += "path_exists screensaver"
2024-05-20 14:21:32 -05:00
cpu_usage {
format = " cpu usg %usage "
max_threshold = 75
}
load {
format = " load %1min "
2024-05-20 14:28:13 -05:00
max_threshold = "5.0"
2024-05-20 14:21:32 -05:00
}
memory {
2025-05-07 05:29:35 -05:00
format = " ☰ free: %available (%percentage_avail) "
2024-05-23 06:49:46 -05:00
threshold_degraded = "5G"
2025-05-06 13:42:20 -05:00
format_degraded = "WARNING: ONLY %available FREE MEMORY"
2024-05-20 14:21:32 -05:00
}
disk "/" {
2025-05-06 13:42:20 -05:00
format = " / ⛁ free: %avail (%percentage_available) "
2024-05-20 14:21:32 -05:00
low_threshold = 10
threshold_type = "percentage_avail"
2025-05-07 05:29:35 -05:00
format_below_threshold = "WARNING: / ⛁ %avail (%percentage_avail) "
2024-05-20 14:21:32 -05:00
}
2025-05-06 13:42:20 -05:00
disk "/mnt/nas" {
format = " nas ⛁ free: %avail (%percentage_avail) "
2024-05-20 14:21:32 -05:00
low_threshold = 5
threshold_type = "percentage_avail"
# format_below_threshold = "WARNING: ⛁ drive2 %avail (%percentage_avail) "
}
2025-05-06 13:42:20 -05:00
#disk "/media/drive2" {
# format = " drive2 ⛁ %avail (%percentage_avail) "
# low_threshold = 5
# threshold_type = "percentage_avail"
## format_below_threshold = "WARNING: ⛁ drive2 %avail (%percentage_avail) "
#}
#
#disk "/media/drive3" {
# format = " drive3 ⛁ %avail (%percentage_avail) "
# low_threshold = 5
# threshold_type = "percentage_avail"
#}
2024-05-20 14:21:32 -05:00
path_exists "vpn" {
#format = " %title: %status "
format = " %title "
2024-05-20 21:08:58 -05:00
#path = "/proc/sys/net/ipv4/conf/tun0"
path = "/proc/sys/net/ipv4/conf/proton0"
2025-05-06 13:42:20 -05:00
format_down = " vpn↓ "
2024-05-20 14:21:32 -05:00
}
wireless _first_ {
2024-05-26 11:33:10 -05:00
format_up = " W: (%quality at %essid @ %bitrate) %ip "
2025-05-06 13:42:20 -05:00
format_down = " 📻↓ "
2024-05-20 14:21:32 -05:00
}
ethernet _first_ {
format_up = " %ip %speed "
2025-05-06 13:42:20 -05:00
format_down = " ⟴↓ "
2024-05-20 14:21:32 -05:00
}
battery all {
2025-05-06 13:42:20 -05:00
format = " ⏻ %status %percentage %remaining %emptytime "
2024-05-23 06:49:46 -05:00
format_down = "No battery"
last_full_capacity = true
integer_battery_capacity = true
status_chr = "⚡"
status_bat = "☉"
status_unk = "⌄"
status_full = "☀"
low_threshold = 15
threshold_type = time
2024-05-20 14:21:32 -05:00
}
2024-05-20 18:33:13 -05:00
time {
2025-05-06 13:42:20 -05:00
format = " %Y.%m.%d @ %H:%M "
2024-05-20 14:21:32 -05:00
}
volume master {
2024-05-23 06:49:46 -05:00
format = " ♪: %volume "
format_muted = "♪: muted (%volume)"
device = "default"
mixer = "Master"
mixer_idx = 0
2024-05-20 14:21:32 -05:00
}
2024-05-23 06:26:29 -05:00
path_exists "screensaver" {
2024-05-23 06:50:50 -05:00
format = " <span foreground='#2aff00'>screensaver disabled</span> "
2024-05-23 06:29:58 -05:00
path = "/tmp/screensaver_off.tmp"
2025-05-06 13:42:20 -05:00
format_down = " <span foreground='#fd68d5'>⎚↓</span> "
2024-05-23 06:26:29 -05:00
}