aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAChavali <aryadevchavali1@gmail.com>2020-02-18 00:50:31 +0000
committerAChavali <aryadevchavali1@gmail.com>2020-02-18 00:50:31 +0000
commitd252128448e0bbad4eebb7bce33c54c9de68e9d3 (patch)
tree48879f885d184340109632294d07def3b93124ab
parent8e3a28503ef219ec5d7f6f5b299962e15f6f0f37 (diff)
downloaddotfiles-d252128448e0bbad4eebb7bce33c54c9de68e9d3.tar.gz
dotfiles-d252128448e0bbad4eebb7bce33c54c9de68e9d3.tar.bz2
dotfiles-d252128448e0bbad4eebb7bce33c54c9de68e9d3.zip
+i3 status configuration
Will be symlinked to .i3status.conf
-rw-r--r--files2
-rw-r--r--i3status.conf34
2 files changed, 35 insertions, 1 deletions
diff --git a/files b/files
index 0f02279..f210f18 100644
--- a/files
+++ b/files
@@ -1 +1 @@
-tmux.conf vimrc zshenv doom.d mpd mpv alacritty.yml ncmpcpp
+tmux.conf vimrc zshenv doom.d mpd mpv alacritty.yml ncmpcpp i3status.conf
diff --git a/i3status.conf b/i3status.conf
new file mode 100644
index 0000000..7e6b778
--- /dev/null
+++ b/i3status.conf
@@ -0,0 +1,34 @@
+general {
+ output_format = "i3bar"
+ colors = true
+ interval = 1
+}
+
+order += "wireless wlp2s0"
+order += "disk /home"
+order += "battery 0"
+order += "tztime local"
+
+tztime local {
+ format = "%Y-%m-%d %H:%M:%S"
+}
+
+wireless wlp2s0 {
+ format_up = "Qual:%quality | Connected: %ip@%essid"
+ format_down = ""
+}
+
+disk /home {
+ format = "Pr0n drive: %free"
+}
+
+battery 0 {
+ format = "%status %percentage %emptytime"
+ format_down = "No battery"
+ status_chr = "⚡ CHR"
+ status_bat = " BAT"
+ status_unk = "? UNK"
+ status_full = "☻ FULL"
+ path = "/sys/class/power_supply/BAT%d/uevent"
+ low_threshold = 10
+}