17 lines
234 B
YAML
17 lines
234 B
YAML
|
---
|
||
|
- name: install comton
|
||
|
become: yes
|
||
|
apt:
|
||
|
update_cache: yes
|
||
|
pkg:
|
||
|
- compton
|
||
|
|
||
|
- name: create config dir
|
||
|
file:
|
||
|
path: ~/.config
|
||
|
|
||
|
- name: copy config
|
||
|
copy:
|
||
|
src: compton.conf
|
||
|
dest: ~/.config/compton.conf
|