Created
April 25, 2018 12:29
-
-
Save aerosol/94eee670e6ce51a51d22ff0f40b231e8 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
| #!/usr/bin/env bash | |
| platform="$(uname -s)" | |
| case "${platform}" in | |
| Linux*) player=mpv;; | |
| Darwin*) player=afplay;; | |
| *) echo "Platform unsupported" && exit 1 | |
| esac | |
| rate=`curl -s 'https://kantor.aliorbank.pl/chart/EUR/json' | jq '.actualBuyRate' | sed "s/\"//g"` | |
| case $rate in "4,20"*) | |
| $player media/gilfoyle.mp3 & | |
| esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment