You are not logged in.
What is the clean way to disable screensaver for a specific app like stremio?
Is there app-specific configurations? or should I link the app to somewhere in the system? or running a script when starting the app?
Offline
Write a wrapper script and use xset s off -dpms to disable ands xset s on +dpms respectively to enable again. https://wiki.archlinux.org/title/Displa … _a_command
So something along the lines of
xset s off -dpms
$yourapplicationhere$
xset s on +dpms
Offline