A tree-style display tool for the reMarkable tablet's document filesystem, showing the hierarchical structure of documents and folders.
Installation via Vellum package manager
vellum install rmtree
Caution
Piping code from the internet directly into bash can be dangerous. Make sure you trust the source and know what it will do to your system.
The easiest way to install is using the installation script that automatically detects your device architecture:
wget -qO- https://github.com/rmitchellscott/rmtree/raw/main/install.sh | bashDownload the correct binary for your device:
# For reMarkable 1/2 (ARMv7):
wget https://github.com/rmitchellscott/rmtree/releases/latest/download/rmtree-armv7.tar.gz
tar -xzf rmtree-armv7.tar.gz
mv rmtree-armv7 rmtree
chmod +x rmtree
# For reMarkable Paper Pro & Paper Pro Move (ARM64):
wget https://github.com/rmitchellscott/rmtree/releases/latest/download/rmtree-aarch64.tar.gz
tar -xzf rmtree-aarch64.tar.gz
mv rmtree-aarch64 rmtree
chmod +x rmtree./rmtree [path] [options]Default path: /home/root/.local/share/remarkable/xochitl
--icons,-i- Show emoji icons (π π π π)--labels,-l- Show document type labels (pdf), (epub), (notebook)--uuid,-u- Show document UUIDs in square brackets (documents only, not folders)--no-color,-n- Disable colored output--version,-v- Show version information
Default (clean, colored):
.
βββ Books
β βββProject Hail Mary
βββ Calendar
β βββ Calendar-2025
βββ To Do
With labels (--labels):
.
βββ Books
β βββ Project Hail Mary (epub)
βββ Calendar
β βββ Calendar-2025 (pdf)
βββ To Do (notebook)
With icons and labels (--icons --labels):
.
βββ π Books
β βββ π Project Hail Mary (epub)
βββ π Calendar
β βββ π Calendar-2025 (pdf)
βββ π To Do (notebook)
With UUIDs (--uuid):
.
βββ Books
β βββProject Hail Mary [3f05b2d1-90e0-458a-b233-7966564d2172]
βββ Calendar
β βββ Calendar-2025 [67f60935-7978-4fe4-b234-64b70ed17c3e]
βββ To Do [d1a44483-3023-4b16-b677-ea75211252ca]