Skip to content

Instantly share code, notes, and snippets.

@She110ck
Last active February 7, 2020 02:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save She110ck/14d88122e8e22135e6b6aafb928ac754 to your computer and use it in GitHub Desktop.
Save She110ck/14d88122e8e22135e6b6aafb928ac754 to your computer and use it in GitHub Desktop.
minimal i3status bar 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
interval = 5
}
order += "disk /"
order += "wireless _first_"
order += "cpu_temperature 0"
order += "battery all"
order += "volume master"
order += "tztime local"
wireless _first_ {
format_up = "W: (%quality at %essid)"
format_down = "W: down"
}
ethernet _first_ {
# if you use %speed, i3status requires root privileges
format_up = "E: %ip (%speed)"
format_down = "E: down"
}
battery all {
format = "%status %percentage %remaining"
format_down = "No battery"
status_chr = "⚡ CHR"
status_bat = "🔋 BAT"
status_unk = "? UNK"
status_full = "☻ FULL"
path = "/sys/class/power_supply/BAT%d/uevent"
low_threshold = 10
}
tztime local {
format = "%H:%M:%S"
}
cpu_temperature 0 {
format = "%degrees °C"
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon5/temp1_input"
}
volume master {
format = "♪: %volume"
format_muted = "♪: muted (%volume)"
device = "default"
mixer = "Master"
mixer_idx = 0
}
disk "/" {
format = "%avail"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment