Add compton

This commit is contained in:
Przemysław Grondek 2020-10-30 09:43:21 +01:00
parent ed712ca870
commit 4d9a0436e0
3 changed files with 24 additions and 0 deletions

View File

@ -6,3 +6,4 @@
- docker - docker
- java - java
- jetbrains - jetbrains
- compton

View File

@ -0,0 +1,7 @@
# basic configuration
backend = "glx";
glx-no-stencil = true;
paing-on-overlay = true;
vsync = "opengl-swc";

View 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