Difference between revisions of "Customized Remote Control Keys"

From MythTV Official Wiki
Jump to: navigation, search
(Corrected formatting)
(Configuring the power button to do DPMS sleep/unsleep)
Line 43: Line 43:
 
From PaulPick in the mythtv mailing list.
 
From PaulPick in the mythtv mailing list.
  
==== Configuring the power button to do DPMS sleep/unsleep ====
+
=== 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.
 
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.

Revision as of 00:03, 22 February 2007

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.

Create a shell script in /usr/local/bin/, called mythpowerbutton.sh:[3]

#!/bin/bash
PROG=mythfrontend
STATUS=`ps -e | grep $PROG | grep -v grep | wc -l | awk '{print $1}'`

if [ `echo $DISPLAY | grep -c ":0"` -ge 1 ]
then
    if [ $STATUS -eq 0 ]
    then
        ( $PROG & )
    else

        if [ -a /tmp/mythpowerbutton-off ]
        then
                touch /tmp/mythpowerbutton-on;
                exit;
        else
                touch /tmp/mythpowerbutton-off;
                sleep 3;
                if [ -a /tmp/mythpowerbutton-on ]
                then
                    rm -rf /tmp/mythpowerbutton-o* && killall $PROG
                fi
                rm -rf /tmp/mythpowerbutton-o*
        fi
        rm -rf /tmp/mythpowerbutton-o*
    fi
fi
exit 0

Make the script executable:

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

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).