2025-07-16 14:19:03 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
2025-07-22 12:36:56 -04:00
|
|
|
yay -S --noconfirm --needed \
|
|
|
|
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 12:36:56 -04:00
|
|
|
chromium
|
2025-07-22 15:47:25 +02:00
|
|
|
|
|
|
|
# Add screen recorder based on GPU
|
2025-07-22 12:37:57 -04:00
|
|
|
if lspci | grep -qi 'nvidia'; then
|
2025-07-22 12:36:56 -04:00
|
|
|
yay -S --noconfirm --needed wf-recorder
|
2025-07-22 15:47:25 +02:00
|
|
|
else
|
2025-07-22 12:36:56 -04:00
|
|
|
yay -S --noconfirm --needed wl-screenrec
|
2025-07-22 15:47:25 +02:00
|
|
|
fi
|