Download and extract icons
This commit is contained in:
parent
11a77f595f
commit
fabf20ab0e
2 changed files with 16 additions and 0 deletions
11
tasks/download_icons.yml
Normal file
11
tasks/download_icons.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
- name: Download existing icons
|
||||||
|
ansible.windows.win_get_url:
|
||||||
|
url: 'https://git.chaoswest.tv/winkekatze.tv/sd-icons/archive/master.zip'
|
||||||
|
dest: '{{ win_streamdeck__root }}\streamdeck\streamdeck_icons.zip'
|
||||||
|
|
||||||
|
- name: Unzip Streamdeck Icons
|
||||||
|
community.windows.win_unzip:
|
||||||
|
src: '{{ win_streamdeck__root }}\streamdeck\streamdeck_icons.zip'
|
||||||
|
dest: '{{ win_streamdeck__root }}\streamdeck\streamdeck_icons'
|
||||||
|
recurse: true
|
|
@ -6,6 +6,11 @@
|
||||||
ansible.builtin.include_tasks: directory.yml
|
ansible.builtin.include_tasks: directory.yml
|
||||||
when: win_streamdeck__download_icons | bool
|
when: win_streamdeck__download_icons | bool
|
||||||
|
|
||||||
|
- name: Download some generic Streamdeck Icons
|
||||||
|
ansible.builtin.include_tasks:
|
||||||
|
file: download_icons.yml
|
||||||
|
when: win_streamdeck__download_icons | bool
|
||||||
|
|
||||||
- name: Download defined icons
|
- name: Download defined icons
|
||||||
ansible.builtin.include_tasks: files.yml
|
ansible.builtin.include_tasks: files.yml
|
||||||
when: win_streamdeck__download_icons | bool
|
when: win_streamdeck__download_icons | bool
|
||||||
|
|
Loading…
Reference in a new issue