diff options
Diffstat (limited to 'scripts/util/netsel.sh')
-rwxr-xr-x | scripts/util/netsel.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/util/netsel.sh b/scripts/util/netsel.sh new file mode 100755 index 0000000..b1b2a88 --- /dev/null +++ b/scripts/util/netsel.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +BSSID=$(printf "%s" "$(nmcli d wifi | fzf --height 40%)" | sed 's/\*//' | awk '{print $1}') +#read -sp "Enter password for $BSSID: " PASSWORD + +nmcli d wifi connect $BSSID #password "$PASSWORD" |