Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caleb531/open-conference-url
An Alfred workflow to open the Zoom/Meet/etc. URL for your next meeting
https://github.com/caleb531/open-conference-url
alfred alfred-workflow google-meet microsoft-teams python workflow zoom-us
Last synced: 3 months ago
JSON representation
An Alfred workflow to open the Zoom/Meet/etc. URL for your next meeting
- Host: GitHub
- URL: https://github.com/caleb531/open-conference-url
- Owner: caleb531
- License: mit
- Created: 2020-07-26T01:45:53.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-05T00:23:03.000Z (7 months ago)
- Last Synced: 2024-04-05T01:57:00.743Z (7 months ago)
- Topics: alfred, alfred-workflow, google-meet, microsoft-teams, python, workflow, zoom-us
- Language: Python
- Homepage:
- Size: 1.38 MB
- Stars: 43
- Watchers: 3
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Open Conference URL
*Copyright 2020-2024 Caleb Evans*
*Released under the MIT license*[![tests](https://github.com/caleb531/open-conference-url/actions/workflows/tests.yml/badge.svg)](https://github.com/caleb531/open-conference-url/actions/workflows/tests.yml)
Open Conference URL is an [Alfred][alfred] workflow which enables you to quickly
open links for Zoom and other conferencing services, based on your upcoming
calendar events.The workflow will be solely supporting Alfred 5 going forward, but the last
release supporting Alfred 4 will remain available here for your convenience.[alfred]: https://www.alfredapp.com/
![Screenshot](screenshot.png)
## Installation
To download the workflow, simply click one of the download links below.
[Download Open Conference URL (Alfred 5)][workflow-download-alfred5]
[workflow-download-alfred5]: https://github.com/caleb531/open-conference-url/raw/main/Open%20Conference%20URL%20(Alfred%205).alfredworkflow
[Download Open Conference URL (Alfred 4)][workflow-download-alfred4]
[workflow-download-alfred4]: https://github.com/caleb531/open-conference-url/raw/main/Open%20Conference%20URL%20(Alfred%204).alfredworkflow
### Command Line Tools
If you are installing the workflow for the first time, you may be prompted to
install Apple's Command Line Tools. These developer tools are required
for the workflow to function, and fortunately, they have a much smaller size
footprint than full-blown Xcode.### Calendar Permissions
To read from your local calendar, the workflow requires Calendar permissions for
both Alfred 5 and Terminal. Visit **Systems Settings > Privacy & Security >
Calendars** to grant them these permissions. Make sure that you select **Full
Access** (instead of just *Add Only*).## Usage
To use, simply type the `conf` command into Alfred, and you will see a list of
upcoming calendar events. It does this by including all events within +/- 20
minutes of your system's current time, so even if you're running late to a
meeting, the logical event will show.The workflow also accounts for timezones and Daylight Saving Time (DST). All
times are displayed in your system's local timezone.## Configuration
This workflow contains configuration for various aspects of the workflow's
behavior. For details on how to find these configuration settings, you can refer
to [the Alfred help article on Workflow Configuration][workflow-configuration].[workflow-configuration]: https://www.alfredapp.com/help/workflows/user-configuration/
### Conference Domains
A comma-separated list of domain names representing which URLs to check within
each calendar event. This domains list determines which links are considered
"conference" URLs.The domains are listed in order of precedence, so if `zoom.us` precedes
`google.com` in the list, then the workflow will prefer Zoom links over Google
Meet links if both are present in a calendar event.If you wish to match a subdomain, you must specify it explicitly (e.g.
`teams.microsoft.com`). However, you can also match all subdomains via the
asterisk character (`*`) as a wildcard (e.g. `*.zoom.us`).### Calendar Names
A comma-separated list of calendar names on your local system for which to fetch
events. If you leave this field blank, then the workflow will implicitly fetch
check all calendars for event data.### Time Threshold
An integer representing the number of minutes before/after a meeting. If an
event is within this duration of time (relative to the system's current time),
it will be displayed in Alfred's results.For example, a value of `30` will mean the workflow will only show
events whose start time was within the last 30 minutes *or* whose start time is
within the next 20 minutes.### Use Direct Zoom Links
Launches meetings directly in the Zoom application, bypassing your web browser
entirely.### Use Direct Teams Links
Opens Microsoft Teams links directly in the Microsoft Teams application,
bypassing your web browser entirely.### Use icalBuddy
Uses icalBuddy to source calendar event data (instead of AppleScript). Enabling
this option (assuming you have icalBuddy installed) can drastically improve the
workflow's performance if you have a very large number of events across your
calendars.You must have icalBuddy installed via Homebrew for this to work. To install, open a Terminal and run:
```sh
brew install ical-buddy
```After you have installed icalBuddy, *make sure* you check the box in the
workflow configuration to fully enable the integriation.### Time System
Whether 12-hour or 24-hour time is used for the displayed event start times.
## Credits
Kudos to [@jacksonrayhamilton][jrh] for his architecture ideas and feedback on
this project.[jrh]: https://github.com/jacksonrayhamilton