Package Details: t3code-bin 0.0.20-1

Git Clone URL: https://aur.archlinux.org/t3code-bin.git (read-only, click to copy)
Package Base: t3code-bin
Description: T3 Code desktop app packaged from the upstream AppImage
Upstream URL: https://t3.codes
Licenses: MIT
Conflicts: t3code
Provides: t3code
Submitter: maria_rcks
Maintainer: maria_rcks
Last Packager: maria_rcks
Votes: 6
Popularity: 3.46
First Submitted: 2026-03-07 00:12 (UTC)
Last Updated: 2026-04-17 23:52 (UTC)

Latest Comments

GabeDM commented on 2026-04-11 12:37 (UTC)

Yeah I got the same issue, fixed it by running

sudo mkdir -p /opt/t3code-bin/usr/bin
sudo ln -sf /opt/t3code-bin/t3code /opt/t3code-bin/usr/bin/t3code

the path on the exec should probably be changed to /opt/t3code-bin/t3code instead

rdbt commented on 2026-04-11 04:34 (UTC)

The current launcher script executes /opt/t3code-bin/usr/bin/t3code, but that path does not exist.

This was changed in the latest commit for some reason.

maria_rcks commented on 2026-03-07 13:58 (UTC)

oops my bad, i'll be changing those Hufflez

Hufflez commented on 2026-03-07 00:55 (UTC)

Hey I was working on a PKGBUILD for this at the same time - feel free to add me as a co-maintainer

  • openai-codex-bin probably shouldn't be a hard dep
  • Missing some runtime deps that namcap flags: gdk-pixbuf2, libcups, systemd-libs, hicolor-icon-theme, pango
  • xdg-utils should be a hard dep — Electron needs xdg-open to open external links
  • Extraction should go in prepare() not package()
  • The chmod 644 should be chmod -R a+rX preserves existing execute permissions
  • Setting LD_LIBRARY_PATH to the bundled usr/lib/ will try to load the bundled GTK2 libappindicator/libindicator which can't resolve
  • provides should include the version: provides=("t3code=${pkgver}")
  • Icon should go in hicolor theme dirs, not /usr/share/pixmaps/
  • URL should be the official site (https://t3.codes) not the GitHub repo
  • Missing !debug and !emptydirs in options

GabeDM commented on 2026-03-07 00:32 (UTC)

I was getting permission errors on most of the files installed:

t3code
/usr/bin/t3code: line 25: /opt/t3code-bin/t3-code-desktop: Permission denied

Fixed them by running

sudo chown -R root:root /opt/t3code-bin
sudo chmod -R u=rwX,go=rX /opt/t3code-bin

Probably more broad than needed, but worked fine here