reMehve

Mar 30, 2022 nerd script path: post/reMehve.md

This page contains some scripts for the reMarkable tablet ( my Mehve ).

The mobile app is useful to export annotated PDF.

More awesome resources on github.

Hugojot

My friend Michele has developed hugojot: a script to create a post in hugo with a given image. I use it to quickly organise my jots on the reMarkable, after exporting them as SVG file.

The idea was to have a script to perform the following tasks:

hugojot [file.svg] -t Title

Exporting SVG

You can use this Python3 script to convert a .rm file into a SVG.

scp rM:~/$(ssh rM "ls -1rt .local/share/remarkable/xochitl/*/*.rm | tail -1") new.rm; rM2svg.py -i new.rm -o new.svg

where rM is the reMarkable address in your .ssh/config file.

This should be included into hugojot.

Found on reddit