Updated plank dock

- Use dconf to update plank preferences
- Updated dockitems
This commit is contained in:
swapnil 2022-03-22 20:39:25 +05:30
parent 16667ae451
commit c78817339d
1 changed files with 29 additions and 19 deletions

View File

@ -19,6 +19,21 @@
dest: "{{ home_directory }}/.local/share/icons/"
remote_src: yes
- name: Plank Dock | Dconf - Set zoom enabled
dconf:
key: /net/launchpad/plank/docks/dock1/zoom-enabled
value: "true"
- name: Plank Dock | Dconf - Set zoom percent
dconf:
key: /net/launchpad/plank/docks/dock1/zoom-percent
value: 130
- name: Plank Dock | Dconf - Set theme
dconf:
key: /net/launchpad/plank/docks/dock1/theme
value: "'theme-dark'"
- name: Plank Dock | Ensure that plank_dock_launcher_path exists
file:
path: "{{ plank_dock_launcher_path }}"
@ -33,35 +48,30 @@
src: launchpad.dockitem
dest: "{{ plank_dock_launcher_path }}/launchpad.dockitem"
- name: Plank Dock | Add thunar.dockitem to dock
- name: Plank Dock | Add org.gnome.Nautilus.dockitem to dock
copy:
src: thunar.dockitem
dest: "{{ plank_dock_launcher_path }}/thunar.dockitem"
- name: Plank Dock | Add org.xfce.Parole.dockitem to dock
copy:
src: org.xfce.Parole.dockitem
dest: "{{ plank_dock_launcher_path }}/org.xfce.Parole.dockitem"
- name: Plank Dock | Add thunderbird.dockitem to dock
copy:
src: thunderbird.dockitem
dest: "{{ plank_dock_launcher_path }}/thunderbird.dockitem"
src: org.gnome.Nautilus.dockitem
dest: "{{ plank_dock_launcher_path }}/org.gnome.Nautilus.dockitem"
- name: Plank Dock | Add firefox.dockitem to dock
copy:
src: firefox.dockitem
dest: "{{ plank_dock_launcher_path }}/firefox.dockitem"
- name: Plank Dock | Add xfce4-terminal.dockitem to dock
- name: Plank Dock | Add org.gnome.gedit.dockitem to dock
copy:
src: xfce4-terminal.dockitem
dest: "{{ plank_dock_launcher_path }}/xfce4-terminal.dockitem"
src: org.gnome.gedit.dockitem
dest: "{{ plank_dock_launcher_path }}/org.gnome.gedit.dockitem"
- name: Plank Dock | Add mate-calc.dockitem to dock
- name: Plank Dock | Add org.gnome.Terminal.dockitem to dock
copy:
src: mate-calc.dockitem
dest: "{{ plank_dock_launcher_path }}/mate-calc.dockitem"
src: org.gnome.Terminal.dockitem
dest: "{{ plank_dock_launcher_path }}/org.gnome.Terminal.dockitem"
- name: Plank Dock | Add org.gnome.Calculator.dockitem to dock
copy:
src: org.gnome.Calculator.dockitem
dest: "{{ plank_dock_launcher_path }}/org.gnome.Calculator.dockitem"
- name: Plank Dock | Add desktop.dockitem to dock
copy: