From 92220b88d9400f0828735624db236d23b2a6d49f Mon Sep 17 00:00:00 2001 From: Jannik Beyerstedt Date: Thu, 25 Jun 2020 13:50:07 +0200 Subject: [PATCH] dev-setup: Install hack font (used in vscode settings) --- tasks/devel-Archlinux.yml | 8 ++++++++ tasks/devel-Darwin.yml | 5 +++++ tasks/devel-Debian.yml | 6 ++++++ 3 files changed, 19 insertions(+) diff --git a/tasks/devel-Archlinux.yml b/tasks/devel-Archlinux.yml index 959e912..21041e0 100644 --- a/tasks/devel-Archlinux.yml +++ b/tasks/devel-Archlinux.yml @@ -1,6 +1,14 @@ --- # Common/Devel: Install and Configure Dev Env - ArchLinux Version +- name: devel - Fonts + package: + name: "{{ packages }}" + state: present + vars: + packages: + - fonts-hack + # Install Visual Studio Code and Set Basic Configuration - name: vscode - Basics block: diff --git a/tasks/devel-Darwin.yml b/tasks/devel-Darwin.yml index 67a1cb2..6c8e317 100644 --- a/tasks/devel-Darwin.yml +++ b/tasks/devel-Darwin.yml @@ -1,6 +1,11 @@ --- # Common/Devel: Install and Configure Dev Env - macOS Version +- name: devel - Fonts + homebrew_cask: + name: caskroom/fonts/font-hack + state: present + # Install Visual Studio Code and Set Basic Configuration - name: vscode - Basics block: diff --git a/tasks/devel-Debian.yml b/tasks/devel-Debian.yml index 09ec4be..cffc34a 100644 --- a/tasks/devel-Debian.yml +++ b/tasks/devel-Debian.yml @@ -1,6 +1,12 @@ --- # Common/Devel: Install and Configure Dev Env - Debian Version +- name: devel - Fonts + become: yes + apt: + name: fonts-hack-ttf + state: present + # Install Visual Studio Code and Set Basic Configuration - name: vscode - Basics block: