Skip to content

Instantly share code, notes, and snippets.

@Adadov
Created January 20, 2017 00:19
Show Gist options
  • Save Adadov/4a57c611a4d43c601f36a93897b183fb to your computer and use it in GitHub Desktop.
Save Adadov/4a57c611a4d43c601f36a93897b183fb to your computer and use it in GitHub Desktop.
#!/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