From f79470f43b47ee9727e2f18a4d584aa1517f9b2d Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Tue, 23 Jun 2026 04:32:05 -0500 Subject: [PATCH] fixed missing dir for desktop file --- roles/hotkeys/tasks/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/roles/hotkeys/tasks/main.yml b/roles/hotkeys/tasks/main.yml index 580ab95..cb98a39 100644 --- a/roles/hotkeys/tasks/main.yml +++ b/roles/hotkeys/tasks/main.yml @@ -1,4 +1,10 @@ --- +- name: Ensure applications directory exists + ansible.builtin.file: + path: "{{ ansible_facts['user_dir'] }}/.local/share/applications" + state: directory + mode: "0755" + - name: Copy cheat sheet desktop file ansible.builtin.template: src: cheat-sheet.desktop.j2