diff options
| author | escfrpls <licwin1410@gmail.com> | 2026-05-10 15:13:54 +0200 |
|---|---|---|
| committer | escfrpls <licwin1410@gmail.com> | 2026-05-10 15:13:54 +0200 |
| commit | ea41942b83edeb32bce680c9cf325fddf2496da9 (patch) | |
| tree | e1d6aec739676cbf6dafbe8f9936d01ef8f14132 /i3status.md | |
Diffstat (limited to 'i3status.md')
| -rw-r--r-- | i3status.md | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/i3status.md b/i3status.md new file mode 100644 index 0000000..6cffbe9 --- /dev/null +++ b/i3status.md @@ -0,0 +1,56 @@ +# 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 { + output_format = "i3bar" + colors = true + interval = 10 +} + +order += "wireless _first_" +order += "ethernet _first_" +order += "disk /" +order += "cpu_usage" +order += "memory" +order += "tztime local" +order += "volume master" + +wireless _first_ { + format_up = " %essid (%quality) %ip" + format_down = " down" +} + +ethernet _first_ { + format_up = " %ip" + format_down = " down" +} + +disk "/" { + format = " %avail" +} + +cpu_usage { + format = " %usage" +} + +memory { + format = " %used" + threshold_degraded = "80%" +} + +tztime local { + format = " %Y-%m-%d %H:%M:%S" +} + +volume master { + format = " %volume" + format_muted = " muted" + device = "default" + mixer = "Master" +} + |
