Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 61ba8a8c85365ac8effbb1690d9eddbce9d11d3b 52 lines 1.0 kB view raw
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 9general { 10 colors = false 11 interval = 5 12} 13 14order += "disk /" 15order += "wireless _first_" 16order += "ethernet _first_" 17order += "load" 18order += "volume master" 19order += "tztime local" 20 21wireless _first_ { 22 format_up = "W: (%quality at %essid) %ip" 23 format_down = "W: down" 24} 25 26#ethernet _first_ { 27# # if you use %speed, i3status requires root privileges 28# format_up = "E: %ip (%speed)" 29# format_down = "E: down" 30#} 31 32battery all { 33 format = "%status %percentage %remaining" 34} 35 36tztime local { 37 format = "%Y-%m-%d %H:%M:%S" 38} 39 40load { 41 format = "CPU: %1min" 42} 43 44disk "/" { 45 format = "%avail" 46} 47 48volume master { 49 format = "♪: %volume" 50 format_muted = "♪: muted (%volume)" 51 device = "pulse" 52}