conky/tasks/conky.yml

28 lines
519 B
YAML

---
- 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