mirror of
https://github.com/ManInDark/bootc-image.git
synced 2026-01-20 22:44:28 +01:00
17 lines
363 B
Bash
Executable File
17 lines
363 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ouex pipefail
|
|
|
|
dnf5 copr enable -y solopasha/hyprland
|
|
dnf5 install -y \
|
|
hyprland \
|
|
hypridle \
|
|
hyprlock \
|
|
hyprpolkitagent \
|
|
waybar \
|
|
pavucontrol \
|
|
cliphist
|
|
|
|
|
|
echo 'if [[ $(ps aux | grep hyprland | wc -l) -eq 1 ]]; then cd $HOME && echo "launch hyprland?" && read && hyprland ; fi' >> /etc/profile.d/launch_hyprland.sh
|