FollieHiyuki-dotfiles/system/etc/NetworkManager/dispatcher.d/70-wifi-wired-exclusive.sh

22 lines
332 B
Bash
Raw Normal View History

2021-02-13 11:28:59 -05:00
#!/bin/bash
export LC_ALL=C
enable_disable_wifi ()
{
result=$(nmcli dev | grep "ethernet" | grep -w "connected")
if [ -n "$result" ]; then
nmcli radio wifi off
else
nmcli radio wifi on
fi
}
if [ "$2" = "up" ]; then
enable_disable_wifi
fi
if [ "$2" = "down" ]; then
enable_disable_wifi
fi