1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # i3status configuration file.
- # see "man i3status" for documentation.
- # It is important that this file is edited as UTF-8.
- # The following line should contain a sharp s:
- # ß
- # If the above line is not correctly displayed, fix your editor first!
- general {
- colors = true
- interval = 5
- color_good = "#88b090"
- color_bad = "#383530"
- output_format = "i3bar"
- }
- order += "disk /"
- order += "ethernet eth0"
- order += "load"
- order += "tztime local"
- order += "volume master"
- ethernet eth0 {
- # if you use %speed, i3status requires root privileges
- format_up = "E: %ip
- (%speed)"
- format_down = "E: down"
- }
- tztime local {
- format = "%Y-%m-%d %H:%M:%S"
- }
- load {
- format = "%1min"
- }
- disk "/" {
- format = "%avail"
- }
- volume master {
- format = "♪: %volume"
- device = "default"
- mixer = "Master"
- mixer_idx = 0
- }
|