-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnerd-fonts.win.pb
34 lines (34 loc) · 1020 Bytes
/
nerd-fonts.win.pb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
- hosts: all
vars:
TYPE: scoop-nerd-fonts
INSTANCE: main
tasks:
- name: add nerd-fonts bucket
community.windows.win_scoop_bucket:
name: nerd-fonts
failed_when: nerd_bucket.stdout is not search ("already exists")
changed_when: nerd_bucket.stdout is not search ("already exists")
register: nerd_bucket
- name: install nerd-fonts
community.windows.win_scoop:
name:
- AnonymousPro-NF
- FiraCode-NF
- Hack-NF
- Inconsolata-NF
- Iosevka-NF
- JetBrainsMono-NF
- ProggyClean-NF
- SourceCodePro-NF
- Terminus-NF
- VictorMono-NF
#- AnonymousPro-NF-Mono
#- FiraCode-NF-Mono
#- Hack-NF-Mono
#- Inconsolata-NF-Mono
#- Iosevka-NF-Mono
#- JetBrainsMono-NF-Mono
#- SourceCodePro-NF-Mono
#- Terminus-NF-Mono
#- VictorMono-NF-Mono
state: "{{nerd_state|default('present')}}"