47 lines
1.4 KiB
Bash
47 lines
1.4 KiB
Bash
#!/bin/bash
|
|
. ./lib
|
|
|
|
options=()
|
|
|
|
items=$(pacman -Ssq xf86-input)
|
|
for item in $items; do
|
|
case $item in
|
|
"xf86-input-keyboard") options+=("$item" "" on);;
|
|
"xf86-input-mouse") options+=("$item" "" on);;
|
|
"xf86-input-synaptics") options+=("$item" "(For Most TrackPad)" off);;
|
|
"xf86-input-vmmouse") options+=("$item" "(VMWare)" off);;
|
|
*) options+=("$item" "" off);;
|
|
esac
|
|
done
|
|
|
|
options+=("Saitek-R.A.T.3" "(Not tested)" off)
|
|
options+=("Madcatz-R.A.T.3" "(Not tested)" off)
|
|
options+=("Madcatz-R.A.T.5" "(Not tested)" off)
|
|
options+=("Madcatz-R.A.T.7" "" off)
|
|
options+=("Madcatz-R.A.T.9" "(Not tested)" off)
|
|
options+=("Madcatz-R.A.T.TE" "(Not tested)" off)
|
|
|
|
|
|
sel=$(whiptail --backtitle "$apptitle" --title "XOrg input drivers :" --checklist "" --cancel-button "Back" 0 0 0 \
|
|
"${options[@]}" \
|
|
3>&1 1>&2 2>&3)
|
|
|
|
if [ ! "$?" = "0" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
for itm in $sel; do
|
|
case $itm in
|
|
'"Saitek-R.A.T.3"') script install/xorg/input-drivers/saitekrat3;;
|
|
'"Madcatz-R.A.T.3"') script install/xorg/input-drivers/madcatzrat3;;
|
|
'"Madcatz-R.A.T.5"') script install/xorg/input-drivers/madcatzrat5;;
|
|
'"Madcatz-R.A.T.7"') script install/xorg/input-drivers/madcatzrat7;;
|
|
'"Madcatz-R.A.T.9"') script install/xorg/input-drivers/madcatzrat9;;
|
|
'"Madcatz-R.A.T.TE"') script install/xorg/input-drivers/madcatzratte;;
|
|
*) pkg="$pkg $(echo $itm | sed 's/"//g')";;
|
|
esac
|
|
done
|
|
|
|
instpkg "$pkg" "$aurpkg"
|
|
|
|
exit 0
|