mirror of
https://github.com/pigmonkey/spark.git
synced 2026-01-23 02:24:09 +00:00
Add ability to install the GNOME desktop environment. Most common global settings (date and time, power management, touchpad settings, theme) can be configured via Ansible variables. See "group_vars/all" file.
13 lines
417 B
YAML
13 lines
417 B
YAML
---
|
|
- name: Creating gnome.d directory for DConf
|
|
file: path=/etc/dconf/db/gnome.d state=directory mode=0755
|
|
|
|
- name: Configuring GNOME
|
|
template: src=gnome.d/00-spark.j2 dest=/etc/dconf/db/gnome.d/00-spark mode=0644
|
|
notify: update DConf database
|
|
|
|
- name: Configuring DConf
|
|
lineinfile: path=/etc/dconf/profile/user line={{ item }} create=yes mode=0644
|
|
with_items:
|
|
- "user-db:user"
|
|
- "system-db:gnome"
|