reMehve
Mar 30, 2022
nerd
script
path: post/reMehve.md
This page contains some scripts for the reMarkable tablet ( my Mehve ).
- remy: a reMarkable tablet manager app
- rMview: livestream the screen
- rmapi: console to upload/dowload files on the rM cloud
- p2r: upload papers from arXiv
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
- copy or move the file.svg to a default folder, say
static/img/jots/todaysdate.svg
- create
post/todaysdate.md
(optionally with title given), in thecategories: [jots]
(appendjots
alle categories) - write in that file something like
{< imgRel pathURL="img/jots/todaysdate.svg" alt="" >}
- git add files created and commit changes
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