17 lines
497 B
Bash
17 lines
497 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
. /usr/local/bin/fws-desktop-init-common
|
|
|
|
first_user="$(fws_first_user)"
|
|
|
|
fws_remove_xfce
|
|
fws_install_base_apps
|
|
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 hyprland
|
|
fws_write_dmrc "$first_user" hyprland
|