Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Tento repozitář je archivovaný. Můžete prohlížet soubory, klonovat, ale nemůžete nahrávat a vytvářet nové úkoly a požadavky na natažení.

46 řádky
890B

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