summaryrefslogtreecommitdiffstats
path: root/bin/playcd
diff options
context:
space:
mode:
Diffstat (limited to 'bin/playcd')
-rwxr-xr-xbin/playcd14
1 files changed, 0 insertions, 14 deletions
diff --git a/bin/playcd b/bin/playcd
deleted file mode 100755
index 1c2bde1..0000000
--- a/bin/playcd
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-if [[ -z $1 ]]; then
- cdda2wav -q -e -d0 -N -B dev=/dev/cdrom &
-else
- cdda2wav -q -e -d0 -N -t$1 dev=/dev/cdrom &
-fi
-
-PID=$!
-
-# this program skips a lot
-sudo renice -5 ${PID}
-
-wait ${PID}