diff --git a/README.md b/README.md index 86b204d1a..8e46c20b0 100644 --- a/README.md +++ b/README.md @@ -309,6 +309,7 @@ cog.out(pretty_list) | [](https://github.com/hakandundar34coding/system-monitoring-center) | `system-monitoring-center` | Multi-featured system monitor. | | [](https://tailscale.com/) | `tailscale` | Zero config VPN. Works on any device, manages firewall rules for you, and works from anywhere. | | [](https://www.microsoft.com/microsoft-teams/group-chat-software) | `teams` | Team chat and collaboration. | +| [](https://github.com/IsmaelMartinez/teams-for-linux) | `teams-for-linux` | unofficial Microsoft Teams for LInux | | [](https://www.teamviewer.com/) | `teamviewer` | The Remote Desktop Software. | | [](https://github.com/influxdata/telegraf) | `telegraf` | The plugin-driven server agent for collecting & reporting metrics. | | [](https://www.terraform.io/) | `terraform` | Automate Infrastructure on Any Cloud. | diff --git a/deb-get b/deb-get index 0551be81f..5ba2bce72 100755 --- a/deb-get +++ b/deb-get @@ -714,6 +714,18 @@ function deb_git-delta() { SUMMARY="A syntax-highlighting pager for 'git', 'diff', and 'grep' output." } +function deb_teams-for-linux() { + ARCHS_SUPPORTED="amd64 arm64 armv7l" + get_github_releases "https://api.github.com/repos/IsmaelMartinez/teams-for-linux/releases/latest" + if [ "${ACTION}" != "prettylist" ]; then + URL=$(grep "browser_download_url.*${HOST_ARCH}\.deb\"" "${CACHE_DIR}/${APP}.json" | head -n1 | cut -d'"' -f4) + VERSION_PUBLISHED="$(echo "${URL}" | cut -d'_' -f2)" + fi + PRETTY_NAME="teams-for-linux" + WEBSITE="https://github.com/IsmaelMartinez/teams-for-linux" + SUMMARY="unofficial Microsoft Teams for LInux" +} + function deb_fd() { ARCHS_SUPPORTED="amd64 arm64 armhf" get_github_releases "https://api.github.com/repos/sharkdp/fd/releases/latest"