dotfiles

my shiny new dotfiles
git clone git://git.jakekoroman.com/dotfiles
Log | Files | Refs | README

i3status (1267B)


      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 = true
     11         interval = 5
     12 }
     13 
     14 order += "wireless _first_"
     15 order += "ethernet _first_"
     16 order += "disk /home"
     17 order += "load"
     18 order += "memory"
     19 order += "volume master"
     20 order += "battery all"
     21 order += "tztime local"
     22 
     23 wireless _first_ {
     24         # format_up = "W: (%quality at %essid) %ip"
     25         format_up = "W: (Signal%quality) %ip"
     26         format_down = "W: down"
     27 }
     28 
     29 ethernet _first_ {
     30         format_up = "E: %ip (%speed)"
     31         format_down = "E: down"
     32 }
     33 
     34 battery all {
     35         format = "%status %percentage %remaining"
     36 }
     37 
     38 disk "/" {
     39         format = "%avail"
     40 }
     41 
     42 disk "/home" {
     43         format = "%avail"
     44 }
     45 
     46 load {
     47         format = "%1min"
     48 }
     49 
     50 memory {
     51         format = "%used | %total"
     52         threshold_degraded = "1G"
     53         format_degraded = "MEMORY < %available"
     54 }
     55 
     56 tztime local {
     57         format = "%A %Y-%m-%d %H:%M:%S"
     58         locale = "fr_CA.utf8"
     59 }
     60 
     61 volume master {
     62         format = "Volume: %volume"
     63         format_muted = "Volume: muted (%volume)"
     64         # device = "pulse:0"
     65 }