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.

background.yaml 407B

3 år sedan
12345678910111213141516171819
  1. ---
  2. - name: backgrounds directory
  3. file:
  4. path: ~/.backgrounds
  5. state: directory
  6. when: background_image is defined
  7. - name: background image
  8. copy:
  9. src: "{{background_image}}"
  10. dest: "{{background_image_path}}"
  11. when: background_image is defined
  12. - name: copy all background images
  13. synchronize:
  14. src: ~/.backgrounds/
  15. dest: ~/.backgrounds/
  16. when: home_copy_all_background_images