Comment 11 for bug 44524

Revision history for this message
kimus (kimus) wrote :

I did this hack just for testing:

# vim /usr/bin/normalize-audio

#/bin/bash
case "$1" in
        --version)
                normalize --version | sed -e 's/normalize /normalize-audio /g'
                ;;
        *)
                normalize $*
                ;;
esac

chmod +x /usr/bin/normalize-audio

and now k3b detects normalize :-D