mirror of
https://github.com/ManInDark/bootc-image.git
synced 2026-03-09 20:19:49 +01:00
26 lines
583 B
Bash
Executable File
26 lines
583 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ouex pipefail
|
|
|
|
dnf5 install -y pacman
|
|
|
|
yes | pacman -Sy \
|
|
librsvg
|
|
|
|
yes | pacman -Sy \
|
|
hyprland \
|
|
hypridle \
|
|
hyprlock \
|
|
hyprshot \
|
|
hyprpolkitagent \
|
|
cliphist
|
|
|
|
dnf5 copr enable -y erikreider/SwayNotificationCenter
|
|
dnf5 install -y \
|
|
waybar \
|
|
pavucontrol \
|
|
SwayNotificationCenter-git \
|
|
foot
|
|
|
|
echo 'if [[ $(ps aux | grep hyprland | wc -l) -eq 1 ]]; then cd $HOME && echo "launch hyprland?" && read && systemd-run --user --service-type=exec --unit=hyprland --description="hyprland start service" hyprland ; fi' >> /etc/profile.d/launch_hyprland.sh
|