Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kid1412621/2c6ff9347d34929b987e9d8e31d16ecb to your computer and use it in GitHub Desktop.
Save kid1412621/2c6ff9347d34929b987e9d8e31d16ecb to your computer and use it in GitHub Desktop.
MacOS network location switch based on Wifi SSID
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.user.wifi-location-switch</string>
<key>ProgramArguments</key>
<array>
<string>/Users/<REPLACE WITH YOUR USERNAME>/wifi-location-switch.sh</string>
</array>
<key>WatchPaths</key>
<array>
<string>/Library/Preferences/SystemConfiguration/</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>

Use shell script and launch agent to change macOS network location based on Wifi SSID.

#!/bin/zsh
# Define Wi-Fi and Locations
SPECIAL_WIFI="Specific Wifi SSID"
SPECIAL_LOCATION="TargetLocation"
DEFAULT_LOCATION="Automatic"
# Get the current Wi-Fi network
CURRENT_WIFI=$(ipconfig getsummary en0 | awk -F ' SSID : ' '/ SSID : / {print $2}')
CURRENT_LOCATION=$(scselect | awk '/\*/ {print $2}')
if [[ "$CURRENT_WIFI" == "$SPECIAL_WIFI" && "$CURRENT_LOCATION" != "$SPECIAL_LOCATION" ]]; then
echo "Switching to $SPECIAL_LOCATION"
scselect "$SPECIAL_LOCATION"
elif [[ "$CURRENT_WIFI" != "$SPECIAL_WIFI" && "$CURRENT_LOCATION" != "$DEFAULT_LOCATION" ]]; then
echo "Switching to $DEFAULT_LOCATION"
scselect "$DEFAULT_LOCATION"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment