/usr/home/jens/Development/ansible/roles/conky on deathbolt.927589452.space at Mi. 13 März 2019 17:47:16 CET

This commit is contained in:
Jens Heinrich 2019-03-13 17:47:16 +01:00
commit 5cc0bb4985
4 changed files with 94 additions and 0 deletions

28
tasks/conky.yml Normal file
View file

@ -0,0 +1,28 @@
---
- name: install prequsites
package:
name: conky
state: present
become: true
tags:
- installation
- name: generate directories
file:
state: directory
dest: "{{ home_path }}/{{ current_user}}/.config/conky"
owner: "{{ current_user }}"
become: true
tags:
- configuration
- name: generate conkyrc
template:
src: conkyrc.j2
dest: "{{ home_path }}/{{ current_user}}/.config/conky/conky.conf"
owner: "{{ current_user }}"
become: true
tags:
- configuration