Skip to content

Instantly share code, notes, and snippets.

@aipi
Created May 12, 2017 14:56
Show Gist options
  • Save aipi/60a11f8a470b0b57cbb09ad148211b8d to your computer and use it in GitHub Desktop.
Save aipi/60a11f8a470b0b57cbb09ad148211b8d to your computer and use it in GitHub Desktop.
Script to notify massage time
#!/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