1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- # 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
- color_good = "#a8c2ed"
- color_bad = "#a56d82"
- color_degraded = "#c17d97"
- interval = 5
- }
- order += "disk /"
- order += "wireless _first_"
- order += "ethernet _first_"
- order += "battery 0"
- order += "load"
- order += "volume master"
- order += "cpu_temperature 0"
- order += "tztime local"
- volume master {
- format = " ♪: %volume "
- device = "default"
- mixer = "Master"
- mixer_idx = 0
- }
- wireless _first_ {
- format_up = " W: (%quality at %essid) %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 0 {
- format = " %status %percentage %remaining "
- format_down = " No battery "
- status_chr = " ⚡ CHR "
- status_bat = " BAT "
- status_full = " ☻ FULL "
- path = "/sys/class/power_supply/BAT%d/uevent"
- low_threshold = 10
- }
- run_watch DHCP {
- pidfile = "/var/run/dhclient*.pid"
- }
- run_watch VPN {
- pidfile = "/var/run/vpnc/pid"
- }
- tztime local {
- format = " %Y-%m-%d %H:%M:%S "
- }
- load {
- format = " %1min "
- }
- disk "/" {
- format = " %avail "
- }
- cpu_temperature 0 {
- format = " %degrees °C "
- path = "/sys/devices/platform/coretemp.0/hwmon/hwmon3/temp1_input"
- }
|