Add missing appimages for void

This commit is contained in:
askiiart 2024-04-18 08:33:31 -05:00
parent 6199ce3d88
commit f5f010edd6
Signed by untrusted user who does not match committer: askiiart
GPG key ID: EA85979611654C30
4 changed files with 9 additions and 2 deletions

View file

@ -36,7 +36,6 @@ elif command_exists "xbps-install"; then
mkdir ~/Applications mkdir ~/Applications
cd ~/Applications cd ~/Applications
curl -LO $(curl -s https://api.github.com/repos/TheAssassin/AppImageLauncher/releases/latest | grep "browser_download_url.*appimagelauncher_.*-x86_64.AppImage" | cut -d : -f 2,3 | tr -d \") -C - curl -LO $(curl -s https://api.github.com/repos/TheAssassin/AppImageLauncher/releases/latest | grep "browser_download_url.*appimagelauncher_.*-x86_64.AppImage" | cut -d : -f 2,3 | tr -d \") -C -
curl -LO $(curl -s https://api.github.com/repos/DavidoTek/ProtonUp-Qt/releases/latest | grep "browser_download_url.*ProtonUp-Qt-.*-x86_64.AppImage" | head --lines 1 | cut -d : -f 2,3 | tr -d \") -C -
cd - cd -
echo "AppImageLauncher is in ~/Applications, deal with it yourself or update this script" echo "AppImageLauncher is in ~/Applications, deal with it yourself or update this script"
else else

View file

@ -34,6 +34,9 @@ elif command_exists "xbps-install";
# missing: hexgl, drawing, clippy, schildichat, genisoimage # missing: hexgl, drawing, clippy, schildichat, genisoimage
# not included: libfreeglut, don't think that's required # not included: libfreeglut, don't think that's required
sudo xbps-install kitty neovim gcc vlc ncdu gcolor3 rustup p7zip mosh krita podman podman-compose gajim progress yt-dlp zstd iperf3 sudo xbps-install kitty neovim gcc vlc ncdu gcolor3 rustup p7zip mosh krita podman podman-compose gajim progress yt-dlp zstd iperf3
cd ~/Applications
curl -LO $(curl -s https://api.github.com/repos/SchildiChat/schildichat-desktop/releases/latest | grep "browser_download_url.*SchildiChat-.*.AppImage" | head --lines 1 | cut -d : -f 2,3 | tr -d \") -C -
cd -
else else
echo "Unsupported: unknown package manager and distro" echo "Unsupported: unknown package manager and distro"
exit exit

View file

@ -31,6 +31,9 @@ elif command_exists "yay"; then
elif command_exists "xbps-install"; then elif command_exists "xbps-install"; then
sudo xbps-install steam gperftools gperftools-32bit sudo xbps-install steam gperftools gperftools-32bit
# missing: protonup-qt # missing: protonup-qt
cd ~/Applications
curl -LO $(curl -s https://api.github.com/repos/DavidoTek/ProtonUp-Qt/releases/latest | grep "browser_download_url.*ProtonUp-Qt-.*-x86_64.AppImage" | head --lines 1 | cut -d : -f 2,3 | tr -d \") -C -
cd -
else else
echo "IDK" echo "IDK"
fi fi

View file

@ -17,7 +17,9 @@ elif command_exists "yum"; then
elif command_exists "pacman"; then elif command_exists "pacman"; then
yay -S vesktop-bin --noconfirm --needed yay -S vesktop-bin --noconfirm --needed
elif command_exists "xbps-install"; then elif command_exists "xbps-install"; then
echo "VESKTOP UNSUPPORTED ON VOID" cd ~/Applications
curl -LO $(curl -s https://api.github.com/repos/Vencord/Vesktop/releases/latest | grep "browser_download_url.*Vesktop-.*.AppImage" | head --lines 1 | cut -d : -f 2,3 | tr -d \")
cd -
else else
echo "IDK, check the repo: https://github.com/Vencord/Vesktop" echo "IDK, check the repo: https://github.com/Vencord/Vesktop"
fi fi