Add a workaround for installing ytmdesktop

This commit is contained in:
Manuel Thalmann 2023-05-03 22:11:02 +02:00
parent 4a40fbf580
commit 648da4ff8c
2 changed files with 20 additions and 10 deletions

View file

@ -81,10 +81,15 @@ yay --noconfirm -Syu \
discord \
openasar-git;
# Media
yay --noconfirm -Syu electron13-bin;
# Python
yay --noconfirm -Syu \
ytmdesktop;
python \
python-pip \
pyenv \
python-pipenv;
# Media
. "../Software/ytmdesktop/install.sh";
# Coding
yay --noconfirm -Syu \
@ -98,13 +103,6 @@ yay --noconfirm -Syu \
yay --noconfirm -Syu nodejs-n;
sudo n install latest;
# Python
yay --noconfirm -Syu \
python \
python-pip \
pyenv \
python-pipenv;
# Docker
. "../Software/docker/install.sh";

View file

@ -0,0 +1,12 @@
#!/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";