2023-07-03 16:57:11 -07:00
|
|
|
- name: Create font directory
|
|
|
|
file:
|
|
|
|
path: /home/{{ user }}/.local/share/fonts
|
|
|
|
state: directory
|
|
|
|
|
|
|
|
- name: Download JetBrainsMono Font
|
|
|
|
ansible.builtin.unarchive:
|
|
|
|
src: https://github.com/ryanoasis/nerd-fonts/releases/download/v3.0.1/JetBrainsMono.zip
|
|
|
|
dest: /home/{{ user }}/.local/share/fonts
|
|
|
|
remote_src: yes
|
|
|
|
|
|
|
|
- name: Update font cache
|
|
|
|
shell: |
|
|
|
|
fc-cache -fv
|
2023-07-04 00:00:12 -07:00
|
|
|
|
2023-07-05 09:46:43 -07:00
|
|
|
- name: Install Noto Fonts for Emojis
|
2023-07-05 08:43:13 -07:00
|
|
|
pacman:
|
2023-07-04 00:00:12 -07:00
|
|
|
name:
|
2023-07-05 09:46:43 -07:00
|
|
|
- noto-fonts-emoji
|
2023-07-04 00:00:12 -07:00
|
|
|
state: present
|
|
|
|
become: true
|