DSL Embedded :: create lnk for sh script
I need to create a desktop icon that executes my sh script.
i tried creating a lnk file and it shows up on the desktop.
it is set to launch 'sh /home/dsl/file.sh' but nothing happens..
What happens when you use that same command in a shell? Any error messages?
What does the lnk file look like? What does the script look like?
this fixed it..
changed 'sh /home/dsl/file.sh' to
rxvt +rv -fn fixed -T "Sh" -e /bin/sh /home/dsl/file.sh
original here.