customize-xfce-anisble/playbook/roles/role-one/tasks/conky.yml

26 lines
485 B
YAML

---
- name: Conky | Install dependencies
apt:
name:
- conky-all
- jq
- curl
- name: Conky | Create ~/.conky directory
file:
path: /root/.conky
state: directory
- name: Conky | Copy conky config
copy:
src: /root/Downloads/update-xfce-bigsur/conky/
dest: /root/.conky
remote_src: yes
- name: Conky | Add conky to startup
template:
src: conky.desktop
dest: "{{ autostart_path }}/conky.desktop"
owner: root
mode: '0644'