Created
December 26, 2014 13:52
-
-
Save ivoarch/ce1d73f437e383e56453 to your computer and use it in GitHub Desktop.
Брояч на дните до Коледа!!
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/bash | |
# Брояч на дните до Коледа!! | |
# | |
# Зависимости: | |
# - bash | |
# - notify-send | |
# - xsnow | |
TODAY="$(date +%j)" | |
XMAS="$(date -d "25-Dec" +%j)" | |
DAYS_UNTIL="$((XMAS - TODAY))" | |
ICON_PATH="/usr/share/icons/gnome/32x32/emotes/face-angel.png" | |
if [ "$DAYS_UNTIL" -eq 0 ]; then | |
echo "Весела Коледа!" | |
notify-send -t 5000 'Весела Коледа!' &>/dev/null | |
xsnow &>/dev/null | |
else | |
echo "Оставащо време до Коледа" | |
echo "$DAYS_UNTIL дни" | |
notify-send -u critical -i "$ICON_PATH" "Оставащо време до Коледа" \ | |
"$DAYS_UNTIL дни" -t 5000 &>/dev/null | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment