2015-03-30, 22:52
(2015-03-30, 22:46)kcallawa Wrote: Thanks Matt for the quick reply. That sounds like it's above my knowledge level so I guess I will just buy an HDMI switch and see how that works out.
it's really not that hard, you can create the files using Notepad++ (save with Unix-style line endings) and copy it via SMB to the ChromeBox's configfile directory.
Autostart.sh:
Code:
#!/bin/sh
xrandr --output HDMI1 --off;
sleep 10;
xrandr --output HDMI1 --auto;
suspend/resume: download script in wiki, modify to read:
Code:
#!/bin/sh
case $1 in
pre)
xrandr --output HDMI1 --off;
;;
post)
sleep 10;
xrandr --output HDMI1 --auto;
;;
esac