Minor change to readme file.

This commit is contained in:
Cacahuete 2021-09-03 23:49:25 +02:00
parent 88864fd027
commit 6a1fceaaa3

View File

@ -1,16 +1,17 @@
## Welcome ## Welcome
This repository contains a template folder to start a fresh [TiddlyWiki](https://tiddlywiki.com/) already containing my favorite plugins and settings. This repository contains a template folder to start a fresh [TiddlyWiki](https://tiddlywiki.com/) already containing my favorite plugins and settings.
**Bonus point:** I added a service file to enable a reboot proof server :sparkles: _(do not forget to modify it to match your current username and folder structure)_ **Bonus point:** I added a service file to enable a reboot proof server :sparkles:\
_(do not forget to modify it to match your current username and folder structure)_
## :memo: Notes ## :memo: Notes
```Bash ```Bash
sudo loginctl enable-linger <current user> sudo loginctl enable-linger <current user>
mkdir -p ~/.config/systemd/user mkdir -p ~/.config/systemd/user
cp template.service ~/.config/systemd/user/ cp TiddlyWiki-template.service ~/.config/systemd/user/
systemctl --user enable <wiki's root folder> systemctl --user enable TiddlyWiki-template.service
systemctl --user daemon-reload systemctl --user daemon-reload
systemctl --user start <wiki's root folder> systemctl --user start TiddlyWiki-template.service
``` ```