diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-30 19:33:34 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-30 19:33:34 +0100 |
commit | e28f3883129d46ca78e44fa9da2d8eabb5718a5f (patch) | |
tree | 83d3f6283f57f1d9ca2162a31970dd1b7467a357 /arch-installer.sh | |
parent | Added xf86 video vmware (diff) | |
download | arch-installer-e28f3883129d46ca78e44fa9da2d8eabb5718a5f.tar.gz arch-installer-e28f3883129d46ca78e44fa9da2d8eabb5718a5f.tar.bz2 arch-installer-e28f3883129d46ca78e44fa9da2d8eabb5718a5f.tar.xz arch-installer-e28f3883129d46ca78e44fa9da2d8eabb5718a5f.tar.zst arch-installer-e28f3883129d46ca78e44fa9da2d8eabb5718a5f.zip |
Better organisation
Diffstat (limited to 'arch-installer.sh')
-rwxr-xr-x | arch-installer.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/arch-installer.sh b/arch-installer.sh index 59ceb89..74a24f9 100755 --- a/arch-installer.sh +++ b/arch-installer.sh @@ -582,14 +582,12 @@ 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 @@ -651,6 +649,11 @@ if [ "$extras" = true ]; then elif [ "$intelamdgpu" = "amd" ]; then jo_pacstrap xf86-video-amdgpu 96 fi + if [ "$vbox" = true ]; then + jo_pacstrap xf86-video-vmware 75 + elif [ "$vmware" = true ]; then + jo_pacstrap xf86-video-vmware 75 + fi if [[ "$mate" = true || "$xfce" = true || "$lxde" = true \ || "$i3gaps" = true || "$awesome" = true || "$bspwm" = true ]]; then jo_pacstrap lightdm 97 |