tasks_install_alacritty_themes.yml 368 B

123456789101112
  1. ---
  2. - name: "10: Create alacritty themes directory"
  3. ansible.builtin.file:
  4. path: "/home/{{ system_user }}/.config/alacritty/themes"
  5. state: "directory"
  6. recurse: True
  7. - name: "20: Clone the alacritty themes"
  8. ansible.builtin.git:
  9. repo: "https://github.com/alacritty/alacritty-theme.git"
  10. dest: "/home/{{ system_user }}/.config/alacritty/themes"