Move all links to new env.sh

This commit is contained in:
Gabriel Brown 2024-06-09 18:45:45 -05:00
parent ff33be3b5f
commit 024a735a39
5 changed files with 8 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# Install Utility for AMD GPUs if needed # Install Utility for AMD GPUs if needed
read -p "Would you like to install LACT, an AMD GPU Utility? (y/N) " amd_gpu read -p "Would you like to install LACT, an AMD GPU Utility? (y/N) " amd_gpu
if [ "$amd_gpu" == "y" ]; then if [ "$amd_gpu" == "y" ]; then
sudo dnf install -y https://github.com/ilya-zlobintsev/LACT/releases/download/v0.5.4/lact-0.5.4-0.x86_64.fedora-40.rpm sudo dnf install -y $LACT_LINK
sudo systemctl enable --now lactd sudo systemctl enable --now lactd
fi fi
read -p "Would you like to install the proprietary NVIDIA Drivers? (y/N) " nvidia_gpu read -p "Would you like to install the proprietary NVIDIA Drivers? (y/N) " nvidia_gpu

View File

@ -1 +1 @@
sudo dnf install -y https://download.oracle.com/java/22/latest/jdk-22_linux-aarch64_bin.rpm sudo dnf install -y $JDK_LINK

View File

@ -1 +1 @@
xdg-open https://www.jetbrains.com/toolbox-app/download/download-thanks.html?platform=linux xdg-open $JETBRAINS_TOOLBOX_LINK > /dev/null 2>&1

View File

@ -1 +1 @@
sudo dnf install -y https://github.com/upscayl/upscayl/releases/download/v2.11.5/upscayl-2.11.5-linux.rpm sudo dnf install -y $UPSCAYL_LINK

View File

@ -2,3 +2,7 @@ export GH_USERNAME="gibbyb"
export GH_EMAIL="gib@gibbyb.com" export GH_EMAIL="gib@gibbyb.com"
export GH_EDITOR="nvim" export GH_EDITOR="nvim"
export HOST_NAME="desktop.gib" export HOST_NAME="desktop.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"