#!/usr/bin/env bash # Install sound-related packages for Hyprland SOUND_PACKAGES=( pipewire pipewire-alsa pipewire-pulse pipewire-jack wireplumber pavucontrol pamixer playerctl alsa-utils sof-firmware ) paru -S --needed --noconfirm "${SOUND_PACKAGES[@]}" # Enable and start PipeWire services systemctl --user enable --now pipewire pipewire-pulse wireplumber echo "Sound packages installed and services enabled."