Skip to content

Instantly share code, notes, and snippets.

@notjuliee
Created November 4, 2017 21:55
Show Gist options
  • Save notjuliee/0a5dafe1465383c9ebb0c4143de7086f to your computer and use it in GitHub Desktop.
Save notjuliee/0a5dafe1465383c9ebb0c4143de7086f to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <X11/Xlib.h>
#include <X11/extensions/Xrandr.h>
int main() {
Display *dpy = XOpenDisplay(NULL);
Window root = RootWindow(dpy, 0);
XRRScreenConfiguration *conf = XRRGetScreenInfo(dpy, root);
printf("%d", XRRConfigCurrentRate(conf));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment