mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2025-03-04 13:57:12 +00:00
14 lines
299 B
Bash
14 lines
299 B
Bash
#!/bin/bash
|
|
|
|
echo "Hyprland JaKooLit"
|
|
|
|
if ! pacman -Q base-devel &>/dev/null; then
|
|
echo "Installing base-devel..."
|
|
sudo pacman -S --noconfirm base-devel
|
|
fi
|
|
|
|
git clone --depth=1 https://github.com/JaKooLit/Arch-Hyprland.git ~/Arch-Hyprland
|
|
cd ~/Arch-Hyprland
|
|
chmod +x install.sh
|
|
./install.sh
|