first commit

This commit is contained in:
Your Name
2026-02-07 20:22:48 +08:00
commit 1b9711d5e4
2270 changed files with 805872 additions and 0 deletions

15
external/packages/bsp/rockchip/hdmi-hotplug vendored Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
USER="$(who | grep :0\) | cut -f 1 -d ' ')"
export XAUTHORITY=/home/$USER/.Xauthority
export DISPLAY=:0
HDMI_STATUS="$(cat /sys/class/drm/card0-HDMI-A-1/status)"
# Check to see if HDMI connected or not and toggle if change
if [ "${HDMI_STATUS}" = connected ]; then
xrandr
xrandr --output HDMI-1 --auto
else
xrandr --output HDMI-1 --off
fi
exit 0