-
This repo is great! Thank you very much! How do I start and connect to an SSH session without opening up a workspace like it suggests here. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hey @djsnipa1, which operating system are you using? If you're using kitty, you may want to see https://sw.kovidgoyal.net/kitty/open_actions/#scripting-the-opening-of-files-with-kitty-on-macos to handle the I have to update the readme, some work left. |
Beta Was this translation helpful? Give feedback.
-
@axonasif I mainly use MacOS: WezTerm or Alacritty and I actually use SSH a lot with my iPhone: blink.sh shell or ShellFish. I know how to connect to ssh:// on all of the listed terminal emulators. I'm wondering how do I get the ssh url to connect to? The ssh command that I currently have to copy and paste from the Gitpod Dashboard. Thanks again for your time! |
Beta Was this translation helpful? Give feedback.
-
Ah, cool! I'm concatenating the ssh address from here with the help of some environment variables: In shell it would be ssh://${GITPOD_WORKSPACE_ID}@${GITPOD_WORKSPACE_ID}.ssh.${GITPOD_WORKSPACE_CLUSTER_HOST} Hope that helps! |
Beta Was this translation helpful? Give feedback.
Ah, cool! I'm concatenating the ssh address from here with the help of some environment variables:
https://github.com/axonasif/dotfiles/blob/d86ce10be9cd08ff2911f09e7eff71449bdd2090/src/utils/vimpod.py#L27
This python script launches the
ssh://
URL for me. I start it here:https://github.com/axonasif/dotfiles/blob/d86ce10be9cd08ff2911f09e7eff71449bdd2090/src/config/tmux.sh#L12
In shell it would be
Hope that helps!