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