Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

deb-get: Add sengi. Close #130 #150

Merged
merged 1 commit into from
May 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ The software below can be installed, updated and removed using `deb-get`.
<img src=".github/github.png" align="top" width="20" /> [Rocketchat Desktop](https://rocket.chat/) (`rocketchat`) - <i>Official Desktop Client for Rocket.Chat.</i><br />
<img src=".github/github.png" align="top" width="20" /> [Raspberry Pi Imager](https://github.com/raspberrypi/rpi-imager) (`rpi-imager`) - <i>Raspberry Pi Imaging Utility.</i><br />
<img src=".github/direct.png" align="top" width="20" /> [RStudio](https://www.rstudio.com/) (`rstudio`) - <i>Professional software for data science teams.</i><br />
<img src=".github/github.png" align="top" width="20" /> [Sengi](https://github.com/NicolasConstant/sengi) (`sengi`) - <i>Tweetdeck inspired Mastodon & Pleroma Multi-account Desktop Client.</i><br />
<img src=".github/debian.png" align="top" width="20" /> [Signal](https://signal.org/) (`signal-desktop`) - <i>Private Messenger.</i><br />
<img src=".github/github.png" align="top" width="20" /> [Simplenote](https://simplenote.com/) (`simplenote`) - <i>The simplest way to keep notes.</i><br />
<img src=".github/debian.png" align="top" width="20" /> [Skype](https://www.skype.com/) (`skypeforlinux`) - <i>Stay connected with free video calls worldwide.</i><br />
Expand Down
9 changes: 9 additions & 0 deletions deb-get
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down