Corrigir WiFi após suspender / retomar no Ubuntu

Adicionar / editar para /etc/pm/sleep.d/10_resume_wifi

#!/bin/sh

case "${1}" in
resume
|thaw)
nmcli r wifi off
&& nmcli r wifi on;
esac