[Github-comments] [geany/geany-osx] VTE doesn't respect/use PS1 environment variable (#3)

Matthew Brush notifications at xxxxx
Wed Oct 5 02:58:17 UTC 2016


@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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20161004/5df53efe/attachment.html>


More information about the Github-comments mailing list