-
-
Save repinel/fe58ca5216af90eaebf8 to your computer and use it in GitHub Desktop.
My Linux Infrared Remote Control (LIRC) configuration file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# LIRC Configuration 1.0 | |
# Roque Pinel | |
begin | |
prog = irexec | |
button = MENU | |
config = xte 'key XF86AudioMedia' | |
# config = xte 'key XF86Tools' | |
end | |
begin | |
prog = irexec | |
button = PLAY | |
config = xte 'key XF86AudioPlay' | |
end | |
begin | |
prog = irexec | |
button = FORWARD | |
config = xte 'key XF86AudioNext' | |
end | |
begin | |
prog = irexec | |
button = BACKWARD | |
config = xte 'key XF86AudioPrev' | |
end | |
begin | |
prog = irexec | |
button = VOLUP | |
config = xte 'key XF86AudioRaiseVolume' | |
end | |
begin | |
prog = irexec | |
button = VOLDOWN | |
config = xte 'key XF86AudioLowerVolume' | |
end | |
begin | |
prog = irxevent | |
button = MENU | |
config = Key Escape CurrentWindow | |
repeat = 0 | |
end | |
begin | |
prog = irxevent | |
button = PLAY | |
config = Key F5 CurrentWindow | |
repeat = 0 | |
end | |
begin | |
prog = irxevent | |
button = FORWARD | |
config = Key Next CurrentWindow | |
repeat = 0 | |
end | |
begin | |
prog = irxevent | |
button = BACKWARD | |
config = Key Prior CurrentWindow | |
repeat = 0 | |
end | |
begin | |
prog = irxevent | |
button = VOLUP | |
config = Key alt-Page_Down CurrentWindow | |
repeat = 0 | |
end | |
begin | |
prog = irxevent | |
button = VOLDOWN | |
config = Key alt-Page_Up CurrentWindow | |
repeat = 0 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment