1
2
3
4
5
6
7
8
9
10
11
12 | #! /bin/sh
# this file is: "/etc/pm/sleep.d/iwlwifi_suspend"
# make it executable with: "sudo chmod +x /etc/pm/sleep.d/iwlwifi_suspend"
case $1 in
suspend|suspend_hybrid|hibernate)
modprobe -r iwlwifi
;;
resume|thaw)
modprobe iwlwifi
;;
esac
|