mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-05 05:01:43 +00:00
12 lines
228 B
Plaintext
12 lines
228 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# This script gets NetworkManager out of suspend.
|
||
|
case $1 in
|
||
|
suspend|suspend_hybrid|hibernate)
|
||
|
# No need to do anything here.
|
||
|
;;
|
||
|
resume|thaw)
|
||
|
nmcli nm sleep false
|
||
|
;;
|
||
|
esac
|