mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2025-02-24 09:57:03 +00:00
9 lines
439 B
Bash
9 lines
439 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
. ../../common-script.sh
|
||
|
|
||
|
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" || { printf "%b\n" "${RED}Failed to navigate to Debian-Hyprland directory${RC}"; exit 1; }
|
||
|
chmod +x install.sh
|
||
|
./install.sh
|