Skip to content

Commit 072c08d

Browse files
fix bashisms
1 parent e5fdbff commit 072c08d

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

core/tabs/system-setup/debian/hyprland-kool-deb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
. ../../common-script.sh
44

5-
echo "Hyprland JaKooLit"
5+
printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}"
66
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; }
77
cd "$HOME/Debian-Hyprland"
88
chmod +x install.sh
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/bin/bash
22

3-
echo "Hyprland JaKooLit"
3+
. ../../common-script.sh
44

5-
git clone --depth=1 https://github.com/JaKooLit/Fedora-Hyprland.git ~/Fedora-Hyprland
5+
printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}"
6+
7+
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; }
68
cd "$HOME/Fedora-Hyprland"
79
chmod +x install.sh
810
./install.sh
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/bin/bash
22

3-
echo "Hyprland JaKooLit"
3+
. ../../common-script.sh
44

5-
git clone -b 24.04 --depth=1 https://github.com/JaKooLit/Ubuntu-Hyprland.git ~/Ubuntu-Hyprland-24.04
6-
cd ~/Ubuntu-Hyprland-24.04
5+
printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}"
6+
7+
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; }
8+
cd "$HOME/Ubuntu-Hyprland-24.04"
79
chmod +x install.sh
810
./install.sh

0 commit comments

Comments
 (0)