@tseyfarth
re Basic Linux question - Linux - Xojo Programming Forum
- usually typing the full path to the app works console or desktop
- there can be but its hard to be 100% sure as it may depend, in part, on your app
- again that may not be necessary but it cant be a bad thing to do
you can do it as a single command as well
for instance the solitaire game on my vm is in /usr/games/sol
so I can invoke it as
/usr/games/sol
and it its important that I be in the same dir (ie it relies on PWD CWD etc or something) then you could do
cd /usr/games/ ; sol
etc