Skip to content

Instantly share code, notes, and snippets.

View fakeowl1's full-sized avatar
🎯
Focusing

fakeowl fakeowl1

🎯
Focusing
  • Ukraine
  • 14:06 (UTC +03:00)
View GitHub Profile
@fakeowl1
fakeowl1 / create-hotspot.md
Last active April 12, 2025 17:33
Create Wi-FI Hotspot

Create Wi-fi hotspot if Wi-Fi connection doesn't exist

auto-wifi-hotspot

#!/bin/bash

check_wifi_conn=$(nmcli conn show --active | grep wifi)

if [ ! -z "$check_wifi_conn" ]; then
  echo "Wifi connection exists"