aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmodules/daypercentage13
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/daypercentage b/modules/daypercentage
new file mode 100755
index 0000000..0b7b426
--- /dev/null
+++ b/modules/daypercentage
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+# Prints the percentage of the day that has been completed
+
+PREFIX=' '
+
+get_daypercentage()
+{
+ MINUTES="$[$(date +%R | cut -d ':' -f1) * 60 + $(date +%R | cut -d ':' -f2) ]"
+ echo "$PREFIX$(echo $[ $MINUTES * 100 / 1440 ] | sed 's/\..*//g')%"
+}
+
+get_daypercentage