dotfiles/.config/yadm/bootstrap.d/07-qemu
2025-02-21 07:46:27 +00:00

9 lines
192 B
Bash
Executable file

#!/bin/bash
if pacman -Q virt-manager; then
exit 0
else
sudo pacman -S --noconfirm virt-manager
sudo systemctl enable --now libvirtd.socket
sudo usermod -aG libvirt vylpes
fi