vinstaller/etc/gfx/nvidia

15 lines
383 B
Plaintext
Raw Normal View History

2022-02-07 04:18:16 +01:00
packages() {
2022-02-08 23:13:18 +01:00
echo "Choose your model"
multiplechoice "400" "500" "600" "700" "800" "nouveau"
if [ "${output}" == "400" ] || [ "${output}" == "500" ]; then
n="nvidia390"
elif [ "${output}" == "400" ] || [ "${output}" == "500" ]; then
n="nvidia470"
elif [ "${output}" == "400" ]; then
n="nvidia"
elif [ "${output}" == "nouveau" ]; then
2022-02-08 23:21:36 +01:00
n="${output}"
2022-02-08 23:13:18 +01:00
fi
addpkg "${n}"
2022-02-07 04:18:16 +01:00
}