diff options
Diffstat (limited to 'lib/utils/inkscape.py')
| -rw-r--r-- | lib/utils/inkscape.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/utils/inkscape.py b/lib/utils/inkscape.py new file mode 100644 index 00000000..2d0298bc --- /dev/null +++ b/lib/utils/inkscape.py @@ -0,0 +1,15 @@ +from os.path import realpath, expanduser, join as path_join +import sys + +def guess_inkscape_config_path(): + if getattr(sys, 'frozen', None): + path = realpath(path_join(sys._MEIPASS, "..", "..", "..")) + if sys.platform == "win32": + import win32api + + # This expands ugly things like EXTENS~1 + path = win32api.GetLongPathName(path) + else: + path = expanduser("~/.config/inkscape") + + return path |
