SKipper desktop tricks
SKipper for Linux, MacOS and Windows allows you to customize your SKipper experience with multiple arguments on the command line.
Changing location and size of the SKipper window
You can pass -location x,y,width,height
to place SKipper at specified location in a window with a specific size (in pixels). This is handy when you want to automatically start SKipper on another screen, or start SKipper on just a part of the screen.
Disabling exit SKipper menu option
You can pass --no-exit
to SKipper to hide any Close SKipper menu items. This is handy if you don't want to exit SKipper at all.
Override profile folder location
If you want to override the default location for storing settings, profile, and Signal K tokens, you can pass -profile "/new/path/to/store/profile"
.
Override cache folder location
SKipper uses temporary storage to store a few files. If you need to change that location, you can pass -cache "/new/path/to/store/cache"
.
SKipper on Linux with DRM/Frame buffer
SKipper can run without any X/Wayland UI; all that's required is Linux DRM (recommended) or frame buffer.
Raspberry PI OS Lite
SKipper can run on Raspberry PI OS Lite with a few modifications.
- First you need to flash your SD card / flash memory with the latest Raspberry PI OS 64Bit Lite.
- Drawing via DRM or Frame Buffer requires a few more libraries to be installed. Use terminal/SSH to install them:
sudo apt update
sudo apt upgrade
sudo apt-get install libgbm1 libgl1-mesa-dri libegl1-mesa libinput10
Install SKipper using Getting started for Linux.
When you're done with the installation, try running SKipper from the shell with command:
/usr/local/bin/skipper/SkipperApp --drm
SKipper should be running on your screen. Now close it. You need some kind of auto start mechanism, you can use systemD service for that.
NOTE if you need to specify the card for DRM because SKipper outputs couldn't open
/dev/dri/card1
, just change the card using-drm {path to card}
for example/usr/local/bin/skipper/SkipperApp -drm /dev/dri/card0
.
Open your favorite text editor to create new .service file.
For example:
sudo nano /etc/systemd/system/skipper.service
And paste the following definition:
[Unit]
Description=SKipper app service
After=network.target
[Service]
ExecStart=/usr/local/bin/skipper/SkipperApp --drm
KillMode=process
Restart=on-failure
User=pi
[Install]
WantedBy=multi-user.target
Alias=skipper.service
Note If your system doesn't support DRM you can use frame buffer, just change argument
--drm
to--fb
.Also if you're running SKipper on Raspberry PI Zero 2 W, please use
-drm /dev/dri/card0
as the start argument.
Great! Service definition is set. Now we need to reload daemons and enable the service.
Type the following commands to get your SKipper service ready:
sudo systemctl daemon-reload
sudo systemctl enable skipper
Now, to start SKipper, run:
sudo systemctl start skipper
And that's it! Anytime your Raspberry PI is booted SKipper will automatically start!