Skip to content

Instantly share code, notes, and snippets.

View CardealRusso's full-sized avatar
🎯
Focusing

Cardeal Russo CardealRusso

🎯
Focusing
View GitHub Profile
@CardealRusso
CardealRusso / basic_anim.c
Last active March 2, 2024 13:25 — forked from AlecsFerra/animated_wallpaper.c
basic animated wallpapers in Xorg https://youtu.be/guchbe-gKis?t=257
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <X11/Xlib.h>
#include <Imlib2.h>
#include <unistd.h>
int main(int argc, char *argv[]) {
if (argc < 4 || argc > 5) {
fprintf(stderr, "Usage: %s <image_folder> <frame_delay> <screen_number> [loop]\n", argv[0]);