Add compton
This commit is contained in:
parent
ed712ca870
commit
4d9a0436e0
@ -6,3 +6,4 @@
|
||||
- docker
|
||||
- java
|
||||
- jetbrains
|
||||
- compton
|
||||
|
7
roles/compton/files/compton.conf
Normal file
7
roles/compton/files/compton.conf
Normal file
@ -0,0 +1,7 @@
|
||||
# basic configuration
|
||||
backend = "glx";
|
||||
|
||||
glx-no-stencil = true;
|
||||
paing-on-overlay = true;
|
||||
|
||||
vsync = "opengl-swc";
|
16
roles/compton/tasks/main.yml
Normal file
16
roles/compton/tasks/main.yml
Normal file
@ -0,0 +1,16 @@
|
||||
---
|
||||
- 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
|
Loading…
Reference in New Issue
Block a user