Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

25 lines
664B

  1. ---
  2. - name: workspaces directory
  3. file:
  4. path: ~/.workspaces
  5. state: directory
  6. - name: workspace focus scripts
  7. template:
  8. src: workspaces/workspace.focus.fish.j2
  9. dest: ~/.workspaces/{{workspace}}.focus
  10. mode: 0755
  11. with_items: "{{workspaces|dict2items|json_query(\"[?value.type=='vdesk'].key\") }}"
  12. loop_control:
  13. loop_var: workspace
  14. - name: workspace space shortcut scripts
  15. template:
  16. src: workspaces/workspace.space.fish.j2
  17. dest: ~/.workspaces/{{workspace}}.space
  18. mode: 0755
  19. with_items: "{{workspaces|dict2items|json_query(\"[?value.type=='vdesk'||value.type=='tmux'].key\") }}"
  20. loop_control:
  21. loop_var: workspace