@atomizasser you can do the following as a quick fix for wifi on resume
- Go to \\Configfiles\ and make a folder sleep.d
- Then in that folder create a file named 01-wifi-resume.power with this content:
#!/bin/sh
case "$1" in
pre)
# <do something on suspend>
;;
post)
# <do something on resume>
connmanctl disable wifi
sleep 5
connmanctl enable wifi
;;
esac