Regenerated

This commit is contained in:
2026-04-29 22:49:35 +02:00
parent c5a15e1ed4
commit e976e189e3
3 changed files with 395 additions and 413 deletions
@@ -1,9 +1,7 @@
#!/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")
COUNT=$(libinput list-devices | grep -c "^Device:.*[Kk]eyboard")
# Of via xinput / /proc alternatief:
# COUNT=$(cat /proc/bus/input/devices | grep -B5 'KEY=.*[a-f0-9]\{10\}' | grep -c 'Name=')
@@ -14,7 +12,3 @@ if [ "$COUNT" -ge 2 ]; then
else
numlockx off
fi
echo $COUNT
echo $(libinput list-devices \
| grep -A5 "Keyboard" \
| grep -c "kbd")