dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 268b688e3eb2fa8a1bde933272f9ddedbd3b36d5
parent 8ecf58461a5fe9492b931b86732538920e1f1f65
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Fri, 26 Apr 2019 19:19:53 +0200

Fix audio burn command, update nnn

Diffstat:
Mbin/burn-audio-cd.sh | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/bin/burn-audio-cd.sh b/bin/burn-audio-cd.sh @@ -9,7 +9,7 @@ function help { echo "requires lame, mpg123, faad2, and cdrtools" } -drive=/dev/sr0 +#drive=/dev/sr0 if [ $# -lt 1 ]; then help @@ -39,7 +39,8 @@ done # burn wav as audio cd (remove -dummy to really burn) #cdrecord -dummy -v -pad speed=1 dev="$drive" -dao -swab *.wav -cdrecord -v -pad speed=1 dev="$drive" -dao -swab *.wav +#cdrecord -v -pad speed=1 dev="$drive" -dao -swab *.wav +cdrecord -v -pad speed=1 -dao -swab *.wav #cdrecord -overburn -v -pad speed=1 dev="$drive" -dao -swab *.wav # clean up and eject