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.

37 lines
997B

  1. ---
  2. - import_role:
  3. name: eralitex
  4. - name: other workspace focus script
  5. template:
  6. src: other-workspace-focus.fish.j2
  7. dest: ~/.eralitex/workspace-cmd/other-focus
  8. mode: 0755
  9. - name: remote workspace focus scripts
  10. template:
  11. src: remote-workspace-focus.fish.j2
  12. dest: ~/.eralitex/workspace-cmd/{{workspace}}.focus
  13. mode: 0755
  14. with_items: "{{workspaces|dict2items|json_query(\"[?value.type=='vdesk'].key\") }}"
  15. loop_control:
  16. loop_var: workspace
  17. when: home_remote_workspace_config
  18. - name: remote workspace space shortcut scripts
  19. template:
  20. src: remote-workspace-space.fish.j2
  21. dest: ~/.eralitex/workspace-cmd/{{workspace}}.space
  22. mode: 0755
  23. with_items: "{{workspaces|dict2items|json_query(\"[?value.type=='vdesk'||value.type=='tmux'].key\") }}"
  24. loop_control:
  25. loop_var: workspace
  26. when: home_remote_workspace_config
  27. - name: vnc options
  28. template:
  29. src: vnc-options.fish.j2
  30. dest: ~/.eralitex/workspace-cmd/vnc-options
  31. mode: 0755