You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Warns user if they are running bandwidth-hungry apps (eg, Spotify, Pandora, Soundcloud) with a system dialog box.
# search process list
pgrep -q [RESTRICTED APP NAME]; if [[ $? -eq 0 ]]; then
# display warning if present
osascript -e 'display dialog "Streaming music apps are restricted while connected to this network. Please quit [APPLICATION NAME]" buttons {"I Understand"} default button 1 with icon caution'