Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mberr/zoom-update-notifier
Notify about new Zoom versions
https://github.com/mberr/zoom-update-notifier
ubuntu zoom
Last synced: about 1 month ago
JSON representation
Notify about new Zoom versions
- Host: GitHub
- URL: https://github.com/mberr/zoom-update-notifier
- Owner: mberr
- License: mit
- Created: 2023-03-10T16:55:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-22T08:11:02.000Z (about 1 year ago)
- Last Synced: 2024-05-02T02:50:38.249Z (7 months ago)
- Topics: ubuntu, zoom
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Zoom Update Notifier for Ubuntu
This repo contains some small utilities to notify about new Zoom versions. It assumes
- Zoom is installed manually via the `.deb` file available from the [official Download page](https://zoom.us/download).
- Python 3 is available
- `apt`, `curl` and `notify-send` are availableIt checks at most once per day if the version returned by the [REST API](https://zoom.us/rest/download?os=linux) matches
the one of the package, and sends a notification when this is not the case.# Installation
- Move / Link `./bin/check_zoom_update.py` to somewhere which is in your `$PATH`, e.g.,
```shell
ln -s ./check_zoom_update.py \
$HOME/bin/check_zoom_update.py
```
You may want to verify that the script is executable
```shell
chmod u+x $HOME/bin/check_zoom_update.py
```
- (optional) let the script run on every login, by moving/linking
the [desktop entry](https://wiki.archlinux.org/title/Desktop_entries):
```shell
ln -s ./zoom_update_check.desktop \
$HOME/.config/autostart/zoom_update_check.desktop
```