mirror of
https://github.com/CoolnsX/hyprdots.git
synced 2026-03-01 04:10:38 +05:30
8 lines
154 B
Bash
Executable File
8 lines
154 B
Bash
Executable File
#!/bin/bash
|
|
if nmcli radio wifi | grep -q 'enabled' ; then
|
|
nmcli radio wifi off
|
|
else
|
|
nmcli radio wifi on
|
|
fi
|
|
notify-send "wifi $(nmcli radio wifi)" -r 1
|