dotfiles/common/desktop_environment/hyprland/home_manager/scripts/toggle-airplane-mode.sh
RingOfStorms (Joshua Bell) 69de4ca87b wip waybar and swaync updates
2025-08-24 22:11:54 -05:00

6 lines
117 B
Bash
Executable file

#!/usr/bin/env bash
if [ "$(nmcli radio all)" = "enabled" ]; then
nmcli radio all off
else
nmcli radio all on
fi