Files
arthur-os/bin/omarchy-hw-recover-internal-monitor
2026-04-28 12:03:46 -04:00

10 lines
272 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Clear the internal-monitor-disable toggle if no external display is connected.
TOGGLE="$HOME/.local/state/omarchy/toggles/hypr/internal-monitor-disable.conf"
if [[ -f $TOGGLE ]] && ! omarchy-hw-external-monitors; then
rm -f "$TOGGLE"
fi