From 5396c96fbeefc03c033da0826b7eae555a9c6270 Mon Sep 17 00:00:00 2001 From: Jonas H Date: Sat, 7 Mar 2026 22:25:12 +0100 Subject: [PATCH] endeavouros support --- install.sh | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 33d7415..5b9ac87 100755 --- a/install.sh +++ b/install.sh @@ -26,6 +26,38 @@ DISTRO=$(detect_distro) # --------------------------------------------------------------------------- case "$DISTRO" in + endeavouros) + # EndeavourOS is Arch-based, use pacman + PACMAN_PACKAGES=( + stow + # prompt + starship + # sway ecosystem + swayidle + # bar & notifications + mako + libnotify # notify-send + # terminal & launcher + fuzzel + # audio & display + wireplumber # wpctl + pipewire-pulse # pactl + brightnessctl + alsa-utils # speaker-test + # screen recording + wf-recorder + slurp + zenity + ffmpeg + # misc + jq + firefox + ) + + echo "Installing packages for EndeavourOS..." + sudo pacman -S --noconfirm "${PACMAN_PACKAGES[@]}" + ;; + fedora) DNF_PACKAGES=( stow @@ -90,7 +122,7 @@ case "$DISTRO" in *) echo "ERROR: Unsupported distribution: $DISTRO" - echo "Supported distributions: fedora, arch" + echo "Supported distributions: fedora, arch, endeavouros" exit 1 ;; esac