mirror of
https://github.com/CoolnsX/hyprdots.git
synced 2025-12-20 07:15:23 +05:30
10 lines
322 B
Bash
Executable File
10 lines
322 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 -e -i "/usr/share/icons/Papirus/16x16/panel/network-wireless-$wifi_icon.svg" "wifi $(nmcli radio wifi)" -h "string:x-canonical-private-synchronous:${0##*/}"
|