]> git.armaanb.net Git - bin.git/commitdiff
made more extensible
authorArmaan Bhojwani <3fb650a9-b47e-4604-a282-1dd91953b2ee@anonaddy.me>
Fri, 2 Oct 2020 00:33:35 +0000 (20:33 -0400)
committerArmaan Bhojwani <3fb650a9-b47e-4604-a282-1dd91953b2ee@anonaddy.me>
Fri, 2 Oct 2020 00:33:35 +0000 (20:33 -0400)
status

diff --git a/status b/status
index ee0a0c532c82a94f1ad20fd0820351deb416d142..7f3843a45c47d6eb8a635cde27720124b50a0685 100755 (executable)
--- a/status
+++ b/status
@@ -1,4 +1,18 @@
 #!/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`"
+function time_set() {
+  date +%A" "%B" "%e" | "%1l:%M:%S
+}
+
+function power_set() {
+  upower -d | grep percentage | tail -c 4 | head -c 3
+  echo " battery,"
+  upower --dump | grep "time to empty" | tail -c 15
+}
+
+export TIME=$(time_set)
+export POWER=$(power_set)
+
+notify-send -i "clock" "`echo $TIME`" "`echo $POWER`"