diff --git a/roles/gnome-shell/tasks/Ubuntu.yaml b/roles/gnome-shell/tasks/Ubuntu.yaml new file mode 100644 index 0000000..69d3890 --- /dev/null +++ b/roles/gnome-shell/tasks/Ubuntu.yaml @@ -0,0 +1,18 @@ +--- +- name: ubuntu dock disable dock-fixed + gsettings: + schema: org.gnome.shell.extensions.dash-to-dock + key: dock-fixed + value: 'false' + +- name: ubuntu dock set dock-position to bottom + gsettings: + schema: org.gnome.shell.extensions.dash-to-dock + key: dock-position + value: "'BOTTOM'" + +- name: ubuntu dock disable extend-height + gsettings: + schema: org.gnome.shell.extensions.dash-to-dock + key: extend-height + value: 'false' diff --git a/roles/gnome-shell/tasks/main.yaml b/roles/gnome-shell/tasks/main.yaml index a94210f..051d477 100644 --- a/roles/gnome-shell/tasks/main.yaml +++ b/roles/gnome-shell/tasks/main.yaml @@ -93,3 +93,6 @@ state: present key: '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings' value: "['/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/', '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1/']" + +- when: ansible_distribution == 'Ubuntu' + include_tasks: Ubuntu.yaml