From f5f010edd674419515d97f12f218fe7cd1076860 Mon Sep 17 00:00:00 2001 From: askiiart Date: Thu, 18 Apr 2024 08:33:31 -0500 Subject: [PATCH] Add missing appimages for void --- distro-specific.bash | 1 - install-stuff/install-misc.sh | 3 +++ install-stuff/install-steam.bash | 3 +++ install-stuff/install-vesktop.bash | 4 +++- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/distro-specific.bash b/distro-specific.bash index 2af1af0..b6a816b 100755 --- a/distro-specific.bash +++ b/distro-specific.bash @@ -36,7 +36,6 @@ elif command_exists "xbps-install"; then mkdir ~/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/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 - echo "AppImageLauncher is in ~/Applications, deal with it yourself or update this script" else diff --git a/install-stuff/install-misc.sh b/install-stuff/install-misc.sh index f2c248c..dbfb5c2 100755 --- a/install-stuff/install-misc.sh +++ b/install-stuff/install-misc.sh @@ -34,6 +34,9 @@ elif command_exists "xbps-install"; # missing: hexgl, drawing, clippy, schildichat, genisoimage # 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 + 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 echo "Unsupported: unknown package manager and distro" exit diff --git a/install-stuff/install-steam.bash b/install-stuff/install-steam.bash index 7e4dd79..c38d411 100755 --- a/install-stuff/install-steam.bash +++ b/install-stuff/install-steam.bash @@ -31,6 +31,9 @@ elif command_exists "yay"; then elif command_exists "xbps-install"; then sudo xbps-install steam gperftools gperftools-32bit # 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 echo "IDK" fi diff --git a/install-stuff/install-vesktop.bash b/install-stuff/install-vesktop.bash index 5a0e995..c80bb7c 100755 --- a/install-stuff/install-vesktop.bash +++ b/install-stuff/install-vesktop.bash @@ -17,7 +17,9 @@ elif command_exists "yum"; then elif command_exists "pacman"; then yay -S vesktop-bin --noconfirm --needed 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 echo "IDK, check the repo: https://github.com/Vencord/Vesktop" fi