Friday, 8 February 2013

Raspberry pi launch program on boot, and from desktop

The following is an example of how to launch a program running in a terminal upon boot, in Raspbian wheezy:

sudo mkdir ~/.config/lxsession
sudo mkdir ~/.config/lxsession/LXDE
sudo nano ~/.config/lxsession/LXDE/autostart
view raw rpi1.sh hosted with ❤ by GitHub


and add:

lxterminal --geometry=50x10 --title="MY TITLE" -e python /usr/bin/my_script.py
view raw rpi2.sh hosted with ❤ by GitHub


This will allow the same program to be launched from the desktop upon double-click:

lxshortcut -o ~/Desktop/my_launcher.desktop
view raw rpi3.sh hosted with ❤ by GitHub


add

lxterminal --geometry=50x10 --title="MY TITLE" -e python /usr/bin/my_script.py
view raw rpi4.sh hosted with ❤ by GitHub

No comments: