I made a PND for a terminal based program. I'm using the following run.sh script to launch it:
#!/bin/sh
set -a
PATH=$PWD/binPATH
LD_LIBRARY_PATH=$PWD/libLD_LIBRARY_PATH
LOGOLIB=$PWD/lib/logo/logolib
LOGOHELP=$PWD/lib/logo/helpfiles
terminal --geometry=38x23+0+0 --hide-menubar --hide-borders -e "logo $@"
Usually it runs just fine, but if I open a terminal window before launching my PND (ie. using XFCE) then I only get a blank/unresponsive terminal.
If I launch my PND first then it works. But if I open a terminal window afterwards then I get a different shell prompt:
bash-3.2$Instead of the usual:
yoyobuae-openpandora:~$
Anyone have any ideas what could be happening?
#!/bin/sh
set -a
PATH=$PWD/binPATH
LD_LIBRARY_PATH=$PWD/libLD_LIBRARY_PATH
LOGOLIB=$PWD/lib/logo/logolib
LOGOHELP=$PWD/lib/logo/helpfiles
terminal --geometry=38x23+0+0 --hide-menubar --hide-borders -e "logo $@"
Usually it runs just fine, but if I open a terminal window before launching my PND (ie. using XFCE) then I only get a blank/unresponsive terminal.
If I launch my PND first then it works. But if I open a terminal window afterwards then I get a different shell prompt:
bash-3.2$Instead of the usual:
yoyobuae-openpandora:~$
Anyone have any ideas what could be happening?