Gnome input devices manager
Go to file
2023-09-19 16:08:40 +02:00
drivers Proof-of-concept dynamic panel creation 2023-09-19 16:08:40 +02:00
src Proof-of-concept dynamic panel creation 2023-09-19 16:08:40 +02:00
ui Added device list (panel list) to main window 2023-09-18 11:33:28 +02:00
.clang-format Initial commit 2023-07-20 22:34:35 +02:00
.gitignore Initial commit 2023-07-20 22:34:35 +02:00
Makefile Basic driver name/image interaction 2023-09-19 15:33:46 +02:00
README.md Added driver interface, loading, hashmap 2023-09-19 14:34:11 +02:00
v.ginput.gschema.xml Initial commit 2023-07-20 22:34:35 +02:00

ginput : Gnome input devices configuration tool

Manage the settings of your keyboard, mouse, ... with a simple GUI. This is for the internal settings of your devices, not for the OS settings. For example, you can change the mouse DPI, polling rate, rgb, ...

Driver interface

Drivers must expose the following symbols:

void driver_init(); // Initialization
uint32_t driver_getkey(); // Calls to this function must return USB keys that this driver registers, until 0
char* driver_get_name(); // Returns peripheral name
char* driver_get_image(); // Returns peripheral image
device_type_t driver_get_type(); // Returns device type

// Mouse drivers