Files
omarchy/install/desktop.sh
Andreas Nigg 6d8a1e3bcf wf-recorder instead of wl-screenrec (NVIDIA support for screen recording) (#278)
* use wf-recorder instead of wl-screenrec

wl-screenrec does not support NVIDIA drivers as of now

* install wf-recorder and migration for it

* use wl-screenrec for non-nvidia and wf-recorder otherwise

* useless comment

* only use one of the screen recording features
2025-07-22 08:47:25 -05:00

19 lines
425 B
Bash

#!/bin/bash
# Base packages
PACKAGES="brightnessctl playerctl pamixer wiremix wireplumber \
fcitx5 fcitx5-gtk fcitx5-qt wl-clip-persist \
nautilus sushi ffmpegthumbnailer \
slurp satty \
mpv evince imv \
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