myconfig

my config files
git clone https://a3nm.net/git/myconfig/
Log | Files | Refs | README

status (1103B)


      1 general {
      2         colors = true
      3         interval = 1
      4         color_separator = "#00FF00"
      5 }
      6 
      7 order += "ipv6"
      8 order += "disk /"
      9 order += "run_watch DHCP"
     10 order += "wireless wlan0"
     11 order += "ethernet eth0"
     12 order += "battery 0"
     13 order += "cpu_temperature 0"
     14 order += "load"
     15 order += "time"
     16 
     17 wireless wlan0 {
     18         format_up = "W: (%quality at %essid) %ip"
     19         format_down = "W: down"
     20 }
     21 
     22 ethernet eth0 {
     23         # if you use %speed, i3status requires root privileges
     24         format_up = "E: %ip (%speed)"
     25 	format_down = "E: down"
     26 }
     27 
     28 battery 0 {
     29         format = "%status %percentage %remaining"
     30         hide_seconds = true
     31         integer_battery_capacity = true
     32         last_full_capacity = true
     33         low_threshold = 10
     34 }
     35 
     36 run_watch DHCP {
     37         pidfile = "/var/run/dhclient*.pid"
     38 }
     39 
     40 run_watch VPN {
     41         pidfile = "/var/run/vpnc/pid"
     42 }
     43 
     44 time {
     45 	format = "%Y-%m-%d %H:%M:%S"
     46 }
     47 
     48 load {
     49 	format = "%1min"
     50 }
     51 
     52 cpu_temperature 0 {
     53 	format = "T: %degrees °C"
     54 }
     55 
     56 disk "/" {
     57 	format = "%free on /"
     58 }
     59 
     60 volume master {
     61   format = "vol %volume "
     62   device = "default"
     63   mixer = "Master"
     64   mixer_idx = 0
     65 }