emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob b8db27560ba2546d640d2e1023440c6f4715edbb 951 bytes (raw)
name: contrib/scripts/x11idle.c 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 
/* This header file is provided by the libxss-dev package on Debian,
 * by the libXss-devel rpm on openSUSE, and the libXScrnSaver-devel
 * rpm on Fedora.
 */
#include <X11/extensions/scrnsaver.h>

#include <stdio.h>

/* Based on code from
 * http://coderrr.wordpress.com/2008/04/20/getting-idle-time-in-unix/
 *
 * compile with 'gcc -l Xss x11idle.c -o x11idle' and copy x11idle into your
 * path
 */
int main() {
    XScreenSaverInfo *info = XScreenSaverAllocInfo();
    //open the display specified by the DISPLAY environment variable
    Display *display = XOpenDisplay(0);

    //display could be null if there is no X server running
    if (info == NULL || display == NULL) {
    return -1;
    }

    //X11 is running, try to retrieve info
    if (XScreenSaverQueryInfo(display, DefaultRootWindow(display), info) == 0) {
	return -1;
    }

    //info was retrieved successfully, print idle time
    printf("%lu\n", info->idle);
    return 0;
}

debug log:

solving b8db27560 ...
found b8db27560 in https://git.savannah.gnu.org/cgit/emacs/org-mode.git

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).