]> git.armaanb.net Git - bin.git/blobdiff - status
Autostart: Starts important things for a WM
[bin.git] / status
diff --git a/status b/status
index ee0a0c532c82a94f1ad20fd0820351deb416d142..e5e5138fbdd3f449cedf39237dc6d725f39ae318 100755 (executable)
--- a/status
+++ b/status
@@ -1,4 +1,23 @@
-#!/usr/bin/env sh
-notify-send -i "clock" "`date +%A" "%B" "%e" | "%1l:%M:%S `" "`upower -d | grep percentage | tail -c 4 | head -c 3 && echo " battery" && upower --dump | grep "time to empty" | tail -c 11 | head -c 11`"
+#!/usr/bin/env bash
+# Sends a notification with the time, battery level, and volume
 
+time_set() {
+  date "+%A %Y-%m-%d, %r"
+}
 
+power_set() {
+  echo -n "$(upower -d | grep percentage | tail -c 5)"
+  if [[ $(upower -d | grep "discharging") ]]; then
+    echo -n " battery,"
+    echo "$(upower -d | grep "time to empty" | tail -c 15) remaining"
+  else
+    echo -n " battery,"
+    echo "$(upower -d | grep "time to full" | tail -c 15) until charged"
+  fi
+}
+
+volume_set() {
+  echo "$(amixer sget Master | tail -n 1 | tail -c +21)"
+}
+
+notify-send "$(time_set)" "$(power_set)\n$(volume_set)"