Regenerated

This commit is contained in:
2026-03-23 19:50:22 +00:00
parent 2654f48628
commit fd05613d2f
8419 changed files with 31 additions and 579 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/run/current-system/sw/bin/bash
# Get a list of available Wi-Fi networks
networks=$(nmcli -t -f SSID device wifi list)
# Show the list using wofi with dmenu mode
selected=$(echo "$networks" | wofi --show dmenu --width=300 --height=500 --prompt="Select a network")
# Connect to the selected network with the --ask option
if [ -n "$selected" ]; then
nmcli --ask device wifi connect "$selected"
fi