# HG changeset patch # User viric@mandarina # Date 1209411436 -7200 # Node ID 2692e47422674d84879d234f26701847bb46e505 # Parent a7f546938313457c0c474e1b7d476ac820e43dcd Moving the utils from stdinmix to tm. diff -r a7f546938313 -r 2692e4742267 utils/mpg321-remote --- a/utils/mpg321-remote Sun Feb 17 22:27:55 2008 +0100 +++ b/utils/mpg321-remote Mon Apr 28 21:37:16 2008 +0200 @@ -1,9 +1,9 @@ #!/bin/sh if [ $1 == "-b" ]; then - echo "jump -100" | stdinmix + echo "jump -100" | tm elif [ $1 == "-p" ]; then - echo "pause" | stdinmix + echo "pause" | tm elif [ $1 == "-q" ]; then - echo "quit" | stdinmix + echo "quit" | tm fi diff -r a7f546938313 -r 2692e4742267 utils/mplayer-remote --- a/utils/mplayer-remote Sun Feb 17 22:27:55 2008 +0100 +++ b/utils/mplayer-remote Mon Apr 28 21:37:16 2008 +0200 @@ -1,9 +1,9 @@ #!/bin/sh if [ $1 == "-b" ]; then - echo "seek -4" | stdinmix + echo "seek -4" | tm elif [ $1 == "-p" ]; then - echo "pause" | stdinmix + echo "pause" | tm elif [ $1 == "-q" ]; then - echo "quit" | stdinmix + echo "quit" | tm fi