dotfiles-ansible/roles/palette/tasks/main.yml

12 lines
258 B
YAML
Raw Normal View History

---
- name: Check theme name
fail:
msg: Theme needs to be 'nord' or 'onedark'
when: theme != 'nord' and theme != 'onedark'
2021-11-07 09:41:20 +01:00
- name: Generate color variables
template:
src: palette.j2
dest: '{{ ansible_env.PWD }}/palette.yml'
force: yes