22 lines
557 B
YAML
22 lines
557 B
YAML
---
|
|
- import_playbook: LinuxCLI.yaml
|
|
- import_playbook: UnixGUI.yaml
|
|
- hosts: localhost
|
|
vars_files:
|
|
- vars/environment.yaml
|
|
roles:
|
|
- role: firefox
|
|
- role: kitty
|
|
- role: guake
|
|
- role: cider
|
|
- role: ulauncher
|
|
- role: gnome-shell
|
|
when: "'GNOME' in ansible_env.XDG_CURRENT_DESKTOP"
|
|
- role: xremap
|
|
when: >
|
|
'GNOME' in ansible_env.XDG_CURRENT_DESKTOP and
|
|
ansible_env.XDG_SESSION_TYPE == 'wayland' and (
|
|
ansible_os_family == "RedHat" or
|
|
ansible_os_family == "Debian"
|
|
)
|