選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。

background.yaml 407B

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