'' set -euo pipefail rfkill_soft=$(rfkill -ro soft | tail -n +2 | sort -u) rfkill toggle all if [[ $rfkill_soft == "unblocked" ]]; then notify-send --urgency=critical "Aeroplane mode ACTIVATED" elif [[ $rfkill_soft == "blocked" ]]; then notify-send --urgency=critical "Aeroplane mode DEACTIVATED" else notify-send --urgency=critical "WARN: RFKill was in inconsistent state. Aeroplane mode ACTIVATED" fi ''