agsdotfilesdotshyprlandhyprland-configricerofirofi-configshell-scriptsswwwwallustwaybarwaybar-modulewaybar-themes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
364 B
12 lines
364 B
#!/bin/bash |
|
|
|
dunst_notif="$HOME/.config/dunst/images/bell.png" |
|
|
|
wifi="$(nmcli r wifi | awk 'FNR = 2 {print $1}')" |
|
if [ "$wifi" == "enabled" ]; then |
|
rfkill block all & |
|
notify-send -e -u normal -i "$dunst_notif" -t 1000 'airplane mode: active' |
|
else |
|
rfkill unblock all & |
|
notify-send -e -u normal -i "$dunst_notif" -t 1000 'airplane mode: inactive' |
|
fi
|
|
|