LircConfig-MythTV+mplayer: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Drew moved page Lirc Config - MythTV / mplayer to LircConfig-MythTV+mplayer without leaving a redirect: remove forward slash in title) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
==Buttons== | ==Buttons== | ||
Arranged this way because Comcast Aux remote code doesn't support buttons: up, down, left, right, ok/select, page up/down, guide, menu, info, exit, fav, or help. | |||
*2,5,4,6 up,down,left,right | *2,5,4,6 up,down,left,right | ||
*1 Ok / Select / Enter | *1 Ok / Select / Enter | ||
Line 11: | Line 10: | ||
==~/.mythtv/lircrc== | ==~/.mythtv/lircrc== | ||
< | <syntaxhighlight lang=bash> | ||
begin | |||
prog = mythtv | prog = mythtv | ||
button = 2 | button = 2 | ||
Line 130: | Line 130: | ||
repeat = 2 | repeat = 2 | ||
config = z | config = z | ||
end</ | end | ||
</syntaxhighlight> |
Latest revision as of 17:30, 4 March 2018
Buttons
Arranged this way because Comcast Aux remote code doesn't support buttons: up, down, left, right, ok/select, page up/down, guide, menu, info, exit, fav, or help.
- 2,5,4,6 up,down,left,right
- 1 Ok / Select / Enter
- 3 Back/Cancel/Exit
- 7 Options Menu
- 9 Delete
- 8 OSD Info
- 0 Skip Commercial
~/.mythtv/lircrc
begin
prog = mythtv
button = 2
repeat = 2
config = Up
end
begin
prog = mythtv
button = 5
repeat = 2
config = Down
end
begin
prog = mythtv
button = 4
repeat = 2
config = Left
end
begin
prog = mythtv
button = 6
repeat = 2
config = Right
end
# OK/Select
begin
prog = mythtv
button = 1
config = Space
end
# Escape/Exit/Back
begin
prog = mythtv
button = 3
config = Esc
end
# Bring up Options Menu
begin
prog = mythtv
button = 7
config = M
end
# Pause
begin
prog = mythtv
button = play
repeat = 2
config = P
end
# Fast forward (30 sec default)
begin
prog = mythtv
button = ff
repeat = 2
config = >
end
# Rewind (10 sec default)
begin
prog = mythtv
button = rewind
repeat = 2
config = <
end
# Record
begin
prog = mythtv
button = rec
repeat = 2
config = R
end
# Delete
begin
prog = mythtv
button = 9
repeat = 2
config = D
end
# Scroll up
begin
prog = mythtv
button = ch_up
repeat = 2
config = PageUp
end
# Scroll down
begin
prog = mythtv
button = ch_down
repeat = 2
config = PageDown
end
# Bring up OSD info
begin
prog = mythtv
button = 8
repeat = 2
config = I
end
# Commerical Skip
begin
prog = mythtv
button = 0
repeat = 2
config = z
end