initial commit

This commit is contained in:
2024-11-05 10:18:47 -05:00
commit 84bc4ef53f
35 changed files with 6556 additions and 0 deletions

75
config/i3status/config Executable file
View File

@@ -0,0 +1,75 @@
general {
output_format = "i3bar"
colors = false
markup = pango
interval = 5
}
order += "load"
order += "memory"
order += "cpu_temperature 0"
order += "wireless wlp4s0"
order += "volume master"
order += "battery 0"
order += "battery 1"
order += "time"
load {
format = "<span background='#b08500'>  </span><span background='#bfbaac'> %5min Load </span>"
}
memory {
format = "<span background='#b08500'>  </span><span background='#bfbaac'> %used | %available </span>"
threshold_degraded = "1G"
format_degraded = "MEMORY < %available"
}
cpu_temperature 0 {
format = "<span background='#d12f2c'>  </span><span background='#bfbaac'> %degrees °C </span>"
path = "/sys/class/thermal/thermal_zone0/temp"
}
wireless wlp4s0 {
format_up = "<span background='#289c93'>  </span><span background='#bfbaac'> %essid </span>"
format_down = "<span background='#289c93'>  </span><span background='#bfbaac'> Disconnected </span>"
}
volume master {
format = "<span background='#696ebf'>  </span><span background='#bfbaac'> %volume </span>"
format_muted = "<span background='#696ebf'>  </span><span background='#bfbaac'> Muted </span>"
device = "default"
mixer = "Master"
mixer_idx = 0
}
battery 0 {
last_full_capacity = true
format = "<span background='#819400'> %status </span><span background='#bfbaac'> %percentage </span>"
format_down = "No Battery"
status_chr = ""
status_bat = ""
status_unk = ""
status_full = ""
path = "/sys/class/power_supply/BAT%d/uevent"
low_threshold = 10
integer_battery_capacity = true
}
battery 1 {
last_full_capacity = true
format = "<span background='#819400'> %status </span><span background='#bfbaac'> %percentage </span>"
format_down = "No Battery"
status_chr = ""
status_bat = ""
status_unk = ""
status_full = ""
path = "/sys/class/power_supply/BAT%d/uevent"
low_threshold = 10
integer_battery_capacity = true
}
time {
format = "<span background='#2587cc'>  </span><span background='#bfbaac'> %b %d at %H:%M </span>"
}