1
0
mirror of https://github.com/gjkcz/ansible-void.git synced 2025-06-22 04:00:31 +02:00

Crate role for Bakaláři

This commit is contained in:
2024-12-04 11:09:44 +01:00
parent 78f53019c5
commit f76fcf2cc9
5 changed files with 28 additions and 4 deletions

View File

@ -0,0 +1,21 @@
- 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