From 5504ee882adc9ff8eb5cc89b524847d0e2c21ea1 Mon Sep 17 00:00:00 2001 From: Matthieu Bessat Date: Fri, 5 Jul 2024 12:00:45 +0200 Subject: [PATCH] feat: setup apps dir and default-browser --- ansible/workstation.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ansible/workstation.yaml b/ansible/workstation.yaml index 8886381..cefc872 100644 --- a/ansible/workstation.yaml +++ b/ansible/workstation.yaml @@ -377,3 +377,17 @@ when: 'profile == "pro"' include_role: name: openfortivpn + + - name: Setup apps dir + file: + path: "{{ home }}/.apps" + state: directory + recurse: true + + - name: Setup default browser link + file: + src: /usr/bin/librewolf + dest: "{{ home }}/.apps/browser" + state: link + force: true +