


How to Autorun a Script or App in the Raspberry Pi GUI Note that, if you are building a project that doesn’t require you to use the windowed environment, you can save system resources by configuring the Raspberry Pi to boot to the command line by entering sudo raspi-config and then navigating to Boot Options -> Desktop / CLI and selecting Console Autologin. If you want to remove your script from the crontab, simply type sudo crontab -e again and remove or comment out that line. You can make any script executable by typing sudo chmod a+x FILENAME Python scripts won’t need to be executable because the python interpreter already is. Make your script executable if it is a Bash script. In nano, you do that by hitting CTRL + X, answering Y and hitting Enter when prompted.ĥ.
