added theme version

This commit is contained in:
muppeth 2024-01-31 00:44:24 +01:00
parent b46030fdd2
commit ff232117cb
Signed by: muppeth
GPG Key ID: 0EBC7B9848D04031
1 changed files with 5 additions and 2 deletions

View File

@ -2,9 +2,12 @@
- name: "[THEME] - Get repo"
git:
repo: "{{ item.repo }}"
dest: "{{ lufi_app_dir }}/themes/{{ item.name }}"
repo: "{{ theme.repo }}"
dest: "{{ lufi_app_dir }}/themes/{{ theme.name }}"
version: '{{ theme.version }}'
with_items: "{{ lufi_custom_themes }}"
loop_control:
loop_var: 'theme'
become: true
become_user: "{{ lufi_username }}"