mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 18:20:13 +01:00
10 lines
250 B
Bash
10 lines
250 B
Bash
#!/bin/bash
|
|
wifi="$(nmcli r wifi | awk 'FNR = 2 {print $1}')"
|
|
if [ "$wifi" == "enabled" ]; then
|
|
rfkill block all &
|
|
notify-send -t 1000 'airplane mode: active'
|
|
else
|
|
rfkill unblock all &
|
|
notify-send -t 1000 'airplane mode: inactive'
|
|
fi
|