mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2025-02-22 08:40:36 +01:00
iwd-wifi.bash: simple script for scanning and how to connect to network
This commit is contained in:
parent
09c8440738
commit
3faa905345
19
bash/iwd-wifi.bash
Executable file
19
bash/iwd-wifi.bash
Executable file
@ -0,0 +1,19 @@
|
||||
#!/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
|
||||
echo "% sudo iwctl --passphrase=\$KEY station $WIFIDEVICE connect \$SSID"
|
||||
|
||||
# For permanent connections https://gitea.blesmrt.net/mikaela/shell-things/src/branch/master/var/lib/iwd
|
Loading…
x
Reference in New Issue
Block a user