fix bashisms

This commit is contained in:
Chris Titus 2025-02-06 15:04:45 -06:00
parent e5fdbfff7d
commit 072c08d9ce
3 changed files with 10 additions and 6 deletions

View File

@ -2,7 +2,7 @@
. ../../common-script.sh
echo "Hyprland JaKooLit"
printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}"
git clone --depth=1 https://github.com/JaKooLit/Debian-Hyprland.git "$HOME/Debian-Hyprland" || { printf "%b\n" "${RED}Failed to clone Jakoolits Debian-Hyprland repo${RC}"; exit 1; }
cd "$HOME/Debian-Hyprland"
chmod +x install.sh

View File

@ -1,8 +1,10 @@
#!/bin/bash
echo "Hyprland JaKooLit"
. ../../common-script.sh
git clone --depth=1 https://github.com/JaKooLit/Fedora-Hyprland.git ~/Fedora-Hyprland
printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}"
git clone --depth=1 https://github.com/JaKooLit/Fedora-Hyprland.git "$HOME/Fedora-Hyprland" || { printf "%b\n" "${RED}Failed to clone Jakoolits Fedora-Hyprland repo${RC}"; exit 1; }
cd "$HOME/Fedora-Hyprland"
chmod +x install.sh
./install.sh

View File

@ -1,8 +1,10 @@
#!/bin/bash
echo "Hyprland JaKooLit"
. ../../common-script.sh
git clone -b 24.04 --depth=1 https://github.com/JaKooLit/Ubuntu-Hyprland.git ~/Ubuntu-Hyprland-24.04
cd ~/Ubuntu-Hyprland-24.04
printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}"
git clone -b 24.04 --depth=1 https://github.com/JaKooLit/Ubuntu-Hyprland.git "$HOME/Ubuntu-Hyprland-24.04" || { printf "%b\n" "${RED}Failed to clone Jakoolits Ubuntu-Hyprland repo${RC}"; exit 1; }
cd "$HOME/Ubuntu-Hyprland-24.04"
chmod +x install.sh
./install.sh