dotfiles/flakes/hyprland/home_manager/scripts/toggle-airplane-mode.sh
2025-10-20 20:45:26 -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