diff options
author | Tom Barrett <spalf0@gmail.com> | 2015-10-15 00:35:12 -0500 |
---|---|---|
committer | Tom Barrett <spalf0@gmail.com> | 2015-10-15 00:35:12 -0500 |
commit | 3bae5766931a734416005789c8e4b0fc811eb8dd (patch) | |
tree | 5d7ea6259d1f69dfcf46f486fa484ae2816e22e5 | |
parent | aa43643834a5dddf02522702d079541c92ce2f33 (diff) |
Create .i3status.conf
-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" +} |