Add cider role for Linux and Windows
Cider is a cross-platform Apple Music client. Don't bother installing Cider on macOS since there is the first party Music app.
This commit is contained in:
parent
b4685b9d1e
commit
9017be5cf7
@ -3,6 +3,7 @@
|
|||||||
- import_playbook: UnixGUI.yaml
|
- import_playbook: UnixGUI.yaml
|
||||||
- hosts: localhost
|
- hosts: localhost
|
||||||
roles:
|
roles:
|
||||||
|
- role: cider
|
||||||
- role: kitty
|
- role: kitty
|
||||||
- role: xremap
|
- role: xremap
|
||||||
when: >
|
when: >
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
|
|
||||||
- role: 1password
|
- role: 1password
|
||||||
- role: autohotkey
|
- role: autohotkey
|
||||||
|
- role: cider
|
||||||
- role: ferdium
|
- role: ferdium
|
||||||
- role: firefox
|
- role: firefox
|
||||||
- role: fonts
|
- role: fonts
|
||||||
|
13
roles/cider/tasks/main.yaml
Normal file
13
roles/cider/tasks/main.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
- name: install chocolatey package
|
||||||
|
when: ansible_os_family == 'Windows'
|
||||||
|
win_chocolatey:
|
||||||
|
state: latest
|
||||||
|
name: Cider
|
||||||
|
|
||||||
|
- name: install flatpak package
|
||||||
|
when: ansible_os_family != 'Windows' and
|
||||||
|
ansible_os_family != 'Darwin'
|
||||||
|
become: true
|
||||||
|
flatpak:
|
||||||
|
name: sh.cider.Cider
|
Loading…
x
Reference in New Issue
Block a user