Created
January 20, 2017 00:19
-
-
Save Adadov/4a57c611a4d43c601f36a93897b183fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Ce script pour NetworkManager permet d'éteindre le wifi quand un cable est branché et inversement | |
# Copyright 2016-2017 David OLIVIER <[email protected]> | |
# | |
export LC_ALL=C | |
TMP=$(nmcli -t --fields type,state dev | grep -E "ethernet:connected") | |
if $? -eq 0; then | |
nmcli radio wifi off | |
else | |
nmcli radio wifi on | |
fi | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment