diff options
-rw-r--r-- | .i3status.conf | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.i3status.conf b/.i3status.conf new file mode 100644 index 0000000..2fbe876 --- /dev/null +++ b/.i3status.conf @@ -0,0 +1,29 @@ +general { + colors = true + color_good = "#e65200" + color_bad = "#e65200" + color_degraded = "#e65200" + interval = 1 +} + +order += "disk /" +order += "ethernet eth0" +order += "load" +order += "tztime local" + +ethernet eth0 { + format_up = "E: %ip (%speed)" + format_down = "E: down" +} + +tztime local { + format = "%Y-%m-%d %H:%M:%S" +} + +load { + format = "%5min" +} + +disk "/" { + format = "%free" +} |