mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-05 17:19:21 +01:00
14 lines
341 B
Bash
14 lines
341 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Arguments: SSID and WPA2 (3 untested) passphrase
|
||
|
|
||
|
# Outputs QR code to terminal
|
||
|
qrencode -t utf8 "WIFI:T:WPA;S:$1;P:$2;;"
|
||
|
# Stores QR code as SSID.png, -s doubles pixel size from default 3
|
||
|
qrencode -s 6 -o $1.png "WIFI:T:WPA;S:$1;P:$2;;"
|
||
|
|
||
|
# Prints details
|
||
|
echo "SSID: $1"
|
||
|
echo "Passphrase: $2"
|
||
|
echo "Stored as $1.png"
|