View Single Post
Posts: 146 | Thanked: 149 times | Joined on Apr 2010
#15
Hi,

I have got it working, thx to krk969 again

I have no idea of the reason why, but following file /etc/event.d/imhere didn't work:
Code:
start on started hildon-desktop
script 
        run-standalone.sh /usr/bin/imhere
end script
So I tried to change it to:
Code:
start on started hildon-desktop
exec /etc/init.d/imhere start
stop on starting shutdown
Then I have edited /etc/init.d/imhere file to:
Code:
#!/bin/sh

case "$1" in
  start)
    run-standalone.sh /usr/bin/imhere
	;;
  *)
esac

exit 0
And surprise, surprise it works!! Great! Thank you all, soon(day or two) I will upload an intresting app in extras-devel
 

The Following 3 Users Say Thank You to rachol For This Useful Post: