mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 20:29:24 +00:00
29 lines
607 B
Bash
29 lines
607 B
Bash
sudo pacman -Sy --noconfirm --needed \
|
|
sddm \
|
|
sddm-kcm \
|
|
qt6-base qt6-svg qt6-virtualkeyboard qt6-multimedia \
|
|
qt6-wayland qt5-wayland
|
|
|
|
sudo tee /usr/share/wayland-sessions/hyprland.desktop >/dev/null <<EOF
|
|
[Desktop Entry]
|
|
Name=Hyprland
|
|
Comment=An intelligent dynamic tiling Wayland compositor
|
|
Exec=Hyprland
|
|
Type=Application
|
|
DesktopNames=Hyprland
|
|
EOF
|
|
|
|
sudo tee /etc/sddm.conf >/dev/null <<EOF
|
|
[General]
|
|
DefaultSession=hyprland
|
|
|
|
[Theme]
|
|
Current=breeze
|
|
|
|
[Wayland]
|
|
SessionCommand=/usr/share/sddm/scripts/wayland-session
|
|
SessionLogFile=.cache/wayland-session.log
|
|
EOF
|
|
|
|
sudo systemctl enable sddm.service
|