Includes modular setup, device profile support, and documentation. 🤖 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode <noreply@opencode.ai>
24 lines
426 B
Bash
Executable File
24 lines
426 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Install Hyprland and related software
|
|
|
|
HYPR_PACKAGES=(
|
|
hyprland
|
|
hyprlock
|
|
hypridle
|
|
xdg-desktop-portal-hyprland
|
|
waybar
|
|
rofi-wayland
|
|
mako
|
|
wl-clipboard
|
|
wlogout
|
|
brightnessctl
|
|
alacritty
|
|
ttf-jetbrains-mono
|
|
ttf-nerd-fonts-symbols
|
|
noto-fonts
|
|
)
|
|
|
|
paru -S --needed --noconfirm "${HYPR_PACKAGES[@]}"
|
|
|
|
echo "Hyprland and related tools installed and configured."
|