summaryrefslogtreecommitdiffstats
path: root/roles/firefox/tasks/install-archlinux.yml
blob: 69a17e4d3cca7c7babd0c124aab2721acc23daf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---
- name: "Ensure firefox is installed"
  become: true
  ansible.builtin.package:
    name: "firefox"
    state: "present"

- name: "Set firefox as default"
  ansible.builtin.command:
    cmd: "xdg-settings set default-web-browser firefox.desktop"
  changed_when: false
  when: firefox_is_default | default(false)