-
-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a control command to set environment variable used to start new processes #3502
Comments
Was already on my TODO list. Even better to have a ticket for it. |
@normanr Done, here are some examples: xpra info :10 | grep start-env
xpra control :10 start-env unset GTK_CSD
xpra control :10 start-env set GTK_CSD 1
xpra info :10 | grep start-env.GTK_CSD |
👍 I found a workaround, which was to export the variables I want and then run |
@normanr when you |
Manually reconnecting isn't a big issue. Also I have automatic reconnect disabled, because establishing the connection requires me to be present to confirm use of my ssh key. |
Is your feature request related to a problem? Please describe.
I'm always frustrated when I forget to set an environment variable before starting the xpra server, because all programs that I start run without the environment variable until I restart the xpra server (a simple examples is changing
SSH_AUTH_SOCK
after restarting ssh-agent).Describe the solution you'd like
I'd like to be able to set the environment variables used for starting new applications via
xpra control
after I've started xpra.Describe alternatives you've considered
I can just restart xpra, it's a pain. gnu screen allows me to run
:setenv
, so why shouldn't xpra allow something similar.The text was updated successfully, but these errors were encountered: