A lot of changes. 2

This commit is contained in:
git
2023-05-31 14:36:39 +02:00
parent 01754987d0
commit cfb9916f95
4 changed files with 0 additions and 31 deletions

View File

@@ -1,16 +0,0 @@
- name: ensure fonts directory
file:
path: "/home/{{ user }}/.local/share/fonts"
state: directory
- name: Hack exists
shell: "ls /home/{{ user }}/.local/share/fonts/Hack*Nerd*Font*Complete*"
register: hack_exists
ignore_errors: true
- name: Download Hack
when: hack_exists is failed
ansible.builtin.unarchive:
src: https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/Hack.zip
dest: "/home/{{ user }}/.local/share/fonts"
remote_src: yes

View File

@@ -1,8 +0,0 @@
---
- name: copy Terminator config
ansible.builtin.template:
src: config
dest: /home/{{ user }}/.local/terminator
owner: "{{ user }}"
group: "{{ user }}"
mode: '0644'

View File

@@ -1,2 +0,0 @@
localhost

View File

@@ -1,5 +0,0 @@
---
- hosts: localhost
remote_user: root
roles:
- linux_config_tinker