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.
|
- ---
-
- - name: workspaces directory
- file:
- path: ~/.workspaces
- state: directory
-
- - name: workspace focus scripts
- template:
- src: workspace.focus.fish.j2
- dest: ~/.workspaces/{{workspace}}.focus
- mode: 0755
- with_items: "{{workspaces|dict2items|json_query(\"[?value.type=='vdesk'].key\") }}"
- loop_control:
- loop_var: workspace
-
- - name: workspace space shortcut scripts
- template:
- src: workspace.space.fish.j2
- dest: ~/.workspaces/{{workspace}}.space
- mode: 0755
- with_items: "{{workspaces|dict2items|json_query(\"[?value.type=='vdesk'||value.type=='tmux'].key\") }}"
- loop_control:
- loop_var: workspace
|