This commit is contained in:
mitrhaCoding
2026-03-31 23:16:19 +02:00
parent 71c19c8390
commit 7a8a44cca8
5 changed files with 26 additions and 1 deletions

16
install.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
# This is only meant for Fedora linux btw...
if [[ "$EUID" = 0 ]]; then
echo "Executing as root."
else
sudo -k
if sudo true; then
echo "Correct root password, executing as root."
else
echo "Wrong root password."
exit 1
fi
fi
dnf install neovim git base-devel -y