/
/
/
1---
2- name: Ensure dconf is present
3 ansible.builtin.package:
4 name: dconf-cli
5 state: present
6 become: true
7
8- name: Set GNOME favorites
9 community.general.dconf:
10 key: /org/gnome/shell/favorite-apps
11 value: "{{ gui_gnome_favorites | to_json }}"
12 state: present
13 become: true
14
15