This fork exists to keep local StreamController customizations versioned instead of patching the installed Flatpak plugin by hand.
- Added a dedicated
Launch Cursoraction. - Bundled the Cursor icon so the Stream Deck key shows Cursor instead of the generic terminal icon.
- Launches Cursor with the same command used by the working desktop launcher:
env GTK_IM_MODULE=xim XMODIFIERS="" /opt/Cursor/AppRun --no-sandbox --disable-gpu. - Keeps the original OS plugin actions intact, so this can remain a small, focused fork rather than a fork of the whole StreamController app.
streamcontroller official plugin to do OS Related actions
Hotkeys and write text actions require you are in the input group and you have the following udev rule
- Add the udev rule
sudo sh -c "echo 'KERNEL==\"uinput\", SUBSYSTEM==\"misc\", OPTIONS+=\"static_node=uinput\", TAG+=\"uaccess\", GROUP=\"input\", MODE=\"0660\"' > /etc/udev/rules.d/99-streamdeck-osplugin.rules" - Create the input Group (if not already present):
sudo groupadd input
- Add yourself to the
inputgroupsudo usermod -aG input $USER - Restart your computer to apply the changes