Sugiro que você tente:
gksudo gedit /usr/lib/pm-utils/sleep.d/99restartNM
Use nano ou kate ou leafpad se você não tiver o editor de texto gedit.
Escreva o seguinte arquivo:
#!/bin/bash
case "$1" in
hibernate)
# put commands to run on hibernation here
;;
thaw)
# put commands to run when returning from hibernation here
;;
suspend)
# put commands to run on suspend here
;;
resume)
# put commands to run when returning from suspension
service network-manager restart
;;
esac
Revise cuidadosamente e dê atenção especial ao espaçamento e pontuação; salve e feche o editor de texto. Reinicie e teste.