Add void support, plus some other updates

This commit is contained in:
askiiart 2024-04-17 21:41:40 -05:00
parent 2b9c0a8d6c
commit 6199ce3d88
Signed by untrusted user who does not match committer: askiiart
GPG key ID: EA85979611654C30
13 changed files with 62 additions and 12 deletions

View file

@ -31,6 +31,14 @@ elif command_exists "emerge"; then
echo "not yet implemented"
elif command_exists "apk"; then
echo "not yet implemented"
elif command_exists "xbps-install"; then
sudo xbps-install NetworkManager dbus polkit polkit-gnome nano noto-fonts-emoji noto-fonts-cjk python3 python3-pip
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
echo "Unsupported: unknown package manager and distro"
fi