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