25 lines
734 B
Bash
Executable File
25 lines
734 B
Bash
Executable File
#!/bin/bash
|
|
# Quick script to check if the fake wheel device is visible
|
|
|
|
echo "=== Checking for Gaming Wheel Devices ==="
|
|
echo
|
|
|
|
echo "1. Devices in /dev/input/by-id/:"
|
|
ls -l /dev/input/by-id/ 2>/dev/null | grep -i "logitech\|wheel\|g29" || echo " No wheel devices found"
|
|
echo
|
|
|
|
echo "2. All input devices:"
|
|
ls /dev/input/event* 2>/dev/null
|
|
echo
|
|
|
|
echo "3. Input devices info (from /proc/bus/input/devices):"
|
|
if [ -f /proc/bus/input/devices ]; then
|
|
grep -A 10 -i "logitech\|wheel\|g29\|046d.*c24f" /proc/bus/input/devices 2>/dev/null || echo " No wheel found in input devices"
|
|
else
|
|
echo " /proc/bus/input/devices not found"
|
|
fi
|
|
echo
|
|
|
|
echo "4. Try running: sudo evtest"
|
|
echo " Then select the wheel device to see live events"
|