You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

13 lines
489B

  1. #!/usr/bin/fish
  2. {{ ansible_managed | comment }}
  3. {% if workspaces[workspace].type == "vncviewer" %}
  4. xtigervncviewer localhost:{{workspaces[workspace].display|default(home_vncserver_display_number)}} -via {{workspaces[workspace].host}} -PasswordFile ~/.vnc/passwd.{{workspaces[workspace].host}}
  5. {% elif workspaces[workspace].type == "tmux" %}
  6. urxvt -title tmux-workspace -e fish -c 'ssh -t {{workspaces[workspace].host}} tmux attach -d -t {{workspaces[workspace].session}}'
  7. {% endif %}