Files
bootc-image/build_files/02_hyprland.sh

18 lines
294 B
Bash
Executable File

#!/bin/bash
set -ouex pipefail
dnf5 copr enable -y solopasha/hyprland
dnf5 install -y \
hyprland \
hypridle \
hyprlock \
hyprpolkitagent \
waybar \
pavucontrol
cp /ctx/hypr* /usr/lib/systemd/system
for service in $(ls /ctx/hypr*); do
systemctl enable $service;
done