You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
3.1 KiB
Bash
89 lines
3.1 KiB
Bash
#!/bin/bash
|
|
|
|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
|
|
|
function error {
|
|
echo -e "\\e[91m$1\\e[39m"
|
|
exit 1
|
|
}
|
|
|
|
if command -v box64 >/dev/null;then
|
|
echo "Updating box64..."
|
|
else
|
|
echo "Installing box64..."
|
|
fi
|
|
"${DIRECTORY}/manage" install-if-not-installed 'Box64' || error "Box64 installation failed!"
|
|
if ! command -v box64 >/dev/null;then
|
|
error "Box64 failed to install somehow!\n/usr/local/bin/box64 does not exist"
|
|
fi
|
|
|
|
# Get dependencies
|
|
DISTRO=$(lsb_release -is)
|
|
if [[ "${DISTRO}" == "Debian" || "${DISTRO}" == "Raspbian" ]]; then
|
|
"${DIRECTORY}/pkg-install" "cmake libxcb-xtest0 libxcb-xfixes0 libturbojpeg0 pulseaudio-utils pulseaudio" "$(dirname "$0")" || exit 1
|
|
elif [[ "${DISTRO}" == "Ubuntu" ]]; then
|
|
"${DIRECTORY}/pkg-install" "cmake libxcb-xtest0 libxcb-xfixes0 libturbojpeg pulseaudio-utils pulseaudio" "$(dirname "$0")" || exit 1
|
|
else
|
|
error "This script can't run on your OS! It HAS to be Debian and derivatives like RPiOS or Ubuntu"
|
|
fi
|
|
|
|
#refresh list of libraries
|
|
sudo ldconfig
|
|
|
|
#For testing, set to false if zoom folder is already there
|
|
if true;then
|
|
echo "Downloading Zoom..."
|
|
rm -rf "${HOME}/zoom" ~/zoom_x86_64.tar.xz
|
|
wget 'https://zoom.us/client/latest/zoom_x86_64.tar.xz' || error 'Failed to download Zoom x86_64!'
|
|
|
|
echo "Extracting..."
|
|
tar -xf ~/zoom_x86_64.tar.xz || error 'Failed to extract Zoom x86_64!'
|
|
rm -f ~/zoom_x86_64.tar.xz #who cares if this fails
|
|
|
|
echo "Getting x86_64 libs..."
|
|
wget https://github.com/chunky-milk/ZoomClient-ARM/raw/master/zoom_x64_libs.zip || error "Failed to download zoom x64 libraries!"
|
|
unzip zoom_x64_libs.zip || error "Failed to extract zoom libraries."
|
|
mv zoom_x64_libs/* zoom/ || error "Failed to move zoom x64 libraries to zoom folder."
|
|
rm -r $HOME/zoom_x64_libs || error "Failed to remove library folder."
|
|
fi
|
|
|
|
echo 'Creating launcher script'
|
|
echo '#!/bin/bash
|
|
trap "echo '\''Zoom exited. Close this terminal to exit'\'' ; sleep infinity" EXIT
|
|
if [ -z "$(ps aux | grep pulseaudio | grep -v grep)" ];then
|
|
echo -e "\e[102m\e[30mLaunching pulseaudio.\e[0m"
|
|
pulseaudio &
|
|
pulsepid=$!
|
|
trap "kill $pulsepid" EXIT
|
|
echo "Pulseaudio PID: $pulsepid"
|
|
sleep 2
|
|
fi
|
|
cd ${HOME}/zoom/
|
|
echo -e "\e[102m\e[30mLaunching Zoom.\e[0m"
|
|
box64 zoom' > "${HOME}/zoom/runzoom.sh"
|
|
chmod +x "${HOME}/zoom/runzoom.sh"
|
|
|
|
echo "Creating a Zoom button in the Main Menu..."
|
|
echo "[Desktop Entry]
|
|
Name=Zoom
|
|
Exec=${DIRECTORY}/etc/terminal-run "\""$HOME/zoom/runzoom.sh %u"\"" 'Close this window to exit Zoom'
|
|
Icon=$(dirname "$0")/icon-64.png
|
|
Path=${HOME}/zoom/
|
|
Type=Application
|
|
Comment=x86_64 version of software platform used for teleconferencing using Box64
|
|
Categories=Network;
|
|
StartupNotify=true" > ~/.local/share/applications/zoom.desktop
|
|
|
|
#Associate with mimeapp
|
|
if [ -z "$(cat ~/.config/mimeapps.list | grep 'zoom.desktop')" ];then
|
|
echo "Associating Zoom mimetypes..."
|
|
echo "[Added Associations]
|
|
x-scheme-handler/zoomus=zoom.desktop;
|
|
x-scheme-handler/zoommtg=zoom.desktop;" >> ~/.config/mimeapps.list
|
|
fi
|
|
|
|
systemctl --user unmask pulseaudio.service pulseaudio.socket
|
|
systemctl --user enable pulseaudio.service pulseaudio.socket
|
|
|
|
echo "Installation complete!"
|