]> git.armaanb.net Git - bin.git/blobdiff - status
add git-check
[bin.git] / status
diff --git a/status b/status
index 7f3843a45c47d6eb8a635cde27720124b50a0685..292d714ecf49afd90b20ba21c0085c7bb9eaa1e3 100755 (executable)
--- a/status
+++ b/status
@@ -1,18 +1,17 @@
-#!/usr/bin/env sh
+#!/usr/bin/env bash
+
 function time_set() {
-  date +%A" "%B" "%e" | "%1l:%M:%S
+  date +%A", "%b" "%e", "%r
 }
 
 function power_set() {
-  upower -d | grep percentage | tail -c 4 | head -c 3
-  echo " battery,"
-  upower --dump | grep "time to empty" | tail -c 15
+  upower -d | grep percentage | tail -c 5
+  if [[ $(upower -d | grep "discharging") ]]; then
+    echo " battery,"
+    echo $(upower -d | grep "time to empty" | tail -c 15) remaining
+  else
+    echo " battery"
+  fi
 }
 
-export TIME=$(time_set)
-export POWER=$(power_set)
-
-notify-send -i "clock" "`echo $TIME`" "`echo $POWER`"
-
-
+notify-send -i "clock" "`echo $(time_set)`" "`echo $(power_set)`"