arch-install/roles/08_tweaks/tasks/gnome-extensions.yml
Ariejan de Vroom 4ec9283994
Some checks failed
Lint / Lint (3.11) (push) Failing after 22s
Lint / Lint (3.10) (push) Failing after 23s
Update arch install
2024-06-10 10:44:29 +02:00

8 lines
209 B
YAML

---
- name: Install Gnome Extensions
ansible.builtin.shell: gext --filesystem install {{ item }}
with_items: "{{ gnome_extensions }}"
changed_when: true
become: true
become_user: "{{ user.name }}"