summaryrefslogtreecommitdiffstats
path: root/config/i3status
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-11-16 01:34:16 -0500
committerJesse Luehrs <doy@tozt.net>2018-11-16 03:18:44 -0500
commite42c989d6def401dd893a73cef5d5deac8b42778 (patch)
treea85a03c0c2c9861729ff182d471ddfb25a09ec33 /config/i3status
parentc08a8241a1844216bd76ecfe6bb7d20a8edaf00a (diff)
downloadconf-e42c989d6def401dd893a73cef5d5deac8b42778.tar.gz
conf-e42c989d6def401dd893a73cef5d5deac8b42778.zip
prefer xdg basedir specification directories
Diffstat (limited to 'config/i3status')
-rw-r--r--config/i3status/config44
1 files changed, 44 insertions, 0 deletions
diff --git a/config/i3status/config b/config/i3status/config
new file mode 100644
index 0000000..4c2bcdd
--- /dev/null
+++ b/config/i3status/config
@@ -0,0 +1,44 @@
+general {
+ output_format = i3bar
+ interval = 1
+}
+
+order += "cpu_usage"
+order += "wireless wlp3s0"
+order += "ethernet enp0s25"
+order += "battery 0"
+order += "battery 1"
+order += "time"
+order += "load"
+
+cpu_usage {
+ format = "CPU: %usage"
+}
+
+wireless wlp3s0 {
+ format_up = "wlp3s0: (%essid: %quality)"
+ format_down = "wlp3s0"
+}
+
+ethernet enp0s25 {
+ format_up = "enp0s25: (%speed)"
+ format_down = "enp0s25"
+}
+
+battery 0 {
+ last_full_capacity = true
+ format = "%status %percentage (%remaining %consumption)"
+}
+
+battery 1 {
+ last_full_capacity = true
+ format = "%status %percentage (%remaining %consumption)"
+}
+
+time {
+ format = "%a %b %d %H:%M:%S"
+}
+
+load {
+ format = "%1min"
+}