9 lines
161 B
Bash
Executable File
9 lines
161 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
while [ 1 ]; do
|
|
if [[ $(hyprctl monitors) = *HEADLESS* ]]; then
|
|
~/.config/hypr/scripts/displays.sh eDP-1 ''
|
|
fi
|
|
sleep 1
|
|
done
|