This commit is contained in:
2025-09-18 11:35:56 +02:00
commit 2203d6075f
45 changed files with 935 additions and 0 deletions

12
shell/rnote_mapper.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
echo "okay"
libinput debug-events | while read -r line; do
if echo "$line" | grep -q 'TABLET_PAD_BUTTON.*10 pressed'; then
echo "Tablet Button 6 pressed. Launching Rnote..."
rnote &
# optional: add `disown` if you don't want it tied to terminal
fi
done