You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1005 B
YAML
36 lines
1005 B
YAML
2 years ago
|
- name: GJK GNOME configuration
|
||
|
hosts: all
|
||
|
user: administrator
|
||
|
become: true
|
||
|
|
||
|
tasks:
|
||
|
- name: Pin applications to dash
|
||
|
copy:
|
||
|
src: 'gdm/dash'
|
||
|
dest: '/etc/dconf/db/local.d/dash'
|
||
|
|
||
|
- name: Set wallpaper
|
||
|
copy: src={{ item.src }} dest={{ item.dest }}
|
||
|
with_items:
|
||
|
- { src: 'gdm/wallpaper', dest: '/etc/dconf/db/local.d/wallpaper' }
|
||
|
- { src: 'files/wallpaper.jpg', dest: '/usr/local/share/wallpaper.jpg' }
|
||
|
|
||
|
- name: GDM usernames profile
|
||
|
copy:
|
||
|
src: 'gdm/profile'
|
||
|
dest: '/etc/dconf/profile/gdm'
|
||
|
|
||
|
- name: GDM login screen configuration - don't show all users
|
||
|
copy:
|
||
|
src: 'gdm/login-screen'
|
||
|
dest: '/etc/dconf/db/gdm.d/login-screen'
|
||
|
|
||
|
- name: GDM login screen configuration - disable accessibility
|
||
|
# Not working, perhaps broken GDM
|
||
|
copy:
|
||
|
src: 'gdm/accessibility'
|
||
|
dest: '/etc/dconf/db/gdm.d/accessibility'
|
||
|
|
||
|
- name: Update dconf database
|
||
|
command: "dconf update"
|