feat: adds hidname script to get the name of hidraw devices

This commit is contained in:
Ahwx 2025-06-11 00:23:14 +02:00
parent bca833bffd
commit ee7748c7b5
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#!/usr/bin/env bash
FILES=/dev/hidraw*
for f in $FILES; do
FILE=${f##*/}
DEVICE="$(cat /sys/class/hidraw/${FILE}/device/uevent | grep HID_NAME | cut -d '=' -f2)"
printf "%s \t %s\n" $FILE "$DEVICE"
done