mirror of
https://github.com/CoolnsX/hyprdots.git
synced 2025-12-20 23:35:23 +05:30
10 lines
272 B
Bash
Executable File
10 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
if nmcli radio wifi | grep -q 'enabled' ; then
|
|
nmcli radio wifi off
|
|
wifi_icon="offline"
|
|
else
|
|
nmcli radio wifi on
|
|
wifi_icon="acquiring"
|
|
fi
|
|
notify-send -i "/usr/share/icons/Papirus/16x16/panel/network-wireless-$wifi_icon.svg" "wifi $(nmcli radio wifi)" -r 1
|