Watch
1
0
Fork
You've already forked dotfiles
0

Add i3status config for laptop setup (with wifi and battery)

This commit is contained in:
coderkun 2018-04-07 12:51:02 +02:00
commit bd53f1e12f

59
i3status/laptop.config Normal file
View file

@ -0,0 +1,59 @@
# 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 {
output_format = "i3bar"
colors = true
interval = 20
}
order += "ipv6"
order += "wireless _first_"
order += "disk /"
order += "disk /home"
order += "battery 1"
order += "cpu_usage"
#order += "load"
order += "tztime local"
wireless _first_ {
format_up = "W: (%quality at %essid) %ip"
format_down = "W: down"
}
battery 1 {
hide_seconds = true
integer_battery_capacity = true
low_threshold = 10
status_chr = "⚇"
status_bat = "⚡"
status_full = "☻"
format = "%status %percentage %remaining"
format_down = "No battery"
}
tztime local {
#format = "%Y-%m-%d %H:%M:%S"
format = "%H:%M:%S %d.%m.%Y"
}
cpu_usage {
format = "%usage"
}
load {
format = "%1min"
}
disk "/" {
format = "%avail"
}
disk "/home" {
format = "%avail"
}