@pwil3058 as a Python-specific workaround, you might do something like (untested):
```python
import os
env = dict(os.environ)
env["PS1"] = "\\w \\$"
# or something like:
# env["PS1"] = env.get("PS1", "\\w \\$")
subprocess.Popen(["geany", "-i"], env=env)
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-osx/issues/3#issuecomment-251569987
