diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-30 19:32:01 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-30 19:32:01 +0100 |
commit | f3763e79293af2a32618a04df7e24bd94b828d86 (patch) | |
tree | 23052772c7049cab72e7fe47d1b7db4284ab725a /arch-installer.sh | |
parent | Better comments (diff) | |
download | arch-installer-f3763e79293af2a32618a04df7e24bd94b828d86.tar.gz arch-installer-f3763e79293af2a32618a04df7e24bd94b828d86.tar.bz2 arch-installer-f3763e79293af2a32618a04df7e24bd94b828d86.tar.xz arch-installer-f3763e79293af2a32618a04df7e24bd94b828d86.tar.zst arch-installer-f3763e79293af2a32618a04df7e24bd94b828d86.zip |
Added xf86 video vmware
Diffstat (limited to 'arch-installer.sh')
-rwxr-xr-x | arch-installer.sh | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/arch-installer.sh b/arch-installer.sh index 5ab1f50..59ceb89 100755 --- a/arch-installer.sh +++ b/arch-installer.sh @@ -582,22 +582,25 @@ if [ "$ltskern" = true ]; then jo_pacstrap linux-lts-headers 75 if [ "$vbox" = true ]; then jo_pacstrap virtualbox-guest-dkms 75 + jo_pacstrap xf86-video-vmware 75 fi else jo_pacstrap linux 70 jo_pacstrap linux-headers 75 if [ "$vbox" = true ]; then jo_pacstrap virtualbox-guest-modules-arch 75 + jo_pacstrap xf86-video-vmware 75 fi fi +if [ "$vmware" = true ]; then + jo_pacstrap open-vm-tools 75 + jo_pacstrap xf86-video-vmware 75 +fi if [ "$intelamdcpu" = "intel" ]; then jo_pacstrap intel-ucode 80 elif [ "$intelamdcpu" = "amd" ]; then jo_pacstrap amd-ucode 80 fi -if [ "$vmware" = true ]; then - jo_pacstrap open-vm-tools 75 -fi if [ "$isusr" = true ]; then if [ "$usrshell" = "zsh" ]; then jo_pacstrap zsh 95 |