This commit is contained in:
klg 2020-02-25 08:41:36 +01:00
parent b9633fcdd6
commit ca336fde1c
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG Key ID: 5172C21B0F825C92
2 changed files with 114 additions and 0 deletions

1
config
View File

@ -89,6 +89,7 @@ bindsym Up resize shrink height 10 px or 10 ppt
bar {
position top
status_command i3status --config ~/.config/i3/i3status.conf
}

113
i3status.conf Normal file
View File

@ -0,0 +1,113 @@
# github.com/rafi i3status config
# i3status configuration file
# see "man i3status" for documentation.
# 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
color_good = "#BBBBBB"
color_bad = "#CC1616"
color_degraded = "#55858E"
interval = 2
}
order += "volume master"
order += "load"
order += "cpu_usage"
#order += "cpu_temperature 0"
#order += "cpu_temperature 1"
#order += "cpu_temperature 2"
#order += "cpu_temperature 3"
#order += "disk /"
#order += "disk /media/media"
order += "ethernet enp0s25"
order += "tztime local"
#order += "ipv6"
#order += "run_watch DHCP"
#order += "run_watch VPN"
#order += "wireless wlan0"
volume master {
format = " ♪: %volume "
device = "default"
mixer = "Master"
mixer_idx = 0
# termsyn font
# format = "À %volume "
}
load {
format = " Δ: %1min "
# termsyn font
# format = " Î %1min"
}
cpu_usage {
format = "%usage "
}
cpu_temperature 0 {
format = " ± %degrees°"
path = "/sys/devices/platform/coretemp.0/temp2_input"
max_threshold = 95
}
cpu_temperature 1 {
format = "%degrees°"
path = "/sys/devices/platform/coretemp.0/temp3_input"
max_threshold = 95
}
cpu_temperature 2 {
format = "%degrees°"
path = "/sys/devices/platform/coretemp.0/temp4_input"
max_threshold = 95
}
cpu_temperature 3 {
format = "%degrees° "
path = "/sys/devices/platform/coretemp.0/temp5_input"
max_threshold = 95
}
disk "/" {
format = " ¨ %avail:/ "
}
#disk "/media/media" {
# format = " ¨ %avail:m "
#}
#wireless wlan0 {
# format_up = " W: (%quality at %essid) %ip "
# format_down = " ☡ WiFi "
#}
ethernet eth0 {
# if you use %speed, i3status requires root privileges
# format_up = " Ω: %ip "
# format_down = " ∅ eth0 "
# termsyn font
format_up = " ­ %ip "
format_down = " Ð eth0 "
}
run_watch DHCP {
pidfile = "/var/run/dhclient*.pid"
}
run_watch VPN {
pidfile = "/var/run/vpnc/pid"
}
tztime local {
format = " %h-%d %H:%M"
# termsyn font
# format = " %h-%d É %H:%M ¸ ÈÈÈ È "
}