aboutsummaryrefslogtreecommitdiffhomepage
path: root/cbits/getidletime_posix.c
diff options
context:
space:
mode:
Diffstat (limited to 'cbits/getidletime_posix.c')
-rw-r--r--cbits/getidletime_posix.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/cbits/getidletime_posix.c b/cbits/getidletime_posix.c
new file mode 100644
index 0000000..95eb062
--- /dev/null
+++ b/cbits/getidletime_posix.c
@@ -0,0 +1,32 @@
+#include <stdio.h>
+#include <X11/extensions/scrnsaver.h>
+
+/* Based on getIdleTime.c by falconindy on ArchLinux BBS thread ID
+ 121863. This function connects to the display in the DISPLAY
+ environment variable and returns the idle time. So the Haskell
+ code is responsible for determining and setting DISPLAY if
+ e.g. running from cron. */
+
+int GetXIdleTime ()
+{
+ Display *dpy = XOpenDisplay(NULL);
+
+ if (!dpy)
+ {
+ return(-1);
+ }
+
+ XScreenSaverInfo *info = XScreenSaverAllocInfo();
+ XScreenSaverQueryInfo(dpy, DefaultRootWindow(dpy), info);
+
+ return (info->idle);
+}
+
+/* int main (void)
+{
+ int idletime;
+
+ idletime = GetXIdleTime();
+ printf("%u", idletime);
+ return 0;
+} */