Package Details: todoist-appimage 9.23.1-1

Git Clone URL: https://aur.archlinux.org/todoist-appimage.git (read-only, click to copy)
Package Base: todoist-appimage
Description: The to-do list to organize work & life.
Upstream URL: https://todoist.com/
Keywords: todoist
Licenses: custom:commercial
Submitter: marcionps
Maintainer: rafaelco
Last Packager: rafaelco
Votes: 27
Popularity: 0.92
First Submitted: 2021-02-03 20:52 (UTC)
Last Updated: 2025-11-18 10:40 (UTC)

Pinned Comments

rafaelco commented on 2025-11-18 10:47 (UTC) (edited on 2025-11-19 08:21 (UTC) by rafaelco)

Hello everyone, I introduce myself as the new maintainer of todoist in this repo. Thanks to Carreter for their instructions and Sergey for accepting me into that role.

Although still relatively new at this, any support is much appreciated. If anyone wants to become a co-maintainer, they can reach out to me here or email the one listed on my profile page.

If you ever notice the package is out of date, please flag it and it'll notify me!

Latest Comments

1 2 3 4 5 6 Next › Last »

rafaelco commented on 2025-11-18 10:47 (UTC) (edited on 2025-11-19 08:21 (UTC) by rafaelco)

Hello everyone, I introduce myself as the new maintainer of todoist in this repo. Thanks to Carreter for their instructions and Sergey for accepting me into that role.

Although still relatively new at this, any support is much appreciated. If anyone wants to become a co-maintainer, they can reach out to me here or email the one listed on my profile page.

If you ever notice the package is out of date, please flag it and it'll notify me!

nyslay commented on 2025-10-21 23:22 (UTC) (edited on 2025-10-22 08:42 (UTC) by nyslay)

updated PKGBUILD:


# Based on the template from https://daveparrish.net/posts/2019-11-16-Better-AppImage-PKGBUILD-template.html
# Maintainer : Sergey Kostrukov <sergey at kostrukov dot com>
# Contributor : Tianrui Wei <archlinux_aur at mail dot tianrui-wei dot com>
# Contributor : Marcio Silva <marcionps at gmail dot com>

_pkgname=todoist

pkgname="${_pkgname}"-appimage
pkgver=9.21.0
pkgrel=1
pkgdesc="The to-do list to organize work & life."
arch=('x86_64')
url="https://todoist.com/"
license=('custom:Commercial')
depends=('zlib' 'fuse2' 'appimagelauncher')
options=('!strip' '!debug')
_appimage="${pkgname}-${pkgver}.AppImage"
source_x86_64=("${_appimage}::https://electron-dl.todoist.net/linux/Todoist-linux-${pkgver}-x86_64-latest.AppImage")
noextract=("${_appimage}")
sha256sums_x86_64=('77aeb0cafe1da059d185a48bf6e7fa58c14c90ae7aa072c596ffec078a3ad924')

prepare() {
  chmod +x "${_appimage}"
  ./"${_appimage}" --appimage-extract
}

build() {
  # Adjust .desktop so it will work outside of AppImage container
  sed -i -E "s|Exec=AppRun|Exec=env DESKTOPINTEGRATION=false /usr/bin/${_pkgname} %u|" \
    "squashfs-root/${_pkgname}.desktop"
  # Fix permissions; .AppImage permissions are 700 for all directories
  chmod -R a-x+rX squashfs-root/usr
}

package() {
  # AppImage
  install -Dm755 "${srcdir}/${_appimage}" "${pkgdir}/opt/${pkgname}/${pkgname}.AppImage"

  # Desktop file
  install -Dm644 "${srcdir}/squashfs-root/${_pkgname}.desktop" \
    "${pkgdir}/usr/share/applications/${_pkgname}.desktop"

  # Icon
  install -dm755 "${pkgdir}/usr/share/"
  cp -a "${srcdir}/squashfs-root/usr/share/icons" "${pkgdir}/usr/share/"
  mkdir -p "${pkgdir}/usr/share/pixmaps/"
  install -Dm644 "${srcdir}/squashfs-root/usr/share/icons/hicolor/512x512/apps/todoist.png" "${pkgdir}/usr/share/pixmaps"

  # Symlink executable
  install -dm755 "${pkgdir}/usr/bin"
  ln -s "/opt/${pkgname}/${pkgname}.AppImage" "${pkgdir}/usr/bin/${_pkgname}"
}

carreter commented on 2025-07-20 16:35 (UTC)

Hey everyone, I've stopped using todoist in favor of obsidian. If anyone wants to take over maintaining this package, drop a comment or email me at willow@carreteroc.me and I'll give you instructions on how to keep the package up to date.

Cheers!

carreter commented on 2025-06-17 23:51 (UTC)

Hey @bspire - thanks for flagging this out-of-date so consistently. Would you like me to add you to the list of maintainers? I'm not using Todoist anymore, so I'd like to hand over the package to someone else. Happy to provide you/anyone else that wants to help out with instructions on how to update the package, it's pretty straightforward.

carreter commented on 2025-04-28 14:49 (UTC)

Thank you to @shawny for flagging this out of date. Now bumped to 9.13.1!

carreter commented on 2025-04-06 19:37 (UTC)

Hey all! Two small announcements:

  1. If you ever notice the package is out of date, please flag it and it'll notify me!

  2. If you know how to perform unattended installs of AppImages that don't require appimagelauncher, please drop a comment with info here. appimagelauncher seems to break often, and the closest alternative I've seen (gearlever) doesn't have an unattended CLI install option.

Thanks all!

carreter commented on 2025-01-05 03:13 (UTC)

@mapleafgo unfortunately I don't have the know-how for how to do this. @eggzabyte suggested gearlever, but it doesn't seem to have a CLI option yet (GitHub issue). Does anyone have any suggestions on how to proceed?

mapleafgo commented on 2024-12-23 06:38 (UTC)

appimagelauncher makes many appimage apps start with an error and not start, can todoist not rely on appimagelauncher?