re-implemented keyboard for better performance and keypress detection. there is no longer css customization, but the keyboard is now responsive to the screen width.

This commit is contained in:
2026-02-09 22:01:14 -07:00
parent 29b48ff2ca
commit 234b2685d4
15 changed files with 377 additions and 351 deletions
+12
View File
@@ -0,0 +1,12 @@
# Compile the resources into a C file
res = gnome.compile_resources(
'oskeyboard-resources',
'resources.xml',
source_dir: '.', # Look for .ui and .css in the current directory
)
executable('osk',
'main.c',
res, # Add the compiled resource file to the sources
dependencies : [gtk_dep, libevdev_dep, layer_shell_dep],
install : true)