ansible-docker-mailcow/roles/install_oh-my-zsh/tasks/p10k.yml
Jesko Anschütz d563801458 initial
2025-03-20 10:39:09 +01:00

21 lines
475 B
YAML

---
# tasks file for p10k
- name: Install Powerline10k theme # noqa: latest
ansible.builtin.git:
repo: https://github.com/romkatv/powerlevel10k.git
dest: ~/.oh-my-zsh/custom/themes/powerlevel10k
depth: 1
- name: Copy zshrc (for p10k)
ansible.builtin.copy:
src: zshrc-p10k
dest: ~/.zshrc
mode: 0644
when: copy_dot_files
- name: Copy p10k.zsh
ansible.builtin.copy:
src: p10k.zsh
dest: ~/.p10k.zsh
mode: 0644
when: copy_dot_files