vinstaller/etc/gfx/nvidia

17 lines
386 B
Plaintext
Raw Permalink 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"
2023-07-02 16:22:49 +02:00
fi
if [ "${output}" == "400" ] || [ "${output}" == "500" ]; then
2022-02-08 23:13:18 +01:00
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}"
2023-07-02 16:22:49 +02:00
}