11 lines
224 B
Bash
11 lines
224 B
Bash
echo "Configure SDDM to use Wayland for the greeter"
|
|
|
|
sudo mkdir -p /etc/sddm.conf.d
|
|
cat <<EOF | sudo tee /etc/sddm.conf.d/10-wayland.conf >/dev/null
|
|
[General]
|
|
DisplayServer=wayland
|
|
|
|
[Wayland]
|
|
CompositorCommand=Hyprland
|
|
EOF
|