Browse Source

add jetbrains mono typeface

pull/24/head
fedy95 4 years ago
parent
commit
293b51569c
  1. 1
      ansible-desktop.yml
  2. 17
      roles/typeface/tasks/main.yml

1
ansible-desktop.yml

@ -11,3 +11,4 @@
# - { role: krdc, become: true }
# - { role: materia-kde, become: true } # https://github.com/PapirusDevelopmentTeam/materia-kde
- { role: telegram, become: true }
- { role: typeface, become: true }

17
roles/typeface/tasks/main.yml

@ -0,0 +1,17 @@
---
- name: Download typeface
get_url:
url: https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/install_manual.sh
dest: /opt/install_manual.sh
- name: Set execution mod
shell: chmod +x /opt/install_manual.sh
- name: Install typeface
shell: /bin/bash -c /opt/install_manual.sh
become: yes
become_user: fedy95
- name: Remove script typeface
shell: rm -r /opt/install_manual.sh