Add a workaround for installing ytmdesktop
This commit is contained in:
parent
02fe186515
commit
e75dc3c57b
2 changed files with 20 additions and 10 deletions
|
@ -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";
|
||||
|
||||
|
|
12
scripts/Arch/Software/ytmdesktop/install.sh
Executable file
12
scripts/Arch/Software/ytmdesktop/install.sh
Executable 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";
|
Loading…
Reference in a new issue