-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathretrosync.toml
More file actions
36 lines (31 loc) · 1.02 KB
/
retrosync.toml
File metadata and controls
36 lines (31 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# RetroSync configuration file
[node]
port = 9877
discovery_port = 9876
role = "server"
name = "Upstairs Retrobat PC" # optional; defaults to hostname
# Each [[sync]] block defines a named group of files to sync.
# Files are shared with peers as "<group-name>/<filename>".
# Peers map the same group name to their own local paths.
#
# Path format: "path/to/dir/" — sync all files in dir
# "path/to/dir/[*.srm]" — sync only .srm files
# "path/to/dir/[*.state;*.png]" — sync .state and .png files
[[sync]]
name = "snes-saves"
paths = [
"J:/RetroBat/saves/snes/[*.srm]",
"J:/RetroBat/saves/snes/libretro.snes9x/[*.state;*.png]",
]
# [[sync]]
# name = "gba-saves"
# paths = [
# "J:/RetroBat/saves/gba/[*.srm]",
# "J:/RetroBat/saves/gba/libretro.mgba/[*.state;*.png]",
# ]
# [[sync]]
# name = "n64-saves"
# paths = [
# "J:/RetroBat/saves/n64/[*.srm;*.fla;*.mpk]",
# "J:/RetroBat/saves/n64/libretro.mupen64plus_next/[*.state;*.png]",
# ]