mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 02:10:13 +01:00
35 lines
750 B
Bash
35 lines
750 B
Bash
#!/bin/bash
|
|
# https://github.com/JaKooLit
|
|
|
|
Distro="Debian-Hyprland"
|
|
Github_URL="https://github.com/JaKooLit/$Distro.git"
|
|
Distro_DIR="$HOME/$Distro"
|
|
|
|
printf "\n%.0s" {1..1}
|
|
# Package GIT
|
|
if ! command -v git &> /dev/null
|
|
then
|
|
echo "Git not found! Installing Git..."
|
|
sudo apt update && sudo apt install -y git
|
|
fi
|
|
|
|
printf "\n%.0s" {1..1}
|
|
|
|
# Check if the repository already exists
|
|
if [ -d "$Distro_DIR" ]; then
|
|
echo "$Distro_DIR exists. Updating the repository..."
|
|
cd "$Distro_DIR"
|
|
git stash && git pull
|
|
chmod +x install.sh
|
|
./install.sh
|
|
else
|
|
echo "$Distro_DIR does not exist. Cloning the repository..."
|
|
git clone --depth=1 "$Github_URL" "$Distro_DIR"
|
|
cd "$Distro_DIR"
|
|
chmod +x install.sh
|
|
./install.sh
|
|
fi
|
|
|
|
|
|
|