Hi All,
I’ve been trying to make my Gramps media folder cross-platform (between Windows and MacOS), and I figured it out but I have some questions…
I’ve found a couple of previous discussions on this topic, but they didn’t really resolve the issue, or they weren’t about Windows and Mac - so instead of reviving those old threads (here and here for reference), I thought I’d post a new one.
my full media path for each system is:
windows: “d:\username\Dropbox\FamHistory\media”
MacOS: “/Users/username/Dropbox/FamHistory/media”
you’ll note I’m storing media on Dropbox, and that I have it installed in my home folder on MacOS (typical) but on a separate drive in Windows (atypical).
In my Gramps installation on both OSes, with my tree loaded, the “Family Tree Media Path” is:
{GRAMPSMEDIA}/Dropbox/FamHistory/media
In my Windows 11 install:
- Win+R (“Run”), then type in “sysdm.cpl” to the box and hit OK
- In the “Advanced” tab of the dialog that pops up, choose “Environment Variables…”
- In the upper panel of the dialog that pops up (“User variables for ”) choose New…
- Variable Name: GRAMPSMEDIA
- Variable Value: D:\username
In my MacOS (Monterey) install:
- go to /Applications/Gramps.app, right-click and choose “Show Package Contents”
- in the Finder window that opens, find gramps_launcher.py in Contents > Resources. Open that using a text or code editor
- near the end of the file, just before
if __name__ == "__main__":
add the lineenviron["GRAMPSMEDIA"] = environ["HOME"]
- Save the file (make sure you do so as TEXT ONLY)
So… Questions I have:
Is there a way I can set a permanent environment variable in MacOS that the Gramps MacOS AIO package will pick up when it runs?
I tried adding GRAMPSMEDIA as an env variable in .zshrc
, .bash_profile
, .bashrc
– I even created a .profile
file. However, I couldn’t get the python in the MacOS All-in-one package to pick up environment variables. I guess I don’t really know how MacOS executes app packages. How does this work? Is there a wayo to get it to work where I don’t have to alter the application package each time I update Gramps?