mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2025-02-24 09:57:03 +00:00
16 lines
598 B
Bash
16 lines
598 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
. ../../common-script.sh
|
||
|
|
||
|
printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}"
|
||
|
|
||
|
if ! pacman -Q base-devel >/dev/null 2>&1; then
|
||
|
printf "%b\n" "${YELLOW}Installing base-devel...${RC}"
|
||
|
"$ESCALATION_TOOL" pacman -S --noconfirm base-devel
|
||
|
fi
|
||
|
|
||
|
git clone --depth=1 https://github.com/JaKooLit/Arch-Hyprland.git "$HOME/Arch-Hyprland" || { printf "%b\n" "${RED}Failed to clone Jakoolits Arch-Hyprland repo${RC}"; exit 1; }
|
||
|
cd "$HOME/Arch-Hyprland" || { printf "%b\n" "${RED}Failed to navigate to Arch-Hyprland directory${RC}"; exit 1; }
|
||
|
chmod +x install.sh
|
||
|
./install.sh
|