aboutsummaryrefslogtreecommitdiff
path: root/i3/i3status.conf
diff options
context:
space:
mode:
authororeodave <aryadevchavali1@gmail.com>2020-04-12 01:48:07 +0100
committeroreodave <aryadevchavali1@gmail.com>2020-04-12 01:51:05 +0100
commit76ce7afb09efdd7537598b7e34e52acd9c9bab94 (patch)
tree6546f710276fd1d2c0213021e8ab3321be3175bf /i3/i3status.conf
parentde06897388660717b34487136f5bd9f926e702f7 (diff)
downloaddotfiles-76ce7afb09efdd7537598b7e34e52acd9c9bab94.tar.gz
dotfiles-76ce7afb09efdd7537598b7e34e52acd9c9bab94.tar.bz2
dotfiles-76ce7afb09efdd7537598b7e34e52acd9c9bab94.zip
~Moved i3 configuration files into i3/*
Easier to manage, cleaner to read
Diffstat (limited to 'i3/i3status.conf')
-rw-r--r--i3/i3status.conf48
1 files changed, 48 insertions, 0 deletions
diff --git a/i3/i3status.conf b/i3/i3status.conf
new file mode 100644
index 0000000..f0da4ed
--- /dev/null
+++ b/i3/i3status.conf
@@ -0,0 +1,48 @@
+general {
+ output_format = "i3bar"
+ colors = true
+ interval = 1
+}
+
+# Furthest to closest
+
+order += "wireless wlp2s0"
+order += "ethernet enp1s0"
+order += "disk /home"
+order += "volume master"
+order += "battery 0"
+order += "tztime local"
+
+tztime local {
+ format = "%d/%m/%Y %H:%M"
+}
+
+wireless wlp2s0 {
+ format_up = "Connected: %ip@%essid"
+ format_down = ""
+}
+
+ethernet enp1s0 {
+ format_up = "Connection: %ip"
+ format_down = ""
+}
+
+disk /home {
+ format = "Pr0n drive: %free"
+}
+
+battery 0 {
+ format = "%status %percentage %remaining (%consumption)"
+ format_down = ""
+ status_chr = " Charging"
+ status_bat = " Battery"
+ status_unk = "? UNK"
+ status_full = " Full"
+ path = "/sys/class/power_supply/BAT%d/uevent"
+ threshold_type = percentage
+ low_threshold = 10
+}
+
+volume master {
+ format = " %volume"
+}