30 lines
669 B
Bash
30 lines
669 B
Bash
#!/bin/bash
|
|
# 💫 https://github.com/JaKooLit 💫 #
|
|
# Hyprland-Dots to download from main #
|
|
|
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
|
|
|
source "$(dirname "$(readlink -f "$0")")/Global_functions.sh"
|
|
|
|
# Check if Hyprland-Dots exists
|
|
printf "${NOTE} Downloading KooL's Hyprland Dots....\n"
|
|
|
|
if [ -d Hyprland-Dots ]; then
|
|
cd Hyprland-Dots
|
|
git stash
|
|
git pull
|
|
git stash apply
|
|
chmod +x copy.sh
|
|
./copy.sh
|
|
else
|
|
if git clone --depth 1 https://github.com/JaKooLit/Hyprland-Dots; then
|
|
cd Hyprland-Dots || exit 1
|
|
chmod +x copy.sh
|
|
./copy.sh
|
|
else
|
|
echo -e "$ERROR Can't download Hyprland-Dots"
|
|
fi
|
|
fi
|
|
|
|
clear
|