dotfiles

Personal dotfiles
git clone git://git.laack.co/dotfiles.git
Log | Files | Refs

config (981B)


      1 # i3status configuration file.
      2 # see "man i3status" for documentation.
      3 
      4 # It is important that this file is edited as UTF-8.
      5 # The following line should contain a sharp s:
      6 # ß
      7 # If the above line is not correctly displayed, fix your editor first!
      8 
      9 general {
     10         colors = false
     11         interval = 5
     12 	markup = "pango"
     13 }
     14 
     15 #order += "battery 0"
     16 order += "tztime local"
     17 
     18 wireless wlan0 {
     19         #format_up = "W: (%quality at %essid) %ip"
     20         #format_down = "W: down"
     21 }
     22 
     23 ethernet eth0 {
     24         # if you use %speed, i3status requires root privileges
     25         #format_up = "E: %ip (%speed)"
     26         #format_down = "E: down"
     27 }
     28 
     29 battery 0 {
     30 	       format = "<span color='white'>%status %percentage</span>"
     31 }
     32 
     33 run_watch DHCP {
     34         pidfile = "/var/run/dhclient*.pid"
     35 }
     36 
     37 run_watch VPN {
     38         pidfile = "/var/run/vpnc/pid"
     39 }
     40 
     41 tztime local {
     42         format = "<span color='white'>%Y-%m-%d %r</span>"
     43 }
     44 
     45 load {
     46         format = "%1min"
     47 }
     48 
     49 disk "/" {
     50         format = "%avail"
     51 }
     52