Fix typos

This commit is contained in:
Robin C. 2025-01-09 03:12:12 +01:00
parent 1774fadea8
commit 566cdc6273

View File

@ -2,7 +2,7 @@
# A Bash script for installing all my openSUSE tools # A Bash script for installing all my openSUSE tools
clear clear
echo "This script will reconfigure your system and install multiple applications and dependencies." echo "This script will reconfigure your openSUSE Tumblweed install and add multiple applications and dependencies."
echo "You probably don't want this unless you're me!" echo "You probably don't want this unless you're me!"
echo echo
echo "Press Ctrl-C to cancel or Enter to continue." echo "Press Ctrl-C to cancel or Enter to continue."
@ -29,6 +29,8 @@ else
fi fi
# Git # Git
echo
echo "Installing Git..."
sudo zypper --non-interactive install git sudo zypper --non-interactive install git
# Git Settings # Git Settings
@ -41,12 +43,12 @@ git config --global user.email "$GIT_EMAIL"
echo echo
echo "Updating system..." echo "Updating system..."
sudo zypper --non-interactive update sudo zypper --non-interactive update
sudo zyppper --non-interactive dup sudo zypper --non-interactive dup
# NVIDIA Drivers # NVIDIA Drivers
echo echo
echo "Installing proprietary NVIDIA drivers..." echo "Installing proprietary NVIDIA drivers..."
sudo zypper --non-interactive install openSUSE-repos-Tumbleweed-NVIDIA sudo zypper --non-interactive install -l openSUSE-repos-Tumbleweed-NVIDIA
sudo zupper --non-interactive install-new-recommends --repo repo-non-free sudo zupper --non-interactive install-new-recommends --repo repo-non-free
# NVIDIA Settings # NVIDIA Settings
@ -293,7 +295,7 @@ sudo zypper --non-interactive install xscreensaver-data xscreensaver-data-extra
# Build Essentials # Build Essentials
sudo zypper --non-interactive install gcc-c++ libXxf86vm-devel webkit2gtk3-devel alsa-lib-devel freetype-devel libpulse-devel glu-devel libudev-devel libXss-devel make ninja sudo zypper --non-interactive install gcc-c++ libXxf86vm-devel webkit2gtk3-devel alsa-lib-devel freetype-devel libpulse-devel glu-devel libudev-devel libXss-devel make ninja
# tel user to reboot # Tell the user we're done
echo echo
echo "All done!" echo "All done!"
echo "You must reboot your system, otherwise things will not work as expected." echo "You must reboot your system, otherwise things will not work as expected."