Add fonts to the repo
This commit is contained in:
parent
7c55bedd58
commit
4eb6c342c6
4 changed files with 13 additions and 1 deletions
BIN
roles/home-gui/files/NotoSansMono-Bold.ttf
Normal file
BIN
roles/home-gui/files/NotoSansMono-Bold.ttf
Normal file
Binary file not shown.
BIN
roles/home-gui/files/NotoSansMono-Regular.ttf
Normal file
BIN
roles/home-gui/files/NotoSansMono-Regular.ttf
Normal file
Binary file not shown.
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue