Skip to content

Instantly share code, notes, and snippets.

@cirrusUK
Last active December 28, 2015 11:29
Show Gist options
  • Select an option

  • Save cirrusUK/7493347 to your computer and use it in GitHub Desktop.

Select an option

Save cirrusUK/7493347 to your computer and use it in GitHub Desktop.
Slightly modded i3status.conf laptop
# 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
interval = 5
}
#order += "ipv6"
order += "disk /"
#order += "run_watch DHCP"
#order += "run_watch VPN"
order += "wireless enp2s0"
#order += "ethernet enp6s0"
order += "battery 1"
order += "load"
order += "tztime local"
wireless enp2s0 {
format_up = "WiFi: (%quality at %essid) %ip"
format_down = "Wi-Fi: down"
}
ethernet enp6s0 {
# if you use %speed, i3status requires root privileges
format_up = "E: %ip (%speed)"
format_down = "E: down"
}
battery 1 {
format = "Batt: %status %percentage %remaining"
}
run_watch DHCP {
pidfile = "/var/run/dhclient*.pid"
}
run_watch VPN {
pidfile = "/var/run/vpnc/pid"
}
tztime local {
format = "%Y-%m-%d %H:%M"
}
load {
format = "Load:%1min"
}
disk "/" {
format = "/: %free"
}
order += "cpu_temperature 0"
cpu_temperature 0 {
format = "CPU: %degrees °C"
max_threshold = 65
path = "/sys/class/thermal/thermal_zone0/temp"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment