10 lines
272 B
Bash
Executable File
10 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# archypr: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 ]] && ! archypr-hw-external-monitors; then
|
|
rm -f "$TOGGLE"
|
|
fi
|