Add ferdium role, prep for removing webcatalog
In the trend of 2023 enshitification webcatalog has decided to stop shipping a Linux version so I'll be moving to fetdium with a self-hosted server moving forwards.
This commit is contained in:
parent
bec20420ff
commit
c78ea00ae4
@ -2,6 +2,6 @@
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: 1password
|
||||
- role: ferdium
|
||||
- role: fonts
|
||||
- role: obsidian
|
||||
- role: webcatalog
|
||||
|
@ -23,6 +23,7 @@
|
||||
|
||||
- role: 1password
|
||||
- role: autohotkey
|
||||
- role: ferdium
|
||||
- role: firefox
|
||||
- role: obsidian
|
||||
- role: powertoys
|
||||
|
17
roles/ferdium/tasks/main.yaml
Normal file
17
roles/ferdium/tasks/main.yaml
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
- name: install homebrew package
|
||||
when: ansible_os_family == 'Darwin'
|
||||
homebrew_cask:
|
||||
name: ferdium
|
||||
state: latest
|
||||
|
||||
- when: ansible_os_family == 'Windows'
|
||||
win_chocolatey:
|
||||
name: ferdium
|
||||
state: latest
|
||||
|
||||
- name: install flatpak package
|
||||
when: ansible_os_family != 'Windows' and
|
||||
ansible_os_family != 'Darwin'
|
||||
flatpak:
|
||||
name: org.ferdium.Ferdium
|
Loading…
x
Reference in New Issue
Block a user