Update xero-plasma.sh

This commit is contained in:
DarkXero 2024-05-06 19:45:05 +03:00 committed by GitHub
parent acb07aa116
commit 9577625e94
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -148,17 +148,18 @@ result=$(systemd-detect-virt)
case $result in case $result in
oracle) oracle)
echo "Installing virtualbox-guest-utils..." echo "Installing virtualbox-guest-utils..."
sudo pacman -S --noconfirm --needed virtualbox-guest-utils pacman -S --noconfirm --needed virtualbox-guest-utils
;; ;;
kvm) kvm)
echo "Installing qemu-guest-agent and spice-vdagent..." echo "Installing qemu-guest-agent and spice-vdagent..."
sudo pacman -S --noconfirm --needed qemu-guest-agent spice-vdagent qemu-hw-display-qxl xf86-video-qxl pacman -S --noconfirm --needed qemu-guest-agent spice-vdagent qemu-hw-display-qxl xf86-video-qxl
;; ;;
vmware) vmware)
echo "Installing xf86-video-vmware and open-vm-tools..." echo "Installing xf86-video-vmware and open-vm-tools..."
sudo pacman -S --noconfirm --needed xf86-video-vmware open-vm-tools xf86-input-vmmouse pacman -S --noconfirm --needed xf86-video-vmware open-vm-tools xf86-input-vmmouse
echo
echo "Enabling vmtoolsd.service..." echo "Enabling vmtoolsd.service..."
sudo systemctl enable vmtoolsd.service systemctl enable vmtoolsd.service
;; ;;
*) *)
echo "You are not running in a VM." echo "You are not running in a VM."