#! /bin/bash
# MADMAN-NAME: Burn to a Data CD
# MADMAN-DESCRIPTION: Creates a data CD containing the songs in K3b.
# MADMAN-ARGUMENTS: %REPEAT% %FILENAME% %ENDREPEAT%
# MADMAN-MENUSTRING: Burn to &Data CD

if which k3b > /dev/null ; then
  k3b --data "$@" &
else
  xmessage "K3b was not found. Please install from http://k3b.sourceforge.net" &
fi
