Based on the discussion on that thread I did the following workaround. Put the following script in /etc/pm/sleep.d and make it executable. I have name the script as "wakeupnet.sh".
#!/bin/bash
case "$1" in
thaw|resume)
service network-manager restart
;;
*)
;;
esac
exit $?
1 comment:
Its so helpful for all the programmers who want to disable their WiFi by sending just single command to the system via this programming.I like the creative mind behind this program.
Post a Comment