diff options
author | Kalle Wallin <kaw@linux.se> | 2004-04-06 13:45:42 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-04-06 13:45:42 +0000 |
commit | 508edc8ba7f85851bc43162718fe674ad38defcb (patch) | |
tree | d68bcf4417eaf1273b0c8c1f8a6a5fb43967e513 /doc | |
parent | 040f46a4a54a6d641601ad19107c987a3f1f8d31 (diff) | |
download | mpd-508edc8ba7f85851bc43162718fe674ad38defcb.tar.gz mpd-508edc8ba7f85851bc43162718fe674ad38defcb.tar.xz mpd-508edc8ba7f85851bc43162718fe674ad38defcb.zip |
Added a sample lirc (irpty) configuration file.
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@612 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 2 | ||||
-rw-r--r-- | doc/ncmpc.lirc | 193 |
2 files changed, 194 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index ef22f0742..74e822e67 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,4 +1,4 @@ man_MANS = ncmpc.1 docdir = $(prefix)/share/doc/$(PACKAGE) -doc_DATA = ncmpcrc.sample +doc_DATA = ncmpcrc.sample ncmpc.lirc EXTRA_DIST = $(man_MANS) $(doc_DATA) diff --git a/doc/ncmpc.lirc b/doc/ncmpc.lirc new file mode 100644 index 000000000..bdf7b7dc6 --- /dev/null +++ b/doc/ncmpc.lirc @@ -0,0 +1,193 @@ +# +# Sample .lirc file for usage with irpty and ncmcp +# +# $ irpty ./ncmpc.lirc -- ncmcp +# + + + +Begin + remote = * + button = CD_VOL- + prog = irpty + repeat = 1 + config = - +end + +begin + remote = * + button = CD_VOL+ + prog = irpty + repeat = 1 + config = + +end + +begin + remote = * + button = CD_STOP + prog = irpty + repeat = 0 + config = s +end + +begin + remote = * + button = CD_NEXT + prog = irpty + repeat = 0 + config = > +end + +begin + remote = * + button = CD_PREV + prog = irpty + repeat = 0 + config = < +end + +begin + remote = * + button = CD_PAUSE + prog = irpty + repeat = 0 + config = P +end + +begin + remote = * + button = CD_PLAY + prog = irpty + repeat = 0 + config = \r +end + +# Switch screen (Playlist/Browse) +begin + remote = * + button = CD_EJECT + prog = irpty + repeat = 0 + config = \x9 +end + + +# move: Up +begin + remote = * + button = CD_2 + prog = irpty + repeat = 2 + config = , +end + +# move: Down +begin + remote = * + button = CD_8 + prog = irpty + repeat = 2 + config = . +end + +# move: Center (update) +begin + remote = * + button = CD_5 + prog = irpty + repeat = 0 + config = u +end + +# Auto center +begin + remote = * + button = CD_CHECK + prog = irpty + config = U +end + + +# move: home +begin + remote = * + button = CD_1 + prog = irpty + repeat = 0 + config = \A +end + +# move: end +begin + remote = * + button = CD_7 + prog = irpty + repeat = 0 + config = \E +end + +# move: PgUp +begin + remote = * + button = CD_3 + prog = irpty + repeat = 0 + config = A +end + +# move: PgDn +begin + remote = * + button = CD_9 + prog = irpty + repeat = 0 + config = B +end + + +# Add/Select song +begin + remote = * + button = CD_INDEX_NEXT + prog = irpty + repeat = 0 + config = a +end + +# Delete song +begin + remote = * + button = CD_INDEX_PREV + prog = irpty + repeat = 0 + config = d +end + +# Clear playlist +begin + remote = * + button = CD_CLEAR + prog = irpty + repeat = 0 + config = c +end + +# Random +begin + remote = * + button = CD_RANDOM + prog = irpty + repeat = 0 + config = z +end + +# repeat +begin + remote = * + button = CD_REPEAT + prog = irpty + repeat = 0 + config = r +end + + |