Add GNOME support

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.
This commit is contained in:
Géza Búza 2018-04-06 21:43:05 +02:00
parent 20160b1e8d
commit 8d8ec13b8f
10 changed files with 139 additions and 1 deletions

View file

@ -14,7 +14,8 @@
- { role: x, tags: ['x'] }
- { role: lightdm, tags: ['lightdm'], when: "display_manager == 'lightdm'" }
- { role: gdm, tags: ['gdm'], when: "display_manager == 'gdm'" }
- { role: i3, tags: ['i3'] }
- { role: i3, tags: ['i3'], when: "desktop_environment == 'i3'" }
- { role: gnome, tags: ['gnome'], when: "desktop_environment == 'gnome'" }
- { role: pass, tags: ['pass'] }
- { role: iptables, tags: ['iptables'] }
- { role: nettools, tags: ['nettools'] }