summaryrefslogtreecommitdiffstats
path: root/bin/playcd
blob: 1c2bde122c501fe03c493ca73a91f1a74e71d1ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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}