diff options
Diffstat (limited to 'Distro-Hyprland.sh')
| -rwxr-xr-x | Distro-Hyprland.sh | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Distro-Hyprland.sh b/Distro-Hyprland.sh index 88964ea7..9954947d 100755 --- a/Distro-Hyprland.sh +++ b/Distro-Hyprland.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# https://github.com/JaKooLit +# https://github.com/LinuxBeginnings # Script design to clone the Distro-Hyprland install scripts @@ -35,7 +35,7 @@ if [ "$distro_name" = "Debian GNU/Linux" ]; then INSTALL_CMD="sudo apt install -y" GIT_INSTALL_CMD="sudo apt install -y git" Distro="Debian-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Distro_DIR="$HOME/$Distro" elif [ "$distro_name" = "Ubuntu" ]; then PACKAGE_MANAGER="apt" @@ -45,35 +45,35 @@ elif [ "$distro_name" = "Ubuntu" ]; then case "$distro_version" in "24.04") Distro="Ubuntu-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Github_URL_branch="24.04" Distro_DIR="$HOME/$Distro-$Github_URL_branch" echo "${INFO} Ubuntu 24.04 detected. Customizing setup for Ubuntu 24.04." ;; "24.10") Distro="Ubuntu-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Github_URL_branch="24.10" Distro_DIR="$HOME/$Distro-$Github_URL_branch" echo "${INFO} Ubuntu 24.10 detected. Customizing setup for Ubuntu 24.10." ;; "25.04") Distro="Ubuntu-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Github_URL_branch="25.04" Distro_DIR="$HOME/$Distro-$Github_URL_branch" echo "${INFO} Ubuntu 25.04 detected. Customizing setup for Ubuntu 25.04." ;; "25.10") Distro="Ubuntu-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Github_URL_branch="25.10" Distro_DIR="$HOME/$Distro-$Github_URL_branch" echo "${INFO} Ubuntu 25.10 detected. Customizing setup for Ubuntu 25.10." ;; "26.04-development") Distro="Ubuntu-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Github_URL_branch="26.04-development" Distro_DIR="$HOME/$Distro-$Github_URL_branch" echo "${INFO} Ubuntu 26.04 (development) detected. Customizing setup for Ubuntu 26.04 development branch." @@ -90,28 +90,28 @@ elif command -v pacman &> /dev/null; then INSTALL_CMD="sudo pacman -S --noconfirm" GIT_INSTALL_CMD="sudo pacman -S git --noconfirm" Distro="Arch-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Distro_DIR="$HOME/$Distro" elif command -v dnf &> /dev/null; then PACKAGE_MANAGER="dnf" INSTALL_CMD="sudo dnf install -y" GIT_INSTALL_CMD="sudo dnf install -y git" Distro="Fedora-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Distro_DIR="$HOME/$Distro" elif command -v zypper &> /dev/null; then PACKAGE_MANAGER="zypper" INSTALL_CMD="sudo zypper install -y" GIT_INSTALL_CMD="sudo zypper install -y git" Distro="OpenSUSE-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Distro_DIR="$HOME/$Distro" elif [ "$distro_name" = "NixOS" ]; then PACKAGE_MANAGER="nix" INSTALL_CMD="nix-shell" GIT_INSTALL_CMD="nix-shell -p git curl pciutils" Distro="NixOS-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Distro_DIR="$HOME/$Distro" else echo "${ERROR} Unsupported distribution: $distro_name. Exiting." |
