Skip to content

Commit

Permalink
feat(fonts): added system install
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroSuero committed Mar 28, 2024
1 parent cf297c5 commit 6baedad
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions roles/fonts/tasks/Archlinux.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
---
- name: FONTS | Git clone nerdfonts | {{ ansible_distribution }}
ansible.builtin.git:
repo: https://github.com/ryanoasis/nerd-fonts.git # noqa: latest
depth: 1
dest: "{{ ansible_user_dir }}/.nerd_fonts"

- name: FONTS | Installation | {{ ansible_distribution }}
ansible.builtin.command:
cmd: /{{ ansible_user_dir }}/.nerd_fonts/install.sh {{ item }}
register: nf
changed_when: nf.rc != 0
with_items:
- Iosevka
- JetBrainsMono
community.general.pacman:
name:
- ttf-jetbrains-mono-nerd
- ttf-iosevka-nerd
state: present
become: true

0 comments on commit 6baedad

Please sign in to comment.