Add simple i3status config and fix default tint2rc

This commit is contained in:
natemaia 2019-10-28 12:44:57 -07:00
parent a5286f9529
commit a93784f2be
3 changed files with 38 additions and 2 deletions

View File

@ -100,7 +100,7 @@ taskbar_hide_if_empty = 1
taskbar_padding = 0 0 0
taskbar_background_id = 4
taskbar_active_background_id = 5
taskbar_name = 0
taskbar_name = 1
taskbar_hide_inactive_tasks = 0
taskbar_hide_different_monitor = 1
taskbar_hide_different_desktop = 0

View File

@ -2,7 +2,8 @@
# sourced at boot by ~/.xinitrc and most display managers
export XDG_CONFIG_HOME="$HOME/.config"
XDG_CONFIG_HOME="$HOME/.config"
export XDG_CONFIG_HOME
[ "$PATH" == *"$HOME/bin"* ] || PATH="$HOME/bin:$PATH"

View File

@ -0,0 +1,35 @@
# i3status configuration file.
# see "man i3status" for documentation.
general {
colors = true
interval = 5
}
order += "battery all"
order += "disk /"
order += "load"
order += "memory"
order += "tztime local"
battery all {
format = "%status %percentage %remaining"
}
disk "/" {
format = "%avail"
}
load {
format = "%1min"
}
memory {
format = "%used | %available"
threshold_degraded = "1G"
format_degraded = "MEMORY < %available"
}
tztime local {
format = "%T"
}