summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Groman <tgroman@nuegia.net>2018-09-07 10:52:30 -0700
committerThomas Groman <tgroman@nuegia.net>2018-09-07 10:52:30 -0700
commite88b6f9181f684efeceea0eb1613c7866751f668 (patch)
tree14690e79099f9c38c1fdab44dde7023e73a4cc59
parent17bc87773f9370d9004e7bb35d9eb64df6114ac8 (diff)
downloadconfigs-e88b6f9181f684efeceea0eb1613c7866751f668.tar
configs-e88b6f9181f684efeceea0eb1613c7866751f668.tar.gz
configs-e88b6f9181f684efeceea0eb1613c7866751f668.tar.lz
configs-e88b6f9181f684efeceea0eb1613c7866751f668.tar.xz
configs-e88b6f9181f684efeceea0eb1613c7866751f668.zip
Intitial Commit
-rw-r--r--.config/i3status/config59
1 files changed, 59 insertions, 0 deletions
diff --git a/.config/i3status/config b/.config/i3status/config
new file mode 100644
index 0000000..681f5c1
--- /dev/null
+++ b/.config/i3status/config
@@ -0,0 +1,59 @@
+# 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 = true
+ interval = 5
+}
+
+order += "ipv6"
+order += "disk /"
+order += "wireless _first_"
+order += "ethernet _first_"
+order += "battery all"
+order += "load"
+order += "tztime local"
+
+wireless _first_ {
+ format_up = "W: %quality %essid %ip %bitrate %frequency"
+ format_down = "W: down"
+}
+
+ethernet _first_ {
+ # if you use %speed, i3status requires root privileges
+ format_up = "E: %ip (%speed)"
+ format_down = "E: down"
+}
+
+battery all {
+ format = "%status %percentage %remaining"
+ format_down = "No Battery"
+ last_full_capacity = false #if false % is show actual compacity
+ integer_battery_capacity = false
+ status_chr = " "
+ # status_chr = "⚡"
+ # status_bat = "☉"
+ status_bat = ""
+ status_unk = "?"
+ status_full = "☻"
+ low_threshold = 15
+ threshold_type = time
+}
+
+tztime local {
+ # format = "%Y-%m-%d %H:%M:%S"
+ format = "%Y-%m-%d %I:%M %p"
+}
+
+load {
+ format = "%1min"
+}
+
+disk "/" {
+ format = "⛁ %avail"
+}