18 lines
518 B
Bash
Executable File
18 lines
518 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Install xpadneo to ensure controllers work out of the box
|
|
sudo pacman -S --noconfirm --needed linux-headers
|
|
yay -S --noconfirm xpadneo-dkms
|
|
|
|
# Prevent xpad/xpadneo driver conflict
|
|
echo blacklist xpad | sudo tee /etc/modprobe.d/blacklist-xpad.conf >/dev/null
|
|
echo hid_xpadneo | sudo tee /etc/modules-load.d/xpadneo.conf >/dev/null
|
|
|
|
# Give user access to game controllers
|
|
sudo usermod -a -G input $USER
|
|
|
|
# Modules need to be loaded
|
|
gum confirm "Install requires reboot. Ready?" && sudo reboot now
|