diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-01-24 16:24:28 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-01-24 16:24:28 +0100 |
| commit | 6d927c0f20f95dfb1ece8766dfaf34805bc2f820 (patch) | |
| tree | 7fcc3918e290e31309d74eb0b784fa6a00318ee3 /roles/hyprtheme/tasks/template-theme.yml | |
| parent | b39722e58c1935f4d92c052cf89c941164150c35 (diff) | |
Fix ansible_facts to use only bracket notation instead of dot notation
Co-authored-by: claude.ai
Diffstat (limited to 'roles/hyprtheme/tasks/template-theme.yml')
| -rw-r--r-- | roles/hyprtheme/tasks/template-theme.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/hyprtheme/tasks/template-theme.yml b/roles/hyprtheme/tasks/template-theme.yml index ef3323ff..ea202564 100644 --- a/roles/hyprtheme/tasks/template-theme.yml +++ b/roles/hyprtheme/tasks/template-theme.yml @@ -19,7 +19,7 @@ - name: "Template theme files for: {{ hyprtheme_name }}" ansible.builtin.template: src: "theme/{{ file }}.j2" - dest: "{{ ansible_facts['env'].HOME }}/.config/hyprtheme/themes/{{ hyprtheme_name }}/{{ file }}" + dest: "{{ ansible_facts['env']['HOME'] }}/.config/hyprtheme/themes/{{ hyprtheme_name }}/{{ file }}" mode: "0644" loop: "{{ hyprtheme_theme_files }}" loop_control: @@ -35,7 +35,7 @@ - name: "Copy static theme files for: {{ hyprtheme_name }}" ansible.builtin.copy: src: "themes/{{ hyprtheme_name }}/" - dest: "{{ ansible_facts['env'].HOME }}/.config/hyprtheme/themes/{{ hyprtheme_name }}/" + dest: "{{ ansible_facts['env']['HOME'] }}/.config/hyprtheme/themes/{{ hyprtheme_name }}/" mode: "0644" tags: # This is ignored because it is possible that some themes (ex. matte-black), would provide |
