Updated VM packages

pull/1/head
beech 2 years ago
parent 9cff421395
commit 29d845e540
  1. 2
      README.md
  2. 7
      setup.sh

@ -48,7 +48,7 @@ reboot # Remove installation media during reboot
sudo pacman -S --noconfirm pacman-contrib curl git sudo pacman -S --noconfirm pacman-contrib curl git
sudo git clone https://git.boppdev.net/beech/ArchScripts sudo git clone https://git.boppdev.net/beech/ArchScripts
cd 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 sh software.sh
``` ```

@ -5,7 +5,7 @@ echo
PKGS=( PKGS=(
# --- VM Packages (Uncomment if not running in VM) # --- VM Packages (Uncomment if not a VM guest)
'open-vm-tools' 'open-vm-tools'
# --- XORG Display Rendering # --- XORG Display Rendering
@ -60,7 +60,10 @@ for PKG in "${PKGS[@]}"; do
sudo pacman -S "$PKG" --noconfirm --needed sudo pacman -S "$PKG" --noconfirm --needed
done 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
echo "Done! Please Reboot & Run software.sh" echo "Done! Please Reboot & Run software.sh"