From e33a1abe3cc8b7fc26d92a3b5b409d2ddcbc4b31 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 12 Jul 2021 08:17:18 -0500 Subject: [PATCH] Fix true to be a string so it gets sent lowercase (unthanks to Python/Ansible). dconf will convert it to a bool for us. --- tasks/workstation/settings/gnome.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/workstation/settings/gnome.yml b/tasks/workstation/settings/gnome.yml index a71b01f..a1e91b4 100644 --- a/tasks/workstation/settings/gnome.yml +++ b/tasks/workstation/settings/gnome.yml @@ -112,7 +112,7 @@ - name: Workstation | Account Management | GNOME | Dash To Dock | Dock Fixed dconf: key: /org/gnome/shell/extensions/dash-to-dock/dock-fixed - value: true + value: "true" state: present become_user: ling