This commit is contained in:
bzoicas
2023-07-10 10:41:17 +03:00
commit dbb46eb92a
360 changed files with 13521 additions and 0 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/bzoicas/ulauncher.desktop
dest: /home/bzoicas/.config/autostart/ulauncher.desktop
owner: bzoicas
group: bzoicas
mode: 0600
when:
- ansible_distribution in ["Pop!_OS", "Ubuntu"]
- ulauncher is defined
- ulauncher == true