commit 2e98de6abc8921d0f1833bea0fb866e821a514f1
parent 44285c373e2940ffc4632a52ab547614e5ba96b3
Author: awy <awy@awy.one>
Date: Fri, 21 Feb 2025 15:42:54 +0300
update
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gpu_pass.sh b/gpu_pass.sh
@@ -2,13 +2,17 @@
set -e
WORKDIRECTORY=$PWD
-PERMUSER=$(logname)
if [ "$(id -u)" -ne 0 ]
then printf "The script has to be run as root.\n"
exit
fi
+printf "Enter the user for whom script will install QEMU: "
+read -r PERMUSER
+
+id "$PERMUSER" > /dev/null 2>&1 || { echo "User $PERMUSER does not exist. Exiting."; exit 1; }
+
doas -u $PERMUSER mkdir -p /home/$PERMUSER/.local/share/vgabios
doas -u $PERMUSER cp $WORKDIRECTORY/Hooks/patch.rom /home/$PERMUSER/.local/share/vgabios