obosdi-pkg/install/xorg/video-drivers/proprietary

33 lines
933 B
Text
Raw Normal View History

2015-08-20 22:37:06 +02:00
#!/bin/bash
. ./lib
options=()
2016-04-03 23:53:36 +02:00
options+=("virtualbox-guest-utils" "(For Virtualbox)" off)
2015-08-20 22:37:06 +02:00
options+=("nvidia" "" off)
2020-04-10 00:07:45 +02:00
options+=("nvidia-390xx" "(AUR) End of life" off)
#options+=("nvidia-340xx" "" off) #DEAD ?
2016-04-03 23:53:02 +02:00
options+=("nvidia-dkms" "(For custom kernel)" off)
2020-03-15 23:17:27 +01:00
options+=("nvidia-390xx-dkms" "(AUR) (For custom kernel)" off)
#options+=("nvidia-340xx-dkms" "(For custom kernel)" off) #DEAD ?
2015-08-20 22:37:06 +02:00
#options+=("catalyst" "(AUR)" off)
#options+=("catalyst-total-hd234k" "(AUR)" off)
sel=$(whiptail --backtitle "$apptitle" --title "XOrg video drivers :" --checklist "Choose video drivers for your system :" --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
2020-04-10 00:07:45 +02:00
'"nvidia-390xx"' | \
'"nvidia-390xx-dkms"') aurpkg="$aurpkg $(echo $itm | sed 's/"//g')";;
2015-08-20 22:37:06 +02:00
*) pkg="$pkg $(echo $itm | sed 's/"//g')";;
esac
done
instpkg "$pkg" "$aurpkg"
exit 0