2025-07-16 14:19:03 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
2025-07-22 15:47:25 +02:00
|
|
|
# Base packages
|
|
|
|
PACKAGES="brightnessctl playerctl pamixer wiremix wireplumber \
|
2025-07-18 23:33:08 -05:00
|
|
|
fcitx5 fcitx5-gtk fcitx5-qt wl-clip-persist \
|
2025-07-10 12:28:42 -07:00
|
|
|
nautilus sushi ffmpegthumbnailer \
|
2025-07-22 15:47:25 +02:00
|
|
|
slurp satty \
|
2025-07-10 12:28:42 -07:00
|
|
|
mpv evince imv \
|
2025-07-22 15:47:25 +02:00
|
|
|
chromium"
|
|
|
|
|
|
|
|
# Add screen recorder based on GPU
|
|
|
|
if [ -n "$(lspci | grep -i 'nvidia')" ]; then
|
|
|
|
PACKAGES="$PACKAGES wf-recorder"
|
|
|
|
else
|
|
|
|
PACKAGES="$PACKAGES wl-screenrec"
|
|
|
|
fi
|
|
|
|
|
|
|
|
yay -S --noconfirm --needed $PACKAGES
|