Created
February 27, 2025 22:14
-
-
Save emilwojcik93/ce8bc387973056832f9a1a714bb36a01 to your computer and use it in GitHub Desktop.
Script to run JaKooLit_Ubuntu-Hyprland
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Check if the system is Ubuntu | |
if [[ -f /etc/os-release ]]; then | |
. /etc/os-release | |
if [[ "$ID" == "ubuntu" ]]; then | |
echo "Ubuntu detected: $PRETTY_NAME" | |
else | |
echo "This script is only for Ubuntu systems." | |
exit 1 | |
fi | |
else | |
echo "/etc/os-release file not found. This script is only for Ubuntu systems." | |
exit 1 | |
fi | |
# Parse arguments | |
PRESET=false | |
declare -A OPTIONS | |
OPTIONS=( | |
["nvidia"]="N" | |
["gtk_themes"]="N" | |
["bluetooth"]="N" | |
["thunar"]="N" | |
["thunar_choice"]="N" | |
["input_group"]="N" | |
["ags"]="N" | |
["sddm"]="N" | |
["sddm_theme"]="N" | |
["xdph"]="N" | |
["zsh"]="N" | |
["pokemon_choice"]="N" | |
["nwg"]="N" | |
["rog"]="N" | |
["dots"]="N" | |
) | |
while [[ "$#" -gt 0 ]]; do | |
case $1 in | |
--preset) PRESET=true;; | |
--*=*) OPTION="${1%%=*}"; OPTION="${OPTION#--}"; VALUE="${1#*=}"; OPTIONS[$OPTION]="$VALUE";; | |
*) echo "Unknown parameter passed: $1"; exit 1;; | |
esac | |
shift | |
done | |
# Check if the remote branch exists | |
REPO_URL="https://github.com/JaKooLit/Ubuntu-Hyprland.git" | |
BRANCH_EXISTS=$(git ls-remote --heads $REPO_URL $VERSION_ID | wc -l) | |
if [[ $BRANCH_EXISTS -eq 1 ]]; then | |
echo "Branch $VERSION_ID exists. Cloning the repository..." | |
git clone -b $VERSION_ID --depth=1 $REPO_URL ~/Ubuntu-Hyprland-$VERSION_ID | |
cd ~/Ubuntu-Hyprland-$VERSION_ID | |
chmod +x install.sh | |
if $PRESET; then | |
echo "Running with preset values..." | |
./install.sh --preset | |
else | |
echo "Updating preset.sh based on passed arguments..." | |
for OPTION in "${!OPTIONS[@]}"; do | |
sed -i "s/^$OPTION=.*/$OPTION=\"${OPTIONS[$OPTION]}\"/" preset.sh | |
done | |
./install.sh | |
fi | |
else | |
echo "Branch $VERSION_ID does not exist in the repository." | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment