2018-05-31 18:24:15 +03:00
|
|
|
#- name: gnome hibernate by default
|
|
|
|
# apt: name=gnome-shell-extension-suspend-button state=latest
|
|
|
|
|
2018-06-07 23:51:55 +03:00
|
|
|
- name: gnome desktop
|
|
|
|
apt:
|
2019-04-04 19:17:35 +03:00
|
|
|
name:
|
|
|
|
- task-gnome-desktop
|
|
|
|
- gnome-shell-extension-desktop-icons
|
|
|
|
- cups
|
2018-06-07 23:51:55 +03:00
|
|
|
state: latest
|
|
|
|
|
2018-05-31 18:24:15 +03:00
|
|
|
- name: make sure /etc/dconf/profile/ exists
|
|
|
|
file: path=/etc/dconf/profile/ state=directory recurse=yes
|
|
|
|
|
|
|
|
- name: prepare for gnome customized defaults
|
|
|
|
copy:
|
|
|
|
src: user
|
|
|
|
dest: /etc/dconf/profile/user
|
|
|
|
notify: update dconf
|
|
|
|
|
|
|
|
- name: make sure /etc/dconf/db/local.d/ exists
|
|
|
|
file: path=/etc/dconf/db/local.d/ state=directory recurse=yes
|
|
|
|
|
|
|
|
- name: modify gnome defaults
|
|
|
|
copy:
|
|
|
|
src: defaults
|
|
|
|
dest: /etc/dconf/db/local.d/defaults
|
|
|
|
notify: update dconf
|
2019-03-30 18:12:31 +03:00
|
|
|
|
2019-05-18 18:26:10 +03:00
|
|
|
## Bug #698504
|
2019-03-30 18:12:31 +03:00
|
|
|
- name: allow print job management
|
|
|
|
replace:
|
|
|
|
dest: "/etc/cups/cups-files.conf"
|
|
|
|
regexp: '^(SystemGroup lpadmin)$'
|
|
|
|
replace: '\1 root'
|
2019-05-18 18:26:10 +03:00
|
|
|
|
|
|
|
- name: enable splash screen
|
|
|
|
replace:
|
|
|
|
dest: "/etc/default/grub"
|
|
|
|
regexp: '"quiet"$'
|
|
|
|
replace: '"quiet splash"'
|
|
|
|
notify: update grub
|