Loop your X cursor around the screen 👉😎👉
git clone https://github.com/m-col/xoop
Files | Refs | Readme | License

Commit 541e662acf9f4b3313072f66bac074a83fd2af38
Parent: 329816adcf3cda1d4b33f6fcf50d5367781ce813
Author: Matt Colligan <mcol@posteo.net>
Date: 2025-09-28 21:45:02 +0100
Committer: GitHub <noreply@github.com>
Committed: 2025-09-28 21:45:02 +0100

Merge pull request #6 from aarondill/signal-param

fix: add signal handler int param

xoop.c Modified

@@ -103,8 +103,9 @@
 }
 
 
-void exit_nicely()
+void exit_nicely(int sig)
 {
+    (void)(sig); // Unused
     delete_barriers();
     xcb_disconnect(conn);
     exit(EXIT_SUCCESS);
@@ -278,6 +279,6 @@
 
     event_loop();
 
-    exit_nicely();
+    exit_nicely(0);
     return 0;
 }