Install gnome extensions
Some checks failed
Lint / Lint (3.10) (push) Failing after 16s
Lint / Lint (3.11) (push) Failing after 14s

This commit is contained in:
Ariejan de Vroom 2024-06-07 11:16:55 +02:00
parent ada64cdd21
commit 43c06facbf
Signed by: ariejan
GPG Key ID: AD739154F713697B
2 changed files with 10 additions and 1 deletions

View File

@ -53,6 +53,7 @@ packages:
aur_packages:
- gohugo-extended-bin
- gnome-extensions-cli
flatpaks:
- com.github.tchx84.Flatseal
@ -81,3 +82,8 @@ base_fonts:
- ttf-cascadia-code
- ttf-hack
- ttf-hack-nerd
gnome_extensions:
- dash-to-panel@jderose9.github.com
- openweather-extension@penguin-teal.github.io
- user-theme@gnome-shell-extensions.gcampax.github.com

View File

@ -1,2 +1,5 @@
---
- name: Install Gnome Extensions
ansible.builtin.shell: gext install --filesystem {{ item }}
with_items: "{{ gnome_extensions }}"
changed_when: true