25 lines
733 B
YAML
25 lines
733 B
YAML
---
|
|
# 20260716 - Hyperling
|
|
# Begin customizing Cinnamon's dconf similar to GNOME.
|
|
|
|
# Favorites are handled in .config/cinnamon/spices/group*/*.json files.
|
|
# Does not seem as easy as GNOME and its dconf settings.
|
|
# Cinnamon does use some dconf though.
|
|
|
|
- name: Workstation | Linux | Software | Cinnamon | Facts | Defaults
|
|
set_fact:
|
|
cinnamon_package: cinnamon
|
|
|
|
- name: Workstation | Linux | Software | Cinnamon | Facts | Debian Derivitives
|
|
set_fact:
|
|
cinnamon_package: task-cinnamon-desktop
|
|
when: ansible_distribution in ("Debian", "Devuan")
|
|
|
|
- name: Workstation | Linux | Software | Cinnamon | Install
|
|
package:
|
|
name:
|
|
- "{{ cinnamon_package }}"
|
|
- "{{ lightdm }}"
|
|
state: present
|
|
update_cache: yes
|