Add KVM check

This commit is contained in:
Stephan Raabe
2023-12-07 10:02:48 +01:00
parent eb8b08be0e
commit e5f603b69c
6 changed files with 33 additions and 3 deletions
Executable
+17
View File
@@ -0,0 +1,17 @@
# Set KVM environment variables
if [ $(_isKVM) == "0" ] ;then
echo -e "${GREEN}"
cat <<"EOF"
_ ____ ____ __ __ ____ __
| |/ /\ \ / / \/ | \ \ / / \/ |
| ' / \ \ / /| |\/| | \ \ / /| |\/| |
| . \ \ V / | | | | \ V / | | | |
|_|\_\ \_/ |_| |_| \_/ |_| |_|
EOF
echo -e "${NONE}"
if gum confirm "Are you running this script in a KVM virtual machine?" ;then
echo "source = ~/dotfiles/hypr/conf/environments/kvm.conf" > ~/dotfiles-versions/$version/hypr/conf/environment.conf
echo "Environment set to KVM."
fi
fi