Toltec is a community-maintained repository of free software for the reMarkable tablet.
Browse the list of available packages →
Toltec works with the Opkg package manager, which is in widespread use in embedded devices.
Opkg is not available by default on the reMarkable, but you can install it by following the instructions described in remarkable_entware.
After installing Opkg on your device, add the Toltec repository to /opt/etc/opkg.conf
and download the repository data by running the following commands:
$ cat "src/gz toltec https://toltec.delab.re/stable" >> /opt/etc/opkg.conf
$ opkg update
You now have access to all of the Toltec packages!
To install a package:
$ opkg install calculator
To remove a package:
$ opkg remove calculator
To update all packages:
$ opkg update
$ opkg upgrade
See information about advanced Opkg commands →
Choose between the stable and testing channels →
This Git repository contains all the tools and recipes required to build the packages published on the package repository. This repository is automatically built and published every time that a commit is pushed to Git, using Github Actions. Since all the packaged software in Toltec is free, you can also build them from source yourself instead of using the pre-built binaries. The build process is fully reproducible, which means that you can verify that the published packages have not been tampered with during the automated build process.
Learn how to build the repository from source →
Your contribution is welcome for adding new packages, updating existing ones or improving the build tooling.