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

50 行
928B

  1. ---
  2. - name: i3-py
  3. pip:
  4. name: i3-py
  5. - name: i3 config directory
  6. file:
  7. path: ~/.config/i3
  8. state: directory
  9. - name: i3 null config
  10. template:
  11. src: i3/i3.null.config.j2
  12. dest: ~/.config/i3/null.config
  13. - name: i3 config
  14. template:
  15. src: i3/i3.config.j2
  16. dest: ~/.config/i3/config
  17. notify: i3 reload
  18. - name: check i3 config
  19. command: i3 -c ~/.config/i3/config -C
  20. changed_when: false
  21. - name: i3blocks config directory
  22. file:
  23. path: ~/.config/i3blocks
  24. state: directory
  25. notify: i3 reload
  26. - name: i3blocks config
  27. template:
  28. src: i3/i3blocks.config.j2
  29. dest: ~/.config/i3blocks/config
  30. notify: i3 reload
  31. - name: i3wm graphical-session service
  32. template:
  33. src: i3/i3wm.service.j2
  34. dest: ~/.config/systemd/user/i3wm.service
  35. notify: systemd daemon-reload
  36. - name: i3wm graphical-session service enabled
  37. systemd:
  38. name: i3wm.service
  39. enabled: true
  40. scope: user