Add qemu-guest-agent installation

This commit is contained in:
Stephan Raabe 2023-12-07 10:16:50 +01:00
parent e5f603b69c
commit 140dc369ed

View File

@ -10,8 +10,12 @@ cat <<"EOF"
EOF
echo -e "${NONE}"
if gum confirm "Are you running this script in a KVM virtual machine?" ;then
echo "The script has detected that you run the installation in a KVM virtual machine."
if gum confirm "Do you want to install the KVM environment variables?" ;then
echo "source = ~/dotfiles/hypr/conf/environments/kvm.conf" > ~/dotfiles-versions/$version/hypr/conf/environment.conf
echo "Environment set to KVM."
fi
if gum confirm "Do you want to install the QEMU guest agent?" ;then
_installPackagesPacman "qemu-guest-agent";
fi
fi