Created
May 12, 2017 14:56
-
-
Save aipi/60a11f8a470b0b57cbb09ad148211b8d to your computer and use it in GitHub Desktop.
Script to notify massage time
This file contains 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 | |
while : | |
do | |
Time=`date +%r` | |
Date=`date +"%d-%m-%Y"` | |
if [ $Date == '11-05-2017' ] && [ $Time == '15:25:00' ]; then | |
notify-send -i /home/aipi/Pictures/image.jpg 'MASSAGEM' 'Partiu ficar suave?'; | |
fi | |
sleep 1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment