-
-
Notifications
You must be signed in to change notification settings - Fork 136
0. Start at login (Flatpak)
The Start at login option in OpenDeck settings does not work when OpenDeck is installed via Flatpak. This is actually mentioned in the tooltip of the option itself in the settings panel.
You need to add OpenDeck to your desktop environment's autostart configuration manually.
Most desktop environments have built-in tools for this — for example System Settings → Autostart in KDE Plasma, or GNOME Tweaks → Startup Applications on GNOME. For other desktop environments, refer to your DE's documentation.
Regardless of which method you use, the important thing is to make sure the Exec= line contains the --hide flag at the very end:
Exec=/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=opendeck me.amankhanna.opendeck --hide
If you prefer, you can create the autostart file manually regardless of your DE:
mkdir -p ~/.config/autostart
nano ~/.config/autostart/me.amankhanna.opendeck.desktopPaste the following content:
[Desktop Entry]
Type=Application
Name=OpenDeck
Comment=Use stream controllers
Exec=/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=opendeck me.amankhanna.opendeck --hide
Icon=me.amankhanna.opendeck
Terminal=false
Categories=Office;
X-Flatpak-RenamedFrom=opendeck.desktop;
X-Flatpak=me.amankhanna.opendeckSave with Ctrl+O then Ctrl+X.
The --hide flag launches OpenDeck directly in the background without showing the main window. OpenDeck will be available in the system tray as usual.