WIP
This commit is contained in:
parent
1ff03eb4ca
commit
fe0993358b
10 changed files with 515 additions and 88 deletions
|
@ -1,45 +1,60 @@
|
|||
general {
|
||||
output_format = "i3bar"
|
||||
colors = true
|
||||
color_good = "#50FA7B"
|
||||
color_degraded = "#F1FA8C"
|
||||
color_bad = "#FF5555"
|
||||
interval = 5
|
||||
// output_format = "i3bar"
|
||||
colors = true
|
||||
color_good = "#50FA7B"
|
||||
color_degraded = "#F1FA8C"
|
||||
color_bad = "#FF5555"
|
||||
interval = 5
|
||||
separator = ""
|
||||
}
|
||||
order += "ipv6"
|
||||
|
||||
// order += "ipv6"
|
||||
order += "volume master"
|
||||
order += "read_file spotify"
|
||||
order += "disk /"
|
||||
order += "run_watch DHCP"
|
||||
order += "run_watch VPNC"
|
||||
order += "path_exists VPN"
|
||||
order += "wireless wlan0"
|
||||
order += "ethernet eth0"
|
||||
order += "disk /nix"
|
||||
order += "disk /home"
|
||||
// order += "run_watch DHCP"
|
||||
// order += "run_watch VPNC"
|
||||
// order += "path_exists VPN"
|
||||
order += "wireless wlp2s0"
|
||||
order += "ethernet enp0s31f6"
|
||||
// order += "ethernet enp0s20f0u3c2"
|
||||
order += "ethernet"
|
||||
order += "battery 0"
|
||||
#order += "cpu_temperature 0"
|
||||
order += "cpu_temperature 0"
|
||||
order += "memory"
|
||||
order += "load"
|
||||
order += "tztime local"
|
||||
order += "tztime berlin"
|
||||
order += "tztime paris"
|
||||
|
||||
wireless wlan0 {
|
||||
format_up = "W: (%quality at %essid, %bitrate) %ip"
|
||||
format_down = "W: down"
|
||||
wireless wlp2s0 {
|
||||
format_up = " (%quality at %essid, %bitrate) %ip"
|
||||
format_down = " "
|
||||
}
|
||||
|
||||
ethernet eth0 {
|
||||
format_up = "E: %ip (%speed)"
|
||||
format_down = "E: down"
|
||||
ethernet enp0s31f6 {
|
||||
format_up = " %ip"
|
||||
format_down = " "
|
||||
}
|
||||
ethernet enp0s20f0u3c2 {
|
||||
format_up = " %ip"
|
||||
format_down = " "
|
||||
}
|
||||
|
||||
battery 0 {
|
||||
format = "%status %percentage %remaining %emptytime"
|
||||
format_down = "No battery"
|
||||
status_chr = "⚡ CHR"
|
||||
status_bat = "🔋 BAT"
|
||||
status_unk = "? UNK"
|
||||
status_full = "☻ FULL"
|
||||
format = "%status %percentage %remaining"
|
||||
format_down = ""
|
||||
last_full_capacity = true
|
||||
integer_battery_capacity = true
|
||||
low_threshold = 11
|
||||
threshold_type = percentage
|
||||
hide_seconds = true
|
||||
status_chr = " ⚡ "
|
||||
status_bat = " 🪫 "
|
||||
status_unk = " 🔌 "
|
||||
status_full = " 🔋 "
|
||||
path = "/sys/class/power_supply/BAT%d/uevent"
|
||||
low_threshold = 10
|
||||
}
|
||||
|
||||
run_watch DHCP {
|
||||
|
@ -57,34 +72,65 @@ path_exists VPN {
|
|||
}
|
||||
|
||||
tztime local {
|
||||
format = "%Y-%m-%d %H:%M:%S"
|
||||
format = "📅 %V %a %Y-%m-%d %H:%M:%S %Z"
|
||||
hide_if_equals_localtime = true
|
||||
}
|
||||
|
||||
tztime berlin {
|
||||
format = "%Y-%m-%d %H:%M:%S %Z"
|
||||
timezone = "Europe/Berlin"
|
||||
tztime paris {
|
||||
format = "📅 %V %a %Y-%m-%d %H:%M:%S %Z"
|
||||
timezone = "Europe/Paris"
|
||||
}
|
||||
|
||||
load {
|
||||
format = "%5min"
|
||||
format = " %5min"
|
||||
}
|
||||
|
||||
cpu_temperature 0 {
|
||||
format = "T: %degrees °C"
|
||||
path = "/sys/devices/platform/coretemp.0/temp1_input"
|
||||
format = "🌡️ %degrees"
|
||||
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon5/temp1_input"
|
||||
}
|
||||
|
||||
memory {
|
||||
format = "%used"
|
||||
format = " %used"
|
||||
threshold_degraded = "10%"
|
||||
format_degraded = "MEMORY: %free"
|
||||
}
|
||||
|
||||
disk "/" {
|
||||
format = "%free"
|
||||
format = " / %free"
|
||||
prefix_type = custom
|
||||
low_threshold = 20
|
||||
threshold_type = percentage_avail
|
||||
}
|
||||
|
||||
disk "/nix" {
|
||||
format = "💻 /nix %free"
|
||||
prefix_type = custom
|
||||
low_threshold = 15
|
||||
threshold_type = percentage_avail
|
||||
}
|
||||
|
||||
disk "/home" {
|
||||
format = "💾 /home %free"
|
||||
prefix_type = custom
|
||||
low_threshold = 10
|
||||
threshold_type = percentage_avail
|
||||
}
|
||||
|
||||
read_file uptime {
|
||||
path = "/proc/uptime"
|
||||
}
|
||||
}
|
||||
|
||||
volume master {
|
||||
format = "%volume "
|
||||
format_muted = " "
|
||||
// device = "pulse:1"pavuc
|
||||
device = "default"
|
||||
mixer = "Master"
|
||||
mixer_idx = 0
|
||||
}
|
||||
|
||||
read_file spotify {
|
||||
format = "🔊%content"
|
||||
path = "~/.config/i3status/spotify.log"
|
||||
}
|
||||
|
|
0
i3/.config/i3status/spotify.log
Normal file
0
i3/.config/i3status/spotify.log
Normal file
Loading…
Add table
Add a link
Reference in a new issue