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 +