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.

27 lines
628B

  1. ---
  2. - name: timer directory
  3. file:
  4. path: "{{timer_folder}}"
  5. state: directory
  6. - name: timer activity timeclock directory
  7. file:
  8. path: "{{timer_folder}}/activity.timeclock.d"
  9. state: directory
  10. - name: timer activity list directory
  11. file:
  12. path: "{{timer_folder}}/activity.lists"
  13. state: directory
  14. - name: timer default activities
  15. copy:
  16. content: "{{ default_activities | join('\n') }}"
  17. dest: "{{timer_folder}}/activity.lists/10-default"
  18. - name: timer activity i3blocks linefile
  19. shell: echo ☆ > {{timer_folder}}/activity.i3blocks
  20. args:
  21. creates: "{{timer_folder}}/activity.i3blocks"