MythTV
Adding an eject button for optical disks
In Mythtv, add an eject link to your cd/dvd and optical disk menu… < button> DVD_EJECT Eject DVD EXEC eject < /button> by adding this to optical_menu.xml and dvdmenu.xml
Scripts and tidbits related to my homebrew PVR setup.
In Mythtv, add an eject link to your cd/dvd and optical disk menu… < button> DVD_EJECT Eject DVD EXEC eject < /button> by adding this to optical_menu.xml and dvdmenu.xml
In mythtv-setup under ‘Input connections’ (or something) type /home/mythtv/.mythtv/sendkeys.sh Then create this sendkeys.sh script in the directory mentioned above. #!/bin/sh for digit in $(echo $1 | sed -e ‘s/./& /g’); do red_eye /dev/ttyS0 $digit 2 Read more…