From cf92967ce99b1c5d3cbb7b0f94d402841bfa282c Mon Sep 17 00:00:00 2001 From: Ivan Reshetnikov Date: Sat, 22 Jun 2024 18:37:28 +0500 Subject: [PATCH] fix: ensure that dconf-cli is installed --- roles/themes/tasks/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/roles/themes/tasks/main.yml b/roles/themes/tasks/main.yml index fe0b69a..bbc2bb4 100644 --- a/roles/themes/tasks/main.yml +++ b/roles/themes/tasks/main.yml @@ -1,7 +1,9 @@ -- name: Install python3-psutil to interact with dconf +- name: Install dconf-cli and python3-psutil to interact with dconf become: true ansible.builtin.apt: - name: python3-psutil + pkg: + - dconf-cli + - python3-psutil - name: Set gtk theme community.general.dconf: key: "/org/gnome/desktop/interface/gtk-theme"