Skip to content

Instantly share code, notes, and snippets.

@jda
Created January 22, 2019 08:20
Show Gist options
  • Save jda/cc5bc78129a48b2041cbb42a0df1ae7c to your computer and use it in GitHub Desktop.
Save jda/cc5bc78129a48b2041cbb42a0df1ae7c to your computer and use it in GitHub Desktop.
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
interval = 5
}
order += "ipv6"
order += "disk /"
order += "wireless _first_"
order += "ethernet _first_"
order += "battery all"
order += "load"
order += "cpu_temperature 0"
order += "volume master"
order += "tztime local"
wireless _first_ {
format_up = "W: (%essid: %bitrate / %frequency) %ip"
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"
integer_battery_capacity = true
last_full_capacity = true
status_chr = "⚡"
status_bat = "BAT"
status_unk = "?"
status_full = "☻"
}
tztime local {
format = "%Y-%m-%d %H:%M:%S"
}
load {
format = "%1min"
}
disk "/" {
format = "%avail"
}
volume master {
format = "♪: %volume"
format_muted = "♪: (%volume)"
device = "default"
mixer = "Master"
mixer_idx = 0
}
load {
format = "%1min"
}
cpu_temperature 0 {
format = "%degrees°C"
max_threshold = "65"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment