plugfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

config (1104B)


      1 general {
      2         #output_format = "i3bar"
      3         colors = true
      4         interval = 5
      5 }
      6 
      7 #order += "ipv6"
      8 order += "battery 0"
      9 order += "disk /"
     10 order += "cpu_temperature 0"
     11 order += "wireless wlp82s0"
     12 order += "ethernet en0s31f6"
     13 order += "tztime local"
     14 
     15 wireless wlp82s0 {
     16         format_up = "W: %quality // %bitrate //  %ip"
     17         format_down = "W: down"
     18 }
     19 
     20 ethernet enp0s31f6 {
     21         # if you use %speed, i3status requires the cap_net_admin capability
     22         format_up = "E: %ip (%speed)"
     23         format_down = "E: down"
     24 }
     25 
     26 tztime local {
     27         #format = "%Y-%m-%d %H:%M:%S"
     28         format = "%H:%M:%S // %Y-%m-%d"
     29 }
     30 
     31 
     32 
     33 cpu_temperature 0 {
     34         format = "T: %degrees °C"
     35         path = "/sys/class/thermal/thermal_zone19/temp"
     36 }
     37 
     38 disk "/" {
     39         format = "%free"
     40 }
     41 
     42 
     43 battery 0 {
     44         format = "%status %percentage %remaining"# %emptytime"
     45         format_down = "No battery"
     46         status_chr = "⚡ CHR"
     47         status_bat = "🔋 BAT"
     48         status_unk = "? UNK"
     49         status_full = "☻ FULL"
     50         path = "/sys/class/power_supply/BAT%d/uevent"
     51         low_threshold = 10
     52 }