aboutsummaryrefslogtreecommitdiff
path: root/i3
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2018-01-18 02:30:22 -0500
committerTucker Evans <tuckerevans24@gmail.com>2018-01-18 02:30:22 -0500
commitdd664776b292fadba61aec3dc7b9a02b869c646b (patch)
tree3e7e5f542177df8308f18e0e822179212b0cdadb /i3
parent0a36ba03742d0f5eda71c1280588436b25268ad0 (diff)
Added i3status files
Diffstat (limited to 'i3')
-rw-r--r--i3/.config/i3status/config56
1 files changed, 56 insertions, 0 deletions
diff --git a/i3/.config/i3status/config b/i3/.config/i3status/config
new file mode 100644
index 0000000..a291ae3
--- /dev/null
+++ b/i3/.config/i3status/config
@@ -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 {
+ colors = true
+ interval = 5
+#color_good = "#5294E2"
+# color_bad = "#CC575D"
+}
+
+order += "ipv6"
+order += "disk /"
+order += "wireless _first_"
+order += "ethernet _first_"
+order += "volume master"
+order += "battery all"
+order += "load"
+order += "tztime local"
+
+wireless _first_ {
+ format_up = "W: (%quality at %essid) %ip"
+ 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"
+}
+
+tztime local {
+ format = "%Y-%m-%d %H:%M:%S"
+}
+
+load {
+ format = "%1min"
+}
+
+disk "/" {
+ format = "%avail"
+}
+
+volume master {
+ format = "♪: %volume"
+ format_muted = "♪: muted (%volume)"
+ device = "pulse:alsa_output.pci-0000_00_1f.3.analog-stereo"
+}