From 9577625e94a2645077656e341c806b7572dae78c Mon Sep 17 00:00:00 2001 From: DarkXero <81101439+DarkXero-dev@users.noreply.github.com> Date: Mon, 6 May 2024 19:45:05 +0300 Subject: [PATCH] Update xero-plasma.sh --- xero-plasma.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/xero-plasma.sh b/xero-plasma.sh index 7f146df..dd14fcc 100644 --- a/xero-plasma.sh +++ b/xero-plasma.sh @@ -148,17 +148,18 @@ result=$(systemd-detect-virt) case $result in oracle) echo "Installing virtualbox-guest-utils..." - sudo pacman -S --noconfirm --needed virtualbox-guest-utils + pacman -S --noconfirm --needed virtualbox-guest-utils ;; kvm) 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) 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..." - sudo systemctl enable vmtoolsd.service + systemctl enable vmtoolsd.service ;; *) echo "You are not running in a VM."