10 lines
272 B
Bash
10 lines
272 B
Bash
|
|
#!/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
|