From fd13ab83a5aaf5feda41a5556b10d884138c3a0e Mon Sep 17 00:00:00 2001 From: Ace Date: Sun, 17 Jan 2021 23:55:51 +0100 Subject: [PATCH] Fixed auto-start on Rpi 4 The Raspberry Pi 4 had some issues in regards to Inkycal starting at boot. By adding a delay of 1 min to allow the Raspberry Pi to fully load, the issue gets fixed. Special thanks to @Worstface for finding the issue and suggesting a solution. --- installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer.sh b/installer.sh index 881503e..361643f 100644 --- a/installer.sh +++ b/installer.sh @@ -83,7 +83,7 @@ inky.test() # test if Inkycal can be run correctly, running this will show a bi inky.run() # If there were no issues, you can run Inkycal nonstop EOF echo -e "\e[1;36m"Updating crontab"\e[0m" - (crontab -l ; echo "@reboot python3 /home/$USER/inky_run.py &")| crontab - + (crontab -l ; echo "@reboot sleep 60 && python3 /home/$USER/inky_run.py &")| crontab - fi # Final words