Last active
January 10, 2019 11:11
-
-
Save Kannanravindran/854f8e872b409d0480751e1aeb6abea4 to your computer and use it in GitHub Desktop.
Bit bar plugin to monitor how much time we got left
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# add this to your bitbar directory | |
# don't forget to chmod +x | |
# Enter your age here for life percentage | |
dob="0" | |
# width and characters for the progress bars | |
# feel free to configure these | |
width=30 | |
fill_char="█" | |
empty_char="▁" | |
# bitbar parameters | |
# use a monospace font if you want the percentages to be right-aligned | |
bitbar="size=10 color=#ffffff font='Fantasque Sans Mono'" | |
## See Font Book.app's Fixed Width collection for what you can use | |
## you can also download this font for free and drag it into Font Book.app. | |
## https://github.com/belluzj/fantasque-sans/releases/latest | |
# all of the calculations are done using unix timestamps from date(1) | |
# mac uses bsd's date(1) | |
# whenever we set a date, make sure to add -j so it doesn't change the clock | |
# we use `date -j %m%d0000 +%s` to get the start timestamp, %Y is implied | |
# then we use `date -jr $start -v +1y/+1m/+1d +%s` to get the ending timestamp | |
# then we calculate the percentage with (now - start) / (end - start) | |
now=$(date +%s) | |
Y=$(date +%Y) | |
Y_start=$(date -j 01010000 +%s) | |
Y_end=$(date -jr $Y_start -v +1y +%s) | |
Y_progress=$( | |
echo "($now - $Y_start) * 100 / ($Y_end - $Y_start)" | bc -l | |
) | |
m=$(date +%m) | |
m_start=$(date -j $(date +%m)010000 +%s) | |
m_end=$(date -jr $m_start -v +1m +%s) | |
m_progress=$( | |
echo "($now - $m_start) * 100 / ($m_end - $m_start)" | bc -l | |
) | |
d=$(date +%d) | |
d_start=$(date -j $(date +%m%d)0000 +%s) | |
d_end=$(date -jr $d_start -v +1d +%s) | |
d_progress=$( | |
echo "($now - $d_start) * 100 / ($d_end - $d_start)" | bc -l | |
) | |
d_work_progress=$( | |
echo "($now - $d_start - 25200) * 100 / ($d_end - $d_start - 28800)" | bc -l | |
) | |
# padding to align progress bar and text | |
# Y-m-d = 10 + 2 spaces + 2 digits + percent sign = 15 | |
# progress bar width - 15 = padding | |
padding=$(printf %$((width-15))s "") | |
# round function | |
round() { printf %.0f "$1"; } | |
# progress bar display function | |
progress() { | |
filled=$(round $(echo "$1 * $width / 100" | bc -l)) | |
empty=$((width - filled)) | |
# repeat the characters using printf | |
printf "$fill_char%0.s" $(seq $filled) | |
printf "$empty_char%0.s" $(seq $empty) | |
} | |
age=`date +%Y`-$dob | |
expectancy=75 | |
life_progress=$( | |
echo "($age) * 100 / ($expectancy)" | bc -l | |
) | |
# output to bitbar | |
# first line | |
echo "Today: $(round $d_work_progress)% | $bitbar size=13" | |
echo --- | |
# day + progress bar | |
echo "Today (effective) $padding $(round $d_work_progress)% | $bitbar" | |
echo "$(progress $d_work_progress) | $bitbar" | |
echo "Today (total) $padding $(round $d_progress)% | $bitbar" | |
echo "$(progress $d_progress) | $bitbar" | |
echo --- | |
# month + progress bar | |
echo "Month $padding $(round $m_progress)% | $bitbar" | |
echo "$(progress $m_progress) | $bitbar" | |
echo --- | |
# year + progress bar | |
echo "Year $padding $(round $Y_progress)% | $bitbar" | |
echo "$(progress $Y_progress) | $bitbar" | |
# life + progress bar | |
if [ "$dob" -gt 0 ] | |
then | |
echo --- | |
echo "Life $padding $(round $life_progress)% | $bitbar" | |
echo "$(progress $life_progress) | $bitbar" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment