1
0
mirror of https://github.com/balkian/dotfiles.git synced 2025-08-23 08:02:19 +00:00

Securing gitconfig, adding nm fix

This commit is contained in:
J. Fernando Sánchez
2015-03-15 23:29:01 +01:00
parent 55a553e490
commit d7923606ef
3 changed files with 19 additions and 2 deletions

11
not_dots/network-manager-resume Executable file
View File

@@ -0,0 +1,11 @@
#!/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