diff --git a/README.md b/README.md index 0644db2..caf7a88 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ reboot # Remove installation media during reboot sudo pacman -S --noconfirm pacman-contrib curl git sudo git clone https://git.boppdev.net/beech/ArchScripts cd ArchScripts -sh setup.sh # Comment out line 9 if you're not on a VM +sh setup.sh # Comment out line 9, 65 & 66 if you're not on a VM sh software.sh ``` diff --git a/setup.sh b/setup.sh index 6029e10..dfb6e55 100644 --- a/setup.sh +++ b/setup.sh @@ -5,7 +5,7 @@ echo PKGS=( - # --- VM Packages (Uncomment if not running in VM) + # --- VM Packages (Uncomment if not a VM guest) 'open-vm-tools' # --- XORG Display Rendering @@ -60,7 +60,10 @@ for PKG in "${PKGS[@]}"; do sudo pacman -S "$PKG" --noconfirm --needed done -sudo systemctl enable gdm.service +sudo systemctl enable gdm.service + +sudo systemctl enable vmtoolsd.service # Comment out if VM guest +sudo systemctl enable vmware-vmblock-fuse.service # Comment out if VM guest echo echo "Done! Please Reboot & Run software.sh"