Add Zoom PWA app
parent
330605ba7c
commit
81fdc04f83
@ -0,0 +1 @@
|
||||
Botspot
|
@ -0,0 +1,9 @@
|
||||
Web-app for Zoom
|
||||
This is basically a web browser running Zoom's new Progressive Web App. Performance is better in some ways and worse in others.
|
||||
This app should be considered a backup option, only used if the regular Zoom app doesn't work at all.
|
||||
Both versions can be installed at the same time and will not interfere with each another.
|
||||
|
||||
Note: this app requires you to have chromium-browser, chromium, or google-chrome installed. Let us know if your Chromium-based browser is not detected by the script.
|
||||
|
||||
To run: Menu -> Internet -> Zoom PWA
|
||||
To run in a terminal: cat ~/.local/share/applications/chrome-gbmplfifepjenigdepeahbecfkcalfhg-Zoom-PWA.desktop | grep Exec | sed 's/Exec=//g' | bash
|
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.9 KiB |
@ -0,0 +1,18 @@
|
||||
#!/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
|
||||
}
|
||||
|
||||
echo "Downloading zoom-pwa repository"
|
||||
rm -rf ~/zoom-pwa
|
||||
git clone https://github.com/Botspot/zoom-pwa
|
||||
|
||||
echo "Running the built-in installation script"
|
||||
~/zoom-pwa/install.sh || error "The zoom-pwa/install.sh indicated a failure. Please review errors above this point."
|
||||
|
||||
echo "Cleaning up"
|
||||
rm -rf ~/zoom-pwa
|
@ -0,0 +1,16 @@
|
||||
#!/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
|
||||
}
|
||||
|
||||
echo -n "Removing files... "
|
||||
|
||||
rm -f ~/.local/share/applications/*gbmplfifepjenigdepeahbecfkcalfhg*
|
||||
rm -rf ./zoom-pwa
|
||||
rm -rf ~/.config/Zoom-PWA
|
||||
|
||||
echo Done
|
@ -0,0 +1 @@
|
||||
https://github.com/Botspot/zoom-pwa
|
Loading…
Reference in New Issue