summaryrefslogtreecommitdiff
path: root/scripts/wifi-menu-custom
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/wifi-menu-custom')
-rwxr-xr-xscripts/wifi-menu-custom22
1 files changed, 0 insertions, 22 deletions
diff --git a/scripts/wifi-menu-custom b/scripts/wifi-menu-custom
deleted file mode 100755
index db2fced..0000000
--- a/scripts/wifi-menu-custom
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-choice=$(echo -e "up\ndown\nconnect" | dmenu -p "Do you wish to connect to a wi-fi or disconnect?:")
-
-case $choice in
- "connect")
- bssid=$(nmcli device wifi list | sed -n '1!p' | cut -b 9- | dmenu -p "Select Wifi  " -l 20 | cut -d' ' -f1)
- pass=$(echo "" | dmenu -p "Enter Pswd  ")
- nmcli device wifi $choice $bssid password $pass;;
- "up" | "down")
- ssid=$(nmcli device wifi list | sed -n '1!p' | cut -b 9- | dmenu -p "Select Wifi  " -l 20 | cut -d' ' -f3)
- nmcli c $choice $ssid;;
-esac
-wifistatus=$(nmcli d | grep wlan0 | cut -d ' ' -f10)
-case $wifistatus in
- "connected")
- nmcli con down eth0 "Wired connection 1";;
- "disconnected")
- nmcli con up eth0 "Wired connection 1";;
-esac
-ethstatus=$(nmcli d | grep eth0 | cut -d ' ' -f7)
-notify-send "Ethernet connection is $ethstatus"