33 lines
934 B
Markdown
33 lines
934 B
Markdown
# Remarkable Templates Repository
|
|
|
|
This repository contains custom templates for the Remarkable tablet. Follow the steps below to install them on your device.
|
|
|
|
## Installation Instructions
|
|
|
|
### 1. Connect to the Remarkable Tablet
|
|
```sh
|
|
ssh root@10.11.99.1
|
|
mkdir templates
|
|
```
|
|
|
|
### 2. Clone the Repository on Your Local Machine
|
|
```sh
|
|
git clone https://git.aquila-consortium.org/fleclercq/remarkable_templates.git
|
|
cd remarkable_templates
|
|
```
|
|
|
|
### 3. Transfer the Templates to the Remarkable Tablet
|
|
```sh
|
|
scp *.png root@10.11.99.1:/home/root/templates/
|
|
scp templates_updated.json root@10.11.99.1:/usr/share/remarkable/templates/templates.json
|
|
```
|
|
|
|
### 4. Configure the Templates on the Remarkable Tablet
|
|
```sh
|
|
cd /usr/share/remarkable/templates
|
|
for i in /home/root/templates/*.png ; do ln -s $i . ; done
|
|
systemctl restart xochitl
|
|
```
|
|
|
|
After restarting `xochitl`, the new templates should be available for use on your Remarkable tablet.
|
|
|