Skip to content

Instantly share code, notes, and snippets.

@Luit
Created July 19, 2017 09:36
Show Gist options
  • Save Luit/9c1b9a26261faebf1e8627bde2e0580d to your computer and use it in GitHub Desktop.
Save Luit/9c1b9a26261faebf1e8627bde2e0580d to your computer and use it in GitHub Desktop.
/etc/NetworkManager/dispatcher.d/99-wifi-auto-switch.sh
#!/bin/bash
if [ "${1:0:2}" = "en" ]; then
case "$2" in
up)
nmcli r wifi off
;;
down)
nmcli r wifi on
;;
esac
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment