2023-05-03 20:11:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
contextRoot="$(mktemp -d)";
|
|
|
|
pushd "$contextRoot" > /dev/null;
|
|
|
|
|
|
|
|
yay --noconfirm -Syu electron13-bin;
|
|
|
|
|
|
|
|
yes | pipenv run --python 3.10 -- \
|
|
|
|
yay --noconfirm -Syu \
|
2024-03-06 08:49:46 +00:00
|
|
|
ytmdesktop \
|
|
|
|
|| true;
|
2023-05-03 20:11:02 +00:00
|
|
|
|
2023-05-04 14:22:31 +00:00
|
|
|
popd > /dev/null;
|
2023-05-03 20:11:02 +00:00
|
|
|
rm -rf "$contextRoot";
|