From 5dec4c29b7cbd755bd3e32cab195a487a19f51c1 Mon Sep 17 00:00:00 2001 From: Andrey Sidorov Date: Fri, 8 Jun 2012 15:00:13 +1000 Subject: [PATCH] SetScreenSaver request --- lib/x11/corereqs.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/x11/corereqs.js b/lib/x11/corereqs.js index d09107e..5dd5d05 100644 --- a/lib/x11/corereqs.js +++ b/lib/x11/corereqs.js @@ -633,6 +633,12 @@ module.exports = { } ], + SetScreenSaver: [ + function(timeout, interval, preferBlanking, allowExposures) { + return [ 'CxSSSCCxx', [107, 3, timeout, interval, preferBlanking, allowExposures]]; + } + ], + ForceScreenSaver: [ function(activate) { return [ 'CCS', [115, activate?1:0, 1] ];