Enable wifi after suspend-resume
Appearance
To enable wifi after resume, when it is turned off
Create a systemd service “root-resume.service” in /etc/systemd/system with content:
[Unit] Description=Local system resume actions After=suspend.target [Service] Type=simple ExecStart=/usr/bin/nmcli radio wifi on [Install] WantedBy=suspend.target
and enable the newly created service:
# systemctl enable root-resume.service