forked from fr/wpa_tui
1
0
Fork 0

Compare commits

..

1 Commits

@ -10,7 +10,7 @@ networks=$(wpa_cli -i $nic_name list_networks | awk '{print $2}' | tail -n +2)
selected_network=$(echo "$networks" | dmenu -p "Select a network:") selected_network=$(echo "$networks" | dmenu -p "Select a network:")
# Get network ID from network name # Get network ID from network name
network_id=$(wpa_cli -i "$nic_name" get_network "$selected_network" id) network_id=$(wpa_cli -i $nic_name list_networks | grep $selected_network | awk '{print $1}')
# Check if a network was selected # Check if a network was selected
if [ -n "$network_id" ]; then if [ -n "$network_id" ]; then

Loading…
Cancel
Save