How to switch from HDMI to composite on XBMC exit
|
29th Jan, 2013, 07:48 PM
Post: #6
|
|||
|
|||
RE: How to switch from HDMI to composite on XBMC exit
A few improvements:
Code: if [ $(($(tvservice -s | grep -c "HDMI off"))) -eq 1 ]; Code: if [ $(tvservice -s | grep -c "HDMI off") -eq 1 ]; That while loop is totally unnecessary. Just run your script on start and stop. And especially, without a sleep it draws a lot of system resources. Also notice that we don't add fbset to sudoers anymore in future versions. So, readd it after the next update to Alpha 5. The same counts for the XBMC init script. That has changed quite a bit, so make sure to make a backup. pilight - modular domotica solution
|
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
How to switch from HDMI to composite on XBMC exit - udrnovsek - 25th Jan, 2013, 10:27 AM
RE: How to switch from HDMI to composite on XBMC exit - CurlyMo - 25th Jan, 2013, 10:39 AM
RE: How to switch from HDMI to composite on XBMC exit - rikardo1979 - 25th Jan, 2013, 06:15 PM
RE: How to switch from HDMI to composite on XBMC exit - udrnovsek - 29th Jan, 2013, 07:47 AM
RE: How to switch from HDMI to composite on XBMC exit - udrnovsek - 29th Jan, 2013, 12:28 PM
RE: How to switch from HDMI to composite on XBMC exit - CurlyMo - 29th Jan, 2013 07:48 PM
RE: How to switch from HDMI to composite on XBMC exit - udrnovsek - 29th Jan, 2013, 09:25 PM
RE: How to switch from HDMI to composite on XBMC exit - CurlyMo - 29th Jan, 2013, 09:42 PM
|