79 lines
1.5 KiB
Plaintext
79 lines
1.5 KiB
Plaintext
# ~/.config/i3status/py3status.conf -- py3status config file
|
|
#
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
# Author: binaryDiv
|
|
# Host-specific config for: terezi
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
#
|
|
# (See "man i3status" for documentation.)
|
|
|
|
# ~~ General i3status settings
|
|
general {
|
|
colors = true
|
|
interval = 1
|
|
}
|
|
|
|
|
|
# ~~ Define order of status bar elements
|
|
order += "ethernet _first_"
|
|
order += "wireless _first_"
|
|
order += "battery all"
|
|
order += "cpu_temperature 0"
|
|
order += "load"
|
|
order += "tztime local"
|
|
order += "volume master"
|
|
|
|
|
|
# ~~ Ethernet status
|
|
ethernet _first_ {
|
|
format_up = "🌐 %ip (%speed)"
|
|
format_down = "🌐 No Ethernet"
|
|
color_bad = "#666666"
|
|
}
|
|
|
|
# ~~ Wireless status
|
|
wireless _first_ {
|
|
format_up = "📶 %ip (%essid ~%quality)"
|
|
format_down = "📶 down"
|
|
}
|
|
|
|
# ~~ Battery status
|
|
battery all {
|
|
format = "%status %percentage %remaining"
|
|
|
|
status_chr = "⚡"
|
|
status_bat = "🔋"
|
|
status_unk = "❓"
|
|
status_full = "🔌"
|
|
|
|
last_full_capacity = true
|
|
integer_battery_capacity = true
|
|
low_threshold = 30
|
|
}
|
|
|
|
# ~~ Date and time
|
|
tztime local {
|
|
format = "%Y-%m-%d %H:%M:%S"
|
|
}
|
|
|
|
# ~~ Volume control display
|
|
volume master {
|
|
format = "🔉 %volume"
|
|
format_muted = "🔇 %volume"
|
|
device = "pulse"
|
|
}
|
|
|
|
# ~~ CPU temperature
|
|
cpu_temperature 0 {
|
|
format = "%degrees °C"
|
|
format_above_threshold = "🔥 %degrees °C"
|
|
max_threshold = 70
|
|
#path = "/sys/devices/pci0000:00/0000:00:18.3/hwmon/hwmon1/temp1_input"
|
|
}
|
|
|
|
# ~~ CPU average load
|
|
load {
|
|
format = "%1min"
|
|
}
|
|
|