diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-01-31 16:55:33 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-01-31 16:55:33 +0100 |
| commit | f3f837ad12172713a60b22cb2b11aa4a8523686d (patch) | |
| tree | b80faace9b175dc262d8f432378414de6bdc3ba8 /roles/clipse/tasks | |
| parent | beb210e741099036a8bbbefd4c57b62f9f01ebe5 (diff) | |
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
Diffstat (limited to 'roles/clipse/tasks')
| -rw-r--r-- | roles/clipse/tasks/main.yml | 9 |
1 files changed, 8 insertions, 1 deletions
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" |
