Fixing an embarrassing amount of errors after having to use it for the first time

This commit is contained in:
Gib
2024-08-12 03:28:17 -05:00
parent aff93e0e03
commit 2eedecc9cd
47 changed files with 38 additions and 95 deletions

View File

@ -1,3 +1,5 @@
# Install Zoxide so it doesnt prompt us to when we source bashrc
sudo dnf install -y zoxide
# Make Directory for all Dotfiles so you can sync them with Nextcloud.
mkdir ~/Documents/Configs

View File

@ -1,12 +1,12 @@
export TOOLS=$(cat ~/.local/share/sunhat/sources/install/tools | tr "\n" " " | sed 's/ //g')
export TOOLS=$(cat ~/.local/share/sunhat/sources/install/tools | tr "\n" " ")
export GH_USERNAME="gibbyb"
export GH_EMAIL="gib@gibbyb.com"
export GH_EDITOR="nvim"
export HOST_NAME="desktop.gib"
export HOST_NAME="laptop.gib"
export JETBRAINS_TOOLBOX_LINK="https://www.jetbrains.com/toolbox-app/download/download-thanks.html?platform=linux"
export UPSCAYL_LINK="https://github.com/upscayl/upscayl/releases/download/v2.11.5/upscayl-2.11.5-linux.rpm"
export LACT_LINK="https://github.com/ilya-zlobintsev/LACT/releases/download/v0.5.4/lact-0.5.4-0.x86_64.fedora-40.rpm"
export JDK_LINK="https://download.oracle.com/java/22/latest/jdk-22_linux-aarch64_bin.rpm"
export JDK_LINK="https://download.oracle.com/java/22/latest/jdk-22_linux-x64_bin.rpm"
export DESKTOP_BACKGROUND="file:///home/gib/Pictures/Wallpapers/gloomyroadcatbg.png"
export HOME_ASSISTANT_URL="https://home.gibbyb.com"
export JUMP_DESKTOP_LINK="https://jumpdesktop.com/downloads/jdwin"

View File

@ -1 +1,3 @@
source ~/.local/share/sunhat/sources/env.sh
sudo hostnamectl set-hostname $HOST_NAME

View File

@ -4,7 +4,7 @@ echo -e "\t\"rd.driver.blacklist=nouveau,"
echo -e "\tmodprobe.blacklist=nouveau,"
echo -e "\tnvidia-drm.modeset=1\"\n"
echo -e "\n Save the file & close nvim to continue.\n"
kitty -1 -e bash -c "sudo nvim /etc/default/grub"
kitty -1 -e bash -c "sudoedit /etc/default/grub"
sudo grub2-mkconfig -o /etc/grub2-efi.cfg
sudo systemctl enable nvidia-hibernate.service nvidia-suspend.service \
nvidia-resume.service nvidia-powerd.service

View File

@ -1,2 +1,2 @@
source ~/.local/share/sunhat/sources/env.sh
sudo dnf install -y $tools
sudo dnf install -y $TOOLS