2022-01-25 17:50:41 +00:00
|
|
|
---
|
2023-01-21 19:42:51 +00:00
|
|
|
# Copyright 2021-2023 Anthony Perkins
|
2022-01-25 17:50:41 +00:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2022-08-15 18:38:23 +00:00
|
|
|
- name: Store Iosevka version
|
|
|
|
set_fact:
|
|
|
|
iosevka_version: "15.6.3"
|
|
|
|
|
2022-08-15 17:54:44 +00:00
|
|
|
- name: Set Linux font directory
|
|
|
|
set_fact:
|
2022-08-18 15:37:57 +00:00
|
|
|
font_dir: "{{ ansible_env.XDG_DATA_HOME }}/fonts"
|
2022-08-15 17:57:42 +00:00
|
|
|
- name: Set MacOSX font directory
|
2022-08-15 17:54:44 +00:00
|
|
|
set_fact:
|
|
|
|
font_dir: "{{ ansible_env.HOME }}/Library/Fonts"
|
2022-08-15 17:57:42 +00:00
|
|
|
when: ansible_distribution == 'MacOSX'
|
|
|
|
- name: Set macOS font directory
|
|
|
|
set_fact:
|
|
|
|
font_dir: "{{ ansible_env.HOME }}/Library/Fonts"
|
|
|
|
when: ansible_distribution == 'macOS'
|
2022-08-15 17:54:44 +00:00
|
|
|
|
2022-08-15 18:11:51 +00:00
|
|
|
- name: Create texgyre font directory
|
2022-01-25 17:50:41 +00:00
|
|
|
ansible.builtin.file:
|
2022-08-15 17:54:44 +00:00
|
|
|
path: "{{ font_dir }}/texgyre"
|
2022-01-25 17:50:41 +00:00
|
|
|
state: directory
|
|
|
|
- name: Extract TeX Gyre fonts
|
|
|
|
ansible.builtin.unarchive:
|
2022-02-18 15:25:18 +00:00
|
|
|
remote_src: yes
|
|
|
|
src: "http://www.gust.org.pl/projects/e-foundry/tex-gyre/whole/tg2_501otf.zip"
|
2022-08-15 17:54:44 +00:00
|
|
|
dest: "{{ font_dir }}/texgyre"
|
|
|
|
creates: "{{ font_dir }}/texgyre/tg2_501otf/texgyretermes-regular.otf"
|
|
|
|
|
2022-08-15 18:11:51 +00:00
|
|
|
- name: Create iosevka font directory
|
2022-01-25 17:50:41 +00:00
|
|
|
ansible.builtin.file:
|
2022-08-15 17:54:44 +00:00
|
|
|
path: "{{ font_dir }}/iosevka"
|
2022-01-25 17:50:41 +00:00
|
|
|
state: directory
|
2022-02-18 15:06:22 +00:00
|
|
|
- name: Extract Iosevka fonts
|
2022-01-25 17:50:41 +00:00
|
|
|
ansible.builtin.unarchive:
|
2022-02-18 15:25:18 +00:00
|
|
|
remote_src: yes
|
2022-08-15 18:38:23 +00:00
|
|
|
src: "https://github.com/be5invis/Iosevka/releases/download/v{{ iosevka_version }}/super-ttc-iosevka-{{ iosevka_version }}.zip"
|
2022-08-15 17:54:44 +00:00
|
|
|
dest: "{{ font_dir }}/iosevka"
|
|
|
|
creates: "{{ font_dir }}/iosevka/iosevka.ttc"
|