Skip to content

Instantly share code, notes, and snippets.

@jgeboski
Created September 3, 2015 04:27
Show Gist options
  • Save jgeboski/8fb5a4f126dfd6aaeefb to your computer and use it in GitHub Desktop.
Save jgeboski/8fb5a4f126dfd6aaeefb to your computer and use it in GitHub Desktop.
NetworkManager dispatcher for disabling WNIC power management
#!/bin/bash
INTERFACE="${1}"
ACTION="${2}"
if [[ "${INTERFACE}" =~ ^wl.+ ]]; then
case "${ACTION}" in
up) iw dev "${INTERFACE}" set power_save off ;;
down) iw dev "${INTERFACE}" set power_save on ;;
esac
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment