From f3f837ad12172713a60b22cb2b11aa4a8523686d Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Sat, 31 Jan 2026 16:55:33 +0100 Subject: Adding the clipse xdg configs while figuring out how to connect it The clipse doesn't fully follow the xdg standard, therefore I added the configuration that I use, while I figure out how it can be configured in dotfiles without conflicting or adding duplicate configurations --- roles/clipse/tasks/main.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'roles/clipse/tasks') diff --git a/roles/clipse/tasks/main.yml b/roles/clipse/tasks/main.yml index 8bbc567f..4eb97072 100644 --- a/roles/clipse/tasks/main.yml +++ b/roles/clipse/tasks/main.yml @@ -13,9 +13,16 @@ state: "present" use: "yay" +- name: "Create system config directory" + become: true + ansible.builtin.file: + path: "/etc/xdg/clipse" + state: "directory" + mode: "0755" + - name: "Configure system defaults" become: true - ansible.builtin.template: + ansible.builtin.copy: src: "config.json" dest: "/etc/xdg/clipse/config.json" mode: "0644" -- cgit v1.2.3