인터넷을 검색한 후 VGA 포트에 모니터가 연결되어 있는지 확인하고 그렇지 않은 경우 S-Video 포트로 전환할 수 있는 스크립트를 개발했습니다.
#!/bin/bash
# if no vga then Enable S-Video at 800x600
if [$(xrandr -q| grep "VGA-0 disconnected") == ""]
then
# vga is connected do nothing
else
# no vga switch to s-video
xrandr
xrandr --addmode S-video 800x600
xrandr --output S-video --set "tv standard" ntsc
xrandr --output S-video --set "load detection" 1
xrandr --output S-video --right-of VGA-0 --mode 800x600
sleep 10
xrandr
fi
이제 연결된 모니터가 없을 때 TV를 선택하도록 컴퓨터를 부팅할 때 올바른 시간에 실행되도록 어떻게 설정해야 합니까?