Customized Remote Control Keys

From MythTV Official Wiki
Revision as of 04:41, 4 October 2006 by Indulis (talk | contribs) (Customised keys)

Jump to: navigation, search

Remote Control Keys

Remote Control Keys- hints, tips etc

Tips, Hints, and customised keys for remote controls

This page documents remote control tips, hints, and customised remote control keys. These are generally applicable to all remote control setups. For setup steps and customisations specific to a particular type of remote control see ???

Customised keys

Restart Mythtv key

Give the mythtv user permission to restart mythtv via sudo. Edit /etc/sudoers and add the following line:

mythtv    ALL=NOPASSWD: /etc/init.d/mythbackend

If you are running mythtv as a different user you will change mythtv to the user name you are using.

This sets up sudo so that user mythtv can do "sudo /etc/init.d/mythbackend restart".

Add something like this to the lircrc file in your ~/.mythtv directory (or is it the .lircrc file in your home directory for irexec?) e.g. if user fred runs mythtv on your system this would be /home/fred/.mythtv/lircrc:


# Power Off/Exit
begin
prog = irexec
button = OFF
config = /usr/local/bin/my_myth_restart
end

Put the following script into /usr/local/bin/my_myth_restart

#!/bin/sh 

sudo /etc/init.d/mythbackend restart

Then make it executable with chmod a+x /usr/local/bin/my_myth_restart

From PaulPick in the mythtv mailing list.

Configuring the power button to do DPMS sleep/unsleep

DPMS is useful for avoiding burned-in screen. Most people do not want to use DPMS or screensavers because you need to press a key on the keyboard or move the mouse to wake up the screen once DPMS activates. This is painful if a remote control is normally used to control Mythtv. If you configure the power button on the remote to toggle DPMS on or off then you can avoid burned-in screens.

LIRC can be configured to wake up the Mythtv display from DPMS screen blanking. This is done using a script via irexec. The same button can also be used to make the display go to sleep.

First edit the ~/.lircrc file to include the following stanza. A good Howto and MCE .lircrc file for Fedora Core 4 or 5 you can find here [1]:

begin
    prog = irexec
    button = Power
    repeat = 3
    config = /usr/local/bin/mythpowerbutton.sh
    #config = Key Alt-Escape CurrentWindow
end

Note that irexec must be running to make this all work. This can be done via the myth-load.sh script, detailed in the main HOWTO Jarod Wilson has written [2], but could be different for other linux distributions such as Debian or SUSE or Ubuntu.

Creat a shell script in /usr/local/bin/, called mythpowerbutton.sh. Thanks to Yeechang Lee for this script [3]:

#!/bin/sh 

if [ `cat /tmp/mythsleeptogglestatus` == "off" ] 
then 
xset dpms force on; 
echo "on" > /tmp/mythsleeptogglestatus 
else 
sleep 1; 
xset dpms force off; 
echo "off" > /tmp/mythsleeptogglestatus 
fi 

(This script might be able to be modified to not rely on a temp file, it could use xset to list DPMS status and toggle it?)

Make the script executable.

chmod a+x /usr/local/bin/mythpowerbutton.sh

Then

echo $PATH

and make sure /usr/local/bin is in the list. If not you will have to add it to /etc/??? (???- fix this!) and either log out and back in or start up irexec manually to see it function. If there are any other sections in the ~/.lircrc file that are associated with the POWER button, then they should be removed or you may see multiple things happen at once.

Now when the Power button on the remote is pressed, the screen should blank (DPMS on) and with one more press the Mythtv GUI should reappear (DPMS off).

This section originally appeared in MCE Remote.


--indulis 04:48, 3 October 2006 (UTC)