From 501156c59ddba8eabd916ad36b9e618e5090d3fd Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Wed, 11 May 2022 01:30:55 +0100 Subject: [PATCH] deb-get: Add sengi. Close #130 --- README.md | 1 + deb-get | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/README.md b/README.md index b28457e4d..026cb297a 100644 --- a/README.md +++ b/README.md @@ -182,6 +182,7 @@ The software below can be installed, updated and removed using `deb-get`. [Rocketchat Desktop](https://rocket.chat/) (`rocketchat`) - Official Desktop Client for Rocket.Chat.
[Raspberry Pi Imager](https://github.com/raspberrypi/rpi-imager) (`rpi-imager`) - Raspberry Pi Imaging Utility.
[RStudio](https://www.rstudio.com/) (`rstudio`) - Professional software for data science teams.
+ [Sengi](https://github.com/NicolasConstant/sengi) (`sengi`) - Tweetdeck inspired Mastodon & Pleroma Multi-account Desktop Client.
[Signal](https://signal.org/) (`signal-desktop`) - Private Messenger.
[Simplenote](https://simplenote.com/) (`simplenote`) - The simplest way to keep notes.
[Skype](https://www.skype.com/) (`skypeforlinux`) - Stay connected with free video calls worldwide.
diff --git a/deb-get b/deb-get index 9498f6ec1..d95ba9799 100755 --- a/deb-get +++ b/deb-get @@ -943,6 +943,15 @@ function deb_caprine() { SUMMARY="Elegant Facebook Messenger desktop app." } +function deb_sengi() { + get_github_releases "https://api.github.com/repos/NicolasConstant/sengi/releases" + VERSION_PUBLISHED="$(grep "browser_download_url.*linux.deb" "${CACHE_DIR}/${APP}.json" | head -n1 | cut -d'"' -f4 | cut -d'/' -f8)" + URL=$(grep "browser_download_url.*linux.deb" "${CACHE_DIR}/${APP}.json" | head -n1 | cut -d'"' -f4) + PRETTY_NAME="Sengi" + WEBSITE="https://github.com/NicolasConstant/sengi" + SUMMARY="Tweetdeck inspired Mastodon & Pleroma Multi-account Desktop Client." +} + function deb_figma-linux() { ARCHS_SUPPORTED="amd64 arm64" get_github_releases "https://api.github.com/repos/Figma-Linux/figma-linux/releases"