123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- # 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_bad = "#FF8800"
- interval = 5
- }
- order += "load"
- order += "disk /"
- order += "ipv6"
- order += "wireless _first_"
- order += "ethernet _first_"
- order += "path_exists VPN"
- order += "volume master"
- order += "battery 0"
- order += "tztime local"
- ipv6 {
- format_up = "%ip"
- format_down = ""
- }
- wireless _first_ {
- format_up = "⌔ %essid%quality %bitrate %ip"
- format_down = "⌔×"
- }
- ethernet _first_ {
- # if you use %speed, i3status requires root privileges
- format_up = "⇵ %speed %ip"
- format_down = "⇵×"
- }
- battery 0 {
- format = "%status %percentage %remaining"
- integer_battery_capacity = true
- hide_seconds = true
- format_down = "×"
- status_chr = "⍐"
- status_bat = "⍗"
- status_unk = "⍰"
- status_full = "⌼"
- path = "/sys/class/power_supply/BAT%d/uevent"
- low_threshold = 20
- threshold_type = time
- }
- tztime local {
- format = "%a %-d %b %H:%M"
- }
- load {
- format = "%1min"
- }
- disk "/" {
- format = "%avail"
- low_threshold = 100
- threshold_type = gbytes_avail
- }
- volume master {
- format = "♪ %volume"
- format_muted = "♪× (%volume)"
- device = "default"
- mixer = "Master"
- mixer_idx = 0
- }
- path_exists VPN {
- format_down = ""
- format = "⛢ %title"
- path = "/proc/sys/net/ipv4/conf/tun0"
- }
|