启动时自动检测并输出至 S-Video

启动时自动检测并输出至 S-Video

在查阅了互联网后,我开发了一个脚本,可以检查我的 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

现在我该如何设置它,以便在启动计算机时在正确的时间运行,以便在没有连接显示器时选择我的电视。

相关内容