Show pageBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Script snippets ====== ===== Switch Monitor ===== <file bash switch-monitors.sh> CURRENT_OUTPUT=`ddccontrol -r 0x60 dev:/dev/i2c-5 | sed -n 's|.*0x60: +/\([0-9]\+\)/15.*|\1|p'` if [ $CURRENT_OUTPUT = 3 ] then # switch to first input ddccontrol -r 0x60 -w 15 dev:/dev/i2c-5 else # switch to second input ddccontrol -r 0x60 -w 3 dev:/dev/i2c-5 fi </file> Last modified: 2024-07-05 14:31