PortValhalla/scripts/Arch/Software/ytmdesktop/install.sh

13 lines
241 B
Bash
Raw Normal View History

#!/bin/bash
contextRoot="$(mktemp -d)";
pushd "$contextRoot" > /dev/null;
yay --noconfirm -Syu electron13-bin;
yes | pipenv run --python 3.10 -- \
yay --noconfirm -Syu \
ytmdesktop;
popd "$contextRoot";
rm -rf "$contextRoot";