From 508edc8ba7f85851bc43162718fe674ad38defcb Mon Sep 17 00:00:00 2001 From: Kalle Wallin Date: Tue, 6 Apr 2004 13:45:42 +0000 Subject: [PATCH] Added a sample lirc (irpty) configuration file. git-svn-id: https://svn.musicpd.org/ncmpc/trunk@612 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- doc/Makefile.am | 2 +- doc/ncmpc.lirc | 193 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 194 insertions(+), 1 deletion(-) create mode 100644 doc/ncmpc.lirc diff --git a/doc/Makefile.am b/doc/Makefile.am index ef22f07..74e822e 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 0000000..bdf7b7d --- /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 + + -- 2.30.2