Keep it simple

This commit is contained in:
David Heinemeier Hansson
2025-07-22 12:36:56 -04:00
parent 1c69965819
commit ba1e50daa9

View File

@ -1,18 +1,16 @@
#!/bin/bash #!/bin/bash
# Base packages yay -S --noconfirm --needed \
PACKAGES="brightnessctl playerctl pamixer wiremix wireplumber \ brightnessctl playerctl pamixer wiremix wireplumber \
fcitx5 fcitx5-gtk fcitx5-qt wl-clip-persist \ fcitx5 fcitx5-gtk fcitx5-qt wl-clip-persist \
nautilus sushi ffmpegthumbnailer \ nautilus sushi ffmpegthumbnailer \
slurp satty \ slurp satty \
mpv evince imv \ mpv evince imv \
chromium" chromium
# Add screen recorder based on GPU # Add screen recorder based on GPU
if [ -n "$(lspci | grep -i 'nvidia')" ]; then if [ -n "$(lspci | grep -i 'nvidia')" ]; then
PACKAGES="$PACKAGES wf-recorder" yay -S --noconfirm --needed wf-recorder
else else
PACKAGES="$PACKAGES wl-screenrec" yay -S --noconfirm --needed wl-screenrec
fi fi
yay -S --noconfirm --needed $PACKAGES