Skip to content

Instantly share code, notes, and snippets.

@EricTendian
Last active August 29, 2015 14:09
Show Gist options
  • Save EricTendian/c7c65d8f0cf44b081888 to your computer and use it in GitHub Desktop.
Save EricTendian/c7c65d8f0cf44b081888 to your computer and use it in GitHub Desktop.

Revisions

  1. EricTendian revised this gist Nov 15, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion playzone.sh
    Original file line number Diff line number Diff line change
    @@ -50,6 +50,6 @@ case $1 in
    omxplayer http://relay.broadcastify.com:80/539709865.mp3
    ;;
    *)
    echo 'USAGE: ./playzone.sh zonename; e.g. ./playzone.sh z8'
    echo "USAGE: $0 zonename; e.g. $0 z8"
    ;;
    esac
  2. EricTendian created this gist Nov 15, 2014.
    55 changes: 55 additions & 0 deletions playzone.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,55 @@
    #!/bin/bash

    case $1 in
    'Chicago Police Department'|'cpd')
    omxplayer http://relay.broadcastify.com:80/il_chicago_police2.mp3
    ;;
    'Chicago Police - Citywide 1'|'cw1')
    omxplayer http://relay.broadcastify.com:80/128024765.mp3
    ;;
    'Chicago Police - Citywide 6'|'cw6')
    omxplayer http://relay.broadcastify.com:80/299858349.mp3
    ;;
    'Chicago Police Zone 1 - Districts 16 and 17'|'z1')
    omxplayer http://relay.broadcastify.com:80/51174769.mp3
    ;;
    'Chicago Police Zone 2 - District 19'|'z2')
    omxplayer http://relay.broadcastify.com:80/779125459.mp3
    ;;
    'Chicago Police Zone 3 - Districts 12 and 14'|'z3')
    omxplayer http://relay.broadcastify.com:80/29449913.mp3
    ;;
    'Chicago Police Zone 4 - Districts 1 and 18'|'z4')
    omxplayer http://relay.broadcastify.com:80/527466356.mp3
    ;;
    'Chicago Police Zone 5 - District 2'|'z5')
    omxplayer http://relay.broadcastify.com:80/464465203.mp3
    ;;
    'Chicago Police Zone 6 - Districts 7 and 8'|'z6')
    omxplayer http://relay.broadcastify.com:80/877430000.mp3
    ;;
    'Chicago Police Zone 7 - District 3'|'z7')
    omxplayer http://relay.broadcastify.com:80/937409687.mp3
    ;;
    'Chicago Police Zone 8 - Districts 4 and 6'|'z8')
    omxplayer http://relay.broadcastify.com:80/267563787.mp3
    ;;
    'Chicago Police Zone 9 - Districts 5 and 22'|'z9')
    omxplayer http://relay.broadcastify.com:80/258823627.mp3
    ;;
    'Chicago Police Zone 10 - Districts 10 and 11'|'z10')
    omxplayer http://relay.broadcastify.com:80/716183595.mp3
    ;;
    'Chicago Police Zone 11 - Districts 20 and 24'|'z11')
    omxplayer http://relay.broadcastify.com:80/243172971.mp3
    ;;
    'Chicago Police Zone 12 - Districts 15 and 25'|'z12')
    omxplayer http://relay.broadcastify.com:80/il_chicago_police.mp3
    ;;
    'Chicago Police Zone 13 - District 9'|'z13')
    omxplayer http://relay.broadcastify.com:80/539709865.mp3
    ;;
    *)
    echo 'USAGE: ./playzone.sh zonename; e.g. ./playzone.sh z8'
    ;;
    esac