Skip to content

Instantly share code, notes, and snippets.

@opnchaudhary
Created May 26, 2020 14:57
Show Gist options
  • Save opnchaudhary/16563897cd7bae3edf637e00fd8040e6 to your computer and use it in GitHub Desktop.
Save opnchaudhary/16563897cd7bae3edf637e00fd8040e6 to your computer and use it in GitHub Desktop.
/etc/i3status.conf
# 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
color_good = "#4caf50"
color_bad = "#ffeb3b"
color_degraded = "#f44336"
}
#
order += "cpu_usage"
# order += "load"
order += "disk /"
order += "disk /run/media/opnchaudhary/56EA63B90D5F3E70"
order += "wireless _first_"
order += "ethernet _first_"
order += "volume master"
# order += "load"
order += "tztime local"
# order += "battery all"
# order += "ipv6"
cpu_usage {
format = " ⚛ %usage "
}
load {
format = " load %1min "
# max_threshold = 0.3
}
disk "/" {
# format = " hdd %avail "
format = " ⛁ %avail "
}
disk "/run/media/opnchaudhary/56EA63B90D5F3E70" {
format = " 📤 %avail "
}
ethernet _first_ {
# if you use %speed, i3status requires root privileges
format_up = "🖧 %ip %speed "
format_down = " E: down"
}
volume master {
format = "🎜 %volume"
format_muted = "🎜 muted (%volume)"
device = "pulse"
}
battery all {
# format = "%status %percentage %remaining %emptytime"
format = " %status %percentage"
# format_down = "No battery"
format_down = "⏻ AC"
last_full_capacity = true
integer_battery_capacity = true
# status_chr = ""
status_chr = "⚡"
# status_bat = "bat"
# status_bat = "☉"
status_bat = ""
# status_unk = "?"
status_unk = ""
# status_full = ""
status_full = "☻"
low_threshold = 15
threshold_type = time
}
tztime local {
# format = "%Y-%m-%d %H:%M:%S"
format = " 🗓 %a %d.%m 🕰 %H:%M "
}
#bar {
# status_command i3status
# colors {
# background #000000
# statusline #ffffff
# focused_workspace #ffffff #285577
# active_workspace #ffffff #333333
# inactive_workspace #888888 #222222
# urgent_workspace #ffffff #900000
# }
#}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment