mirror of
https://github.com/gjkcz/ansible-void.git
synced 2025-01-07 01:06:38 +01:00
22 lines
468 B
YAML
22 lines
468 B
YAML
- name: Ensure the applications directory exists
|
|
file:
|
|
path: /usr/share/applications
|
|
state: directory
|
|
|
|
- name: Ensure the icons directory exists
|
|
file:
|
|
path: /usr/share/icons
|
|
state: directory
|
|
|
|
- name: Copy Bakaláři desktop shortcut
|
|
copy:
|
|
src: bakalari.desktop
|
|
dest: /usr/share/applications/bakalari.desktop
|
|
mode: 0644
|
|
|
|
- name: Copy Bakaláři icon
|
|
copy:
|
|
src: bakalari.png
|
|
dest: /usr/share/icons/bakalari.png
|
|
mode: 0644
|