12 lines
460 B
Bash
12 lines
460 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
. /usr/local/bin/fws-desktop-init-common
|
|
|
|
first_user="$(fws_first_user)"
|
|
|
|
fws_install_packages hyprland xdg-desktop-portal-hyprland xdg-desktop-portal-gtk waybar wofi kitty swaybg swayidle swaylock xorg-xwayland wl-clipboard grim slurp qt5-wayland qt6-wayland sddm
|
|
fws_disable_services lightdm.service gdm.service
|
|
fws_enable_services sddm.service
|
|
fws_write_sddm_config "$first_user" hyprland
|
|
fws_write_dmrc "$first_user" hyprland |