In addition:
For syncing settings as well under Linux I use the following start
script to import settings before running gnucash and export settings
afterwards with dconf:
8< --------------------------------------------
#!/bin/sh
# Start GnuCash with import and export of settings
#
HOME_DIR="${HOME}"
GNUCASH="$(command -v gnucash)"
[ "$?" -ne 0 ] && { echo 'gnucash: command not found.'; exit 1; }
DCONF_BKP="${HOME_DIR}/.config/gnucash/preferences.dconf"
if [ -f "${DCONF_BKP}" ]; then
dconf load /org/gnucash/ < "${DCONF_BKP}"
fi
"${GNUCASH}" $*
dconf dump /org/gnucash/ > "${DCONF_BKP}"
8< --------------------------------------------
Under MacOS X the following directory is used:
~/Library/Preferences/gnucash.plist.
Under Windows the windows registry is used to store the settings under
HKEY_CURRENT_USER/software/GSettings. You could use Powershell or the
command line to import and export the settings. Use e.g. "reg export /?"
to get detailed help.
I do synchronize the following directories. They are not all required at
the same time, some are for older and some for newer versions of gnucash
and aqbanking. This is for Linux. As Adrien said, check the wiki for the
correct locations for your operating system and which you need for your
version of GnuCash:
.aqbanking
.gnucash
.abtransfers
.local/share/gnucash
.gconf/apps/gnucash
.config/gnucash
Regards,
Manfred
Am 08.10.2020 20:55, schrieb Adrien Monteleone:
#1 yes (see the wiki about storage locations for your operating system)
#2 I don't think you can change it, buy you can add it to your
GoogleDrive sync list.
Regards,
Adrien
On 10/8/20 12:13 PM, Fran_3 via gnucash-user wrote:
The GnuCash file entityA.gnucash is saved on Google Drive.GnuCash is
installed on both pcX and pcY at locations X and Y.
Google Drive is sync'd on both pcX and on pcY...So the entityA.gnucash
file is available locally on both computers hard drive.
This way work can be done from either location.
The Issue:When a custom Transaction Report is created on pcX and
saved...It does not get sync'd up to the cloud so it is not available
if GnuCash is used with pcY from location Y.
The questions:1 - Are the custom Transaction Reports saved as a
special file... or set of files in some local folder?2 - If so can
that folder be changed such that the custom Transaction Reports can be
sync'd to the Google Drive and ultimately be available to both pc's?3
- If not are what alternate solutions exist?
Thanks for any help.
_______________________________________________
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-----
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.