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