Skip to content

Instantly share code, notes, and snippets.

@aerosol
Created April 25, 2018 12:29
Show Gist options
  • Select an option

  • Save aerosol/94eee670e6ce51a51d22ff0f40b231e8 to your computer and use it in GitHub Desktop.

Select an option

Save aerosol/94eee670e6ce51a51d22ff0f40b231e8 to your computer and use it in GitHub Desktop.
#!/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