This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo pacman -Syyu # Update repos and packages | |
sudo pacman -Syu mesa-amber # Install mesa-amber as mesa causes visual artifacts | |
sudo pacman -Syu polkit # Installs polkit | |
sudo pacman -Syyu # Reupdates repos and packages just in case, also to prep for potential steamos-update | |
sudo steamos-update check # Checks for SteamOS updates | |
sudo steamos-update now # Updates SteamOS is an update is found | |
sudo holoiso-grub-update # Updates holoiso grub configuration just to be safe | |
# The file "/root/.steam/root/config/SteamAppData.vdf" for some reason is required to exist for gamescope to properly initialise, however, it seems that this file is by default not created. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt update -y | |
sudo apt install dkms git build-essential libelf-dev linux-headers-$(uname -r) -y | |
if [ -d /home/$USER/rtl8812au/ ] | |
then | |
echo "Directory /home/$USER/rtl8812au/ exists. Deleting. Please say yes to any confirmations that may appear." | |
rm -drf /home/%USER/rtl8812au | |
else | |
echo "Directory /home/$USER/rtl8812au/ does not exist. Deletion of directory not necessary." | |
fi |