11 lines
247 B
YAML
11 lines
247 B
YAML
|
- name: "[Arch] Install fonts"
|
||
|
become: yes
|
||
|
community.general.pacman:
|
||
|
name:
|
||
|
- ttf-dejavu
|
||
|
- ttf-fira-code
|
||
|
- ttf-font-awesome
|
||
|
- ttf-liberation
|
||
|
- ttf-ubuntu-font-family
|
||
|
when: ansible_distribution == "Archlinux"
|