From 9253d85c814f5f21240e8d11fc292dc8ecdd5f5d Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Wed, 20 May 2026 13:42:02 +0200 Subject: [PATCH] init faq.md Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com> --- docs/faq.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 docs/faq.md diff --git a/docs/faq.md b/docs/faq.md new file mode 100644 index 0000000..b48db79 --- /dev/null +++ b/docs/faq.md @@ -0,0 +1,27 @@ +## How do I convert a temporary session into a regular project? + +Temporary sessions are stored under `/tmp/spilltea//` and will be lost on reboot. To keep the data, move the directory into the Spilltea projects folder and give it a name. + +**1. Find the temporary session directory** + +```bash +ls /tmp/spilltea/ +``` + +You will see one or more directories with a random hex name (e.g. `a1b2c3d4`). + +**2. Move it to the projects folder** + +```bash +mv /tmp/spilltea/ ~/.local/share/spilltea/ +``` + +The project name must only contain lowercase letters, digits, `-`, and `_`. + +**3. Open the project** + +```bash +spilltea -P my-project +``` + +Or simply launch Spilltea and pick `my-project` from the project list.