Modify battery format and add volume status

This commit is contained in:
David Thurstenson 2016-03-23 23:05:05 +00:00
parent 09e90f18fc
commit b96085babd
1 changed files with 21 additions and 2 deletions

View File

@ -11,7 +11,8 @@ general {
interval = 5
}
#order += "ipv6"
order += "ipv6"
order += "volume master"
order += "disk /"
order += "disk /home"
order += "run_watch VPN"
@ -20,6 +21,7 @@ order += "ethernet _first_"
order += "run_watch DHCP"
order += "battery 1"
order += "load"
order += "cpu_temperature 0"
order += "tztime local"
wireless _first_ {
@ -34,7 +36,19 @@ ethernet _first_ {
}
battery 1 {
format = "%status %percentage %remaining"
format = "%status %percentage %remaining %consumption"
status_chr = "⚇"
status_bat = "⚡"
status_full = "☻"
last_full_capacity = true
low_threshold = "20"
threshold_type = "percentage"
hide_seconds = true
integer_battery_capacity = true
}
cpu_temperature 0 {
format = "%degreesC"
}
run_watch DHCP {
@ -60,3 +74,8 @@ disk "/home" {
disk "/" {
format = "/: %percentage_used"
}
volume master {
format = "🔈 %volume"
format_muted = "🔇"
}