scripts/bash/iwd-wifi.bash

23 lines
806 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# A simple script to list networks iwd detects and give instruction for
# connecting to it. Heavily inspired by `man iwctl`
# So the terminal is empty for the table
clear
# `iwctl device list` gives the WiFi adapters
WIFIDEVICE=wlan0
# Scan and list results
iwctl station $WIFIDEVICE scan
iwctl station $WIFIDEVICE get-networks
# Print the command to connect. Replace $KEY and $SSID with the actual ones
2023-01-21 19:45:18 +01:00
# The manpage says: iwctl --passphrase=PASSPHRASE station DEVICE connect SSID
# but considering it says -P is shorthand for passphrase, I think this should
# work too while being more logical in my opinion.
echo "% sudo iwctl station $WIFIDEVICE connect \$SSID -P \$KEY"
# For permanent connections https://gitea.blesmrt.net/mikaela/shell-things/src/branch/master/var/lib/iwd