Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Wayfire support #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ installOptions() {

audioChoice=$(drawDialog --title "Audio Server" --menu "If you are unsure, 'pipewire' is recommended.\n\nChoose 'Skip' if you want to skip." 0 0 0 "pipewire" "" "pulseaudio" "")

desktopChoice=$(drawDialog --title "Desktop Environment" --menu "Choose 'Skip' if you want to skip." 0 0 0 "gnome" "" "kde" "" "xfce" "" "sway" "" "i3" "")
desktopChoice=$(drawDialog --title "Desktop Environment" --menu "Choose 'Skip' if you want to skip." 0 0 0 "gnome" "" "kde" "" "xfce" "" "sway" "" "wayfire" "" "i3" "")

if [ "$desktopChoice" == "i3" ]; then
if drawDialog --title "" --yesno "Would you like to install lightdm with i3wm?" 0 0 ; then
Expand Down Expand Up @@ -678,6 +678,12 @@ install() {
echo -e "Sway has been installed. \n"
;;

wayfire)
echo -e "Installing Wayfire window manager... \n"
xbps-install -Sy -R $installRepo -r /mnt wayfire elogind foot xorg-fonts || failureCheck
echo -e "Wayfire has been installed. \n"
;;

i3)
echo -e "Installing i3wm... \n"
xbps-install -Sy -R $installRepo -r /mnt xorg-minimal xinit xterm i3 xorg-fonts || failureCheck
Expand Down