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
|
Q: How to use Osmo with different configurations?
A: Since version 0.4.0 Osmo uses XDG Base Directory Specification
(http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html)
for storing configuration and data files.
The files are stored in locations indicated by XDG_CONFIG_HOME and
XDG_DATA_HOME environmental variables. Typically, these variables are set
to $HOME/.config/osmo and $HOME/.local/share/osmo directories.
In order to run Osmo with other setup, these variables have to be
adjusted - e.g. (for BASH shell):
export XDG_CONFIG_HOME="path/to/osmo/config"
export XDG_DATA_HOME="path/to/osmo/data"
===============================================================================
Q: Does Osmo support data synchronization with online services?
A: Unfortunately no. Because of lack of our interest in such feature we do not
plan to work on it. Any patches related to data synchronization functionality
are welcome.
|