You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I have a python script that is running inside of a tmux session. This runs and creates a tmux session. However when I run it everything works great except the new session is created on a seperate tmux server. When I run ps -e | grep tmux I have 1 instance of a tmux: client and two tmux: server. Is there any solution to this? Could I give the PID to the Server() function to have it connect like that?
The text was updated successfully, but these errors were encountered:
Struggled with this for 8 hours as soon as I post the issue I solved.
In case anyone else is struggling with this issue is to run: echo $TMUX | cut -f1 -d','
Then copy the output and place the variable inside the libtmux.Server(None, INSERT_OUTPUT_HERE)
Hello! I have a python script that is running inside of a tmux session. This runs and creates a tmux session. However when I run it everything works great except the new session is created on a seperate tmux server. When I run
ps -e | grep tmux
I have 1 instance of a tmux: client and two tmux: server. Is there any solution to this? Could I give the PID to the Server() function to have it connect like that?The text was updated successfully, but these errors were encountered: