Files
dotfilesv2/hypr/scripts/disable_laptop_screen.sh
2026-03-28 16:48:16 +00:00

8 lines
218 B
Bash

#!/bin/bash
# Check if HDMI-A-1 is present in hyprctl monitors output
if hyprctl monitors | grep -q "HDMI-A-1"; then
hyprctl keyword monitor eDP-1,disable
else
echo "HDMI-A-1 not detected. No action taken."
fi