6 lines
218 B
Bash
6 lines
218 B
Bash
echo "Install slurp + wl-screenrec for new ALT+PrintScreen screen recorder"
|
|
|
|
if ! command -v wl-screenrec &>/dev/null || ! command -v slurp &>/dev/null; then
|
|
sudo pacman -S --noconfirm --needed slurp wl-screenrec
|
|
fi
|