[roxy] Add local configs
This commit is contained in:
parent
ec74018011
commit
2ae15042e9
3 changed files with 499 additions and 0 deletions
95
_local/roxy/.config/i3status/config
Normal file
95
_local/roxy/.config/i3status/config
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
# ~/.config/i3status/config -- i3status config file
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
# Author: binaryDiv
|
||||
# Host-specific config for: roxy
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# (See "man i3status" for documentation.)
|
||||
|
||||
# ~~ General i3status settings
|
||||
general {
|
||||
colors = true
|
||||
interval = 1
|
||||
}
|
||||
|
||||
|
||||
# ~~ Define order of status bar elements
|
||||
order += "ethernet tun0"
|
||||
#order += "ethernet mobile0"
|
||||
order += "wireless _first_"
|
||||
order += "ethernet _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"
|
||||
}
|
||||
|
||||
## ~~ WWAN modem status
|
||||
#ethernet mobile0 {
|
||||
# format_up = "☎️ LTE: %ip"
|
||||
# format_down = "☎️ No WWAN"
|
||||
# color_good = "#FF00FF"
|
||||
# color_bad = "#666666"
|
||||
#}
|
||||
|
||||
# ~~ VPN status via tun0 device
|
||||
ethernet tun0 {
|
||||
format_up = "VPN: %ip"
|
||||
format_down = "No VPN"
|
||||
color_good = "#FF0000"
|
||||
color_bad = "#666666"
|
||||
}
|
||||
|
||||
# ~~ 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"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue