mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
10 lines
345 B
Bash
Executable File
10 lines
345 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Re-enable the internal display if it was toggled off and no external monitors
|
|
# are currently active (e.g. external got disconnected live, during sleep, or
|
|
# wasn't present on boot).
|
|
|
|
if omarchy-hyprland-monitors-none && omarchy-hyprland-toggle-enabled internal-monitor-disable; then
|
|
omarchy-hyprland-monitor-internal-enable
|
|
fi
|