#!/bin/sh TARGET=$PRODTREE/python3/bin/catfish.bin PROGNAME="catfish" TITLE="$PROGNAME isn't installed" if [ -f $TARGET ]; then # If there are no parameters, start in # user's home directory if [ "x$1" = "x" ]; then cd; fi resetpcmvol # See comments in the code . srcpkgpaths xfconf /laclin/lacutil/single-instance --wait --usepid \ "python3/bin/catfish" $TARGET $* & exit else MSG="This version of this distro omits $PROGNAME." /laclin/lacutil/single-instance --wait --usewin \ "^$TITLE" \ zenity --error --no-wrap --title="$TITLE" --text="$MSG" fi