nix-config/modules/wm/hyprland/config/eww/scripts/airplane_mode.sh

7 lines
105 B
Bash

#!/bin/sh
status=$(nmcli n)
if [[ "$status" == "enabled" ]]; then
nmcli n off
else
nmcli n on
fi