Add P10k installation / configuration

This commit is contained in:
2025-01-09 17:15:23 +01:00
parent 19425ca130
commit 9a1412067c
21 changed files with 5656 additions and 80 deletions

19
tasks/p10k-fonts.yml Normal file
View File

@@ -0,0 +1,19 @@
---
- name: Create fonts directory
ansible.builtin.file:
path: "{{ fonts_path }}"
mode: '0755'
state: directory
become: true
- name: Copy powerlevel10k recommanded fonts
ansible.builtin.copy:
src: "fonts/{{ item }}"
dest: "{{ fonts_path }}/{{ item }}"
mode: '0644'
become: true
loop:
- MesloLGS NF Bold Italic.ttf
- MesloLGS NF Bold.ttf
- MesloLGS NF Italic.ttf
- MesloLGS NF Regular.ttf