Skip to content

Instantly share code, notes, and snippets.

View dec05eba's full-sized avatar

dec05eba

View GitHub Profile
@dec05eba
dec05eba / main.c
Created June 23, 2025 09:25
Randr monitor property example
/* Compile with: gcc main.c -o dpi $(pkg-config --cflags --libs x11 xrandr) */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <assert.h>
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <X11/extensions/Xrandr.h>