Regenerated

This commit is contained in:
2026-04-29 22:35:22 +02:00
parent c7aa148a67
commit 5d98c8f325
16 changed files with 429 additions and 716 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env bash
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
# Tel toetsenborden met volledige toetsset (geen media-only apparaten)
COUNT=$(libinput list-devices 2>/dev/null \
| grep -A5 "Keyboard" \
| grep -c "kbd")
# Of via xinput / /proc alternatief:
# COUNT=$(cat /proc/bus/input/devices | grep -B5 'KEY=.*[a-f0-9]\{10\}' | grep -c 'Name=')
if [ "$COUNT" -ge 2 ]; then
numlockx on
echo $COUNT : On
else
numlockx off
fi
echo $COUNT
echo libinput list-devices