/* lirccrc sample 1
   This sample illustrates some basic usage of lirccrc, starting and
   contolling MPlayer. This far from demonstrates the true potential
   of lirccd.
 */

bind "Rewind" sendstring("mplayer", "seek -10");
bind "FF" sendstring("mplayer", "seek +10");
bind "Play" exec("gmplayer &"); /* Note that you have to include an
				 * ampersand (&) at the end of the
				 * command, or lirccd will wait for it
				 * to complete. */

