mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
22 lines
504 B
YAML
22 lines
504 B
YAML
- 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
|
|
|
|
- name: Install Noto Fonts for Emojis
|
|
pacman:
|
|
name:
|
|
- noto-fonts-emoji
|
|
state: present
|
|
become: true
|