weitere Aenderungen

This commit is contained in:
2021-02-25 09:37:42 +01:00
parent db70a6c417
commit 17b4ed6ef6
50 changed files with 946 additions and 4 deletions

View File

@@ -0,0 +1,32 @@
- name: software | ulauncher | install ppa
tags: ulauncher
apt_repository:
repo: 'ppa:agornostal/ulauncher'
state: present
when:
- ansible_distribution in ["Pop!_OS", "Ubuntu"]
- ulauncher is defined
- ulauncher == true
- name: software | ulauncher | install package
tags: ulauncher
apt:
name: ulauncher
state: latest
when:
- ansible_distribution in ["Pop!_OS", "Ubuntu"]
- ulauncher is defined
- ulauncher == true
- name: software | ulauncher | enable autostart
tags: ulauncher
copy:
src: users/jay/ulauncher.desktop
dest: /home/jay/.config/autostart/ulauncher.desktop
owner: jay
group: jay
mode: 0600
when:
- ansible_distribution in ["Pop!_OS", "Ubuntu"]
- ulauncher is defined
- ulauncher == true