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
KERNEL=="uinput", SUBSYSTEM=="misc", OPTIONS+="static_node=uinput", TAG+="uaccess", GROUP="input", MODE="0660"
- Create the input Group (if not already present):
sudo groupadd input
- Add yourself to the
input
groupsudo usermod -aG input $USER
- Restart your computer to apply the changes