summaryrefslogtreecommitdiff
path: root/gst-env.py
diff options
context:
space:
mode:
Diffstat (limited to 'gst-env.py')
-rwxr-xr-xgst-env.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/gst-env.py b/gst-env.py
index 64196428be..56d90dddc2 100755
--- a/gst-env.py
+++ b/gst-env.py
@@ -390,6 +390,13 @@ if __name__ == "__main__":
# like other shells such as bash and zsh.
# See: https://gitlab.freedesktop.org/gstreamer/gst-build/issues/18
signal.signal(signal.SIGINT, lambda x, y: True)
+ # Set the prompt
+ args.append('--init-command')
+ prompt_cmd = '''functions --copy fish_prompt original_fish_prompt
+ function fish_prompt
+ echo -n '[gst-{}] '(original_fish_prompt)
+ end'''.format(gst_version)
+ args.append(prompt_cmd)
try:
exit(subprocess.call(args, close_fds=False,
env=get_subprocess_env(options, gst_version)))