From 2fa72ee0dc67d973330aec4ba98260e9f57f7821 Mon Sep 17 00:00:00 2001 From: Lena Date: Thu, 1 Jan 2026 00:00:00 +0000 Subject: Enter mouseboard Keyboard-only pointing: a labelled grid over every monitor, type a label to jump to a cell, bisect it by quadrant until the crosshair is exact, then one key clicks. The coarse grid keeps labels short and bisection keeps precision unlimited, so a hotkey and a few keystrokes replace the mouse. The core talks only to the backend interface in platform.h; wlroots Wayland and Win32 backends supply the overlay, keyboard grab and pointer. --- selftest.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 selftest.c (limited to 'selftest.c') diff --git a/selftest.c b/selftest.c new file mode 100644 index 0000000..906f3f6 --- /dev/null +++ b/selftest.c @@ -0,0 +1,12 @@ +/* selftest.c - dependency-free entry point for the shared core checks. */ +#include "core.h" + +void platform_sleep_ms(int ms) +{ + (void)ms; +} + +int main(void) +{ + return core_selftest(); +} -- cgit v1.2.3