paths.conf (1212B)
1 [PATHS] 2 # The PATHS section is special, as filenames including $-expression are 3 # expanded using the values from PATHS or the system environment (PATHS 4 # is checked first). libgnunetutil supports expanding $-expressions using 5 # defaults with the syntax "${VAR:-default}". Here, "default" can again 6 # be a $-expression. 7 # 8 # We usually want $HOME for $SYNC_HOME 9 # 10 SYNC_HOME = ${HOME:-${USERPROFILE}} 11 12 # see XDG Base Directory Specification at 13 # http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html 14 # for how these should be used. 15 16 # Persistent data storage 17 SYNC_DATA_HOME = ${XDG_DATA_HOME:-$SYNC_HOME/.local/share}/sync/ 18 19 # Configuration files 20 SYNC_CONFIG_HOME = ${XDG_CONFIG_HOME:-$SYNC_HOME/.config}/sync/ 21 22 # Cached data, no big deal if lost 23 SYNC_CACHE_HOME = ${XDG_CACHE_HOME:-$SYNC_HOME/.cache}/sync/ 24 25 # Runtime data (i.e UNIX domain sockets, locks, always lost on system boot) 26 SYNC_RUNTIME_DIR = ${TMPDIR:-${TMP:-/tmp}}/sync-runtime/ 27 28 # Directory to use for temporary files. 29 SYNC_TMP = ${TMPDIR:-${TMP:-/tmp}}/sync/ 30 31 # DEFAULTCONFIG = /etc/sync.conf 32 # If 'DEFAULTCONFIG' is not defined, the current 33 # configuration file is assumed to be the default, 34 # which is what we want by default...