nixos-config/modules/home/scripts/scripts/hidname.sh

8 lines
207 B
Bash
Executable file

#!/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