Install font
This commit is contained in:
parent
29ae3588dc
commit
9c9b4aeba7
3 changed files with 36 additions and 0 deletions
|
@ -31,6 +31,7 @@
|
||||||
- sway-notification-center
|
- sway-notification-center
|
||||||
- swayidle
|
- swayidle
|
||||||
- swaylock
|
- swaylock
|
||||||
|
- unzip
|
||||||
- waybar
|
- waybar
|
||||||
- wget
|
- wget
|
||||||
- wl-clipboard
|
- wl-clipboard
|
||||||
|
|
34
playbooks/fonts.yaml
Normal file
34
playbooks/fonts.yaml
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
---
|
||||||
|
- name: Set up fonts
|
||||||
|
vars:
|
||||||
|
font_name: UbuntuMono
|
||||||
|
font_path: https://github.com/ryanoasis/nerd-fonts/releases/download/v3.0.2/{{ font_name }}.zip
|
||||||
|
hosts: localhost
|
||||||
|
connection: local
|
||||||
|
become: false
|
||||||
|
tasks:
|
||||||
|
- name: Have font installed allready
|
||||||
|
stat:
|
||||||
|
path: /usr/local/share/fonts/{{ font_name }}
|
||||||
|
register: font
|
||||||
|
- name: Make font dir
|
||||||
|
ansible.builtin.file:
|
||||||
|
dest: /tmp/{{ font_name }}
|
||||||
|
state: directory
|
||||||
|
when: not font.stat.exists
|
||||||
|
- name: get font
|
||||||
|
ansible.builtin.command:
|
||||||
|
chdir: /tmp/{{ font_name }}
|
||||||
|
cmd: wget {{ font_path }}
|
||||||
|
when: not font.stat.exists
|
||||||
|
- name: unizip font
|
||||||
|
ansible.builtin.command:
|
||||||
|
chdir: /tmp/{{ font_name }}
|
||||||
|
cmd: unzip {{ font_name }}.zip
|
||||||
|
when: not font.stat.exists
|
||||||
|
- name: unizip font
|
||||||
|
become: true
|
||||||
|
ansible.builtin.command:
|
||||||
|
chdir: /tmp/
|
||||||
|
cmd: mv {{ font_name }} /usr/local/share/fonts/
|
||||||
|
when: not font.stat.exists
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
- import_playbook: playbooks/env.yaml
|
- import_playbook: playbooks/env.yaml
|
||||||
|
- import_playbook: playbooks/fonts.yaml
|
||||||
- import_playbook: playbooks/apt.yaml
|
- import_playbook: playbooks/apt.yaml
|
||||||
- import_playbook: playbooks/nvim.yaml
|
- import_playbook: playbooks/nvim.yaml
|
||||||
- import_playbook: playbooks/zsh.yaml
|
- import_playbook: playbooks/zsh.yaml
|
||||||
|
|
Loading…
Add table
Reference in a new issue