mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-06 01:19:23 +01:00
23 lines
806 B
Bash
Executable File
23 lines
806 B
Bash
Executable File
#!/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
|
|
# 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
|