14 lines
357 B
Bash
14 lines
357 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# archypr:summary=Remove the xpadneo Xbox controller driver and undo its module/blacklist config.
|
||
|
|
# archypr:requires-sudo=true
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
archypr-kg-drop xpadneo-dkms
|
||
|
|
|
||
|
|
sudo rm -f /etc/modprobe.d/blacklist-xpad.conf /etc/modules-load.d/xpadneo.conf
|
||
|
|
|
||
|
|
echo ""
|
||
|
|
echo "Xbox controller support removed. Reboot to fully unload xpadneo and restore xpad."
|