dimon2242

Fix for ubuntu wifi arrow icon with fix freezes battery perc

Mar 17th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #!/bin/sh
  2. case $1/$2 in
  3. pre/*)
  4. echo "Going to $2..."
  5. # Place your pre suspend commands here, or `exit 0` if no pre suspend action required
  6. ;;
  7. post/*)
  8. echo "Waking up from $2..."
  9. systemctl restart NetworkManager.service
  10. pkill -f indicator-power-service
  11. ;;
  12. esac
Add Comment
Please, Sign In to add comment