source "$FEISTY_MEOW_SCRIPTS/tty/terminal_titler.sh"
# start up the xsecurelock screen saver if we are running x window system.
- bash "$FEISTY_MEOW_SCRIPTS/core/start_xwin_screensaver.sh"
+# bash "$FEISTY_MEOW_SCRIPTS/core/start_xwin_screensaver.sh"
##############
echo "I don't know how to play mp3 files for this OS and sound system."
fi
+echo "mp3 play cmd is: $MP3_PLAY_CMD"
+
# play the sounds individually; some apps like playsound can handle multiple
# files, but "/usr/bin/play" doesn't want to on some systems.
for filename in $*; do
+echo filename is $filename
case "$filename" in
*wav)
+echo treating $filename as wav/etc
$BASIC_PLAY_CMD $filename >/dev/null 2>&1;
;;
*mp3)
+echo treating $filename as mp3/etc
$MP3_PLAY_CMD $filename >/dev/null 2>&1;
;;
*)