diff --git a/.i3status.conf b/.i3status.conf new file mode 100644 index 0000000..0cbb249 --- /dev/null +++ b/.i3status.conf @@ -0,0 +1,45 @@ +# 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 = false + interval = 1 +} + +order += "volume master" +order += "disk /" +order += "load" +order += "tztime local" +order += "wireless wlp2s0" + + +tztime local { + format = " %H:%M:%S  %m-%d-%Y" +} + +load { + format = "%1min" +} + +disk "/" { + format = " %avail" +} + +volume master { + format = " %volume" + format_muted = " " + device = "default" + mixer = "Master" + mixer_idx = 0 +} + +wireless wlp2s0 { +format_up = " %bitrate%quality" +format_down = " down" +}