Use shell script and launch agent to change macOS network location based on Wifi SSID.
Last active
March 16, 2025 16:50
-
-
Save kid1412621/2c6ff9347d34929b987e9d8e31d16ecb to your computer and use it in GitHub Desktop.
MacOS network location switch based on Wifi SSID
This file contains 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
<?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> |
This file contains 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
#!/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