Initial
This commit is contained in:
32
roles/workstation/tasks/software/ulauncher.yml
Normal file
32
roles/workstation/tasks/software/ulauncher.yml
Normal 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
|
||||
Reference in New Issue
Block a user