-
This is a numbered list.
-
I'm going to include a fenced code block as part of this bullet:
Code More Code
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 | |
if [ "$#" -ne 1 ]; then | |
echo "usage: timey <number of minutes> &"; | |
exit; | |
fi | |
SECONDS=$(($1 * 60)) | |
echo "Timey set for $1 minutes, which is $SECONDS seconds" | |
sleep $SECONDS | |
open -a "Google Chrome.app" https://media.giphy.com/media/yWh7b6fWA5rJm/giphy.gif |