Add fonts to the repo

This commit is contained in:
Anthony Rose 2020-07-11 19:56:11 +01:00
parent 7c55bedd58
commit 4eb6c342c6
4 changed files with 13 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View file

@ -9,5 +9,9 @@
state: directory
- name: Create ~/.fvwm directory
file:
path: "{{ ansible_env.HOME}}/.fvwm"
path: "{{ ansible_env.HOME }}/.fvwm"
state: directory
- name: Create ~/.local/share/fonts directory
file:
path: "{{ ansible_env.HOME }}/.local/share/fonts"
state: directory

View file

@ -9,6 +9,14 @@
git:
repo: https://code.acperkins.com/acp/emacs.d.git
dest: "{{ ansible_env.HOME }}/.emacs.d"
- name: Install NotoSansMono-Regular font
copy:
src: NotoSansMono-Regular.ttf
dest: "{{ ansible_env.HOME }}/.local/share/fonts/NotoSansMono-Regular.ttf"
- name: Install NotoSansMono-Bold font
copy:
src: NotoSansMono-Bold.ttf
dest: "{{ ansible_env.HOME }}/.local/share/fonts/NotoSansMono-Bold.ttf"
- name: Create Emacs user service (Linux)
template:
src: emacs.service