Update INSTALL/3_intel, install files

This commit is contained in:
zenobit 2020-08-23 18:55:07 +00:00
parent aeac92db06
commit 091562bd08
2 changed files with 8 additions and 3 deletions

0
INSTALL/3_intel Normal file
View File

11
install
View File

@ -11,17 +11,22 @@ git clone https://gitlab.com/awesome-void/awesomeVoid ~/bin/dotfiles
# Choose gpu
echo "$(tput setaf 1) Which GPU you using?$(tput sgr 0)"
read -p "NVIDIA (n) or AMD (a) or QEMU (q)[n/a/q] " -n 1 video
read -p "NVIDIA (n), AMD (a), INTEL (i) or QEMU (q) [n/a/i/q] " -n 1 video
echo
if [[ $video = "n" ]]; then
sudo xbps-install -Sy $(cat INSTALL/3_nvidia)
sudo nvidia-xconfig
elif [[ $video = "a" ]]; then
sudo xbps-install -Sy $(cat INSTALL/3_ati)
elif [[ $video = "i" ]]; then
sudo xbps-install -Sy $(cat INSTALL/3_intel)
elif [[ $video = "q" ]]; then
sudo xbps-install -Sy $(cat INSTALL/3_qemu)
elif [[ $video = "a" ]]; then
sudo xbps-install -Sy $(cat INSTALL/3_ati)
else
echo "Invalid option. EXITING!"