Some users (myself included) find the the fold when Idle on linux doesn't work - it never starts.
I've written a script that I run on startup that addresses this.
Code: Select all
#!/bin/bash
sleep 90
xhost +
DISPLAY=:0 xscreensaver-command -watch | while read -r line
do
# does the result of the last change in xscreensaver status start with BLANK (ie screensaver on) or UNBLANK (screensaver off) ?
if [[ $line == BLANK* ]]
then
FAHClient --send-unpause
else
FAHClient --send-pause
fi
done