Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Dieses Repo ist archiviert. Du kannst Dateien sehen und es klonen, kannst aber nicht pushen oder Issues/Pull-Requests öffnen.
|
- ---
-
- - name: workspace app service
- template:
- src: workspaces/workspace-app.service.j2
- dest: ~/.config/systemd/user/workspace-app@.service
- mode: 0755
- notify: systemd daemon-reload
-
- - name: workspaces directory
- file:
- path: ~/.workspaces
- state: directory
-
- - name: workspace focus scripts
- template:
- src: workspaces/workspace.focus.fish.j2
- dest: ~/.workspaces/{{workspace}}.focus
- mode: 0755
- with_items: "{{ workspaces }}"
- loop_control:
- loop_var: workspace
-
- - name: workspace space shortcut scripts
- template:
- src: workspaces/workspace.space.fish.j2
- dest: ~/.workspaces/{{workspace}}.space
- mode: 0755
- with_items: "{{ workspaces }}"
- loop_control:
- loop_var: workspace
- when:
- - workspaces[workspace]
- - '"type" in workspaces[workspace]'
|