You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The niggle I found with this method was Fruitbox would start whilst the desktop was still loading. It would end up in a windowed view rather than max full screen (1920x1080). This truncated the Fruitbox UI at the bottom because of the desktop taskbar and the Fruitbox window title bar. Shutting down Fruitbox and restarting, would see it run properly in full screen mode with no borders or taskbar
My workaround is:
Create a shell script called /home/pi/fruitbox.sh
!#/bin/bash
cd /home/pi/fruitbox
sleep 5
./fruitbox
The sleep 5 will give the PI Desktop GUI enough time to load before running Fruitbox
Model: Raspberry Pi 4B 4GB
OS: Raspberry PI OS 32-bit Full (Linux 11 Bullseye)
Version: Fruitbox v2
Skin: skins/JaysIndieglo
I am trying to get Fruitbox to auto start on boot. The user guide suggests editing and adding a couple of lines to the rc.local file.
sudo nano /etc/rc.local
However, the drawbacks of this are that rc.local is deprecated and is executed before the desktop starts.
I have personally not got this to work, but I had more success with autostart. E.g.
sudo nano /home/.config/autostart/Fruitbox.desktop
The niggle I found with this method was Fruitbox would start whilst the desktop was still loading. It would end up in a windowed view rather than max full screen (1920x1080). This truncated the Fruitbox UI at the bottom because of the desktop taskbar and the Fruitbox window title bar. Shutting down Fruitbox and restarting, would see it run properly in full screen mode with no borders or taskbar
My workaround is:
The sleep 5 will give the PI Desktop GUI enough time to load before running Fruitbox
sudo chmod +x fruitbox.sh
sudo nano /home/.config/autostart/fruitbox.desktop
With this in place, I now have Fruitbox auto loading seamless on boot
Hope this helps anyone with getting Fruitbox to auto start on boot
The text was updated successfully, but these errors were encountered: