Install gnome packages
This commit is contained in:
parent
1884a0ef4e
commit
be4a3ece59
1 changed files with 16 additions and 2 deletions
|
@ -21,11 +21,25 @@
|
||||||
force_apt_get: yes
|
force_apt_get: yes
|
||||||
vars:
|
vars:
|
||||||
packages:
|
packages:
|
||||||
- dconf-cli
|
|
||||||
- galculator
|
- galculator
|
||||||
- git-gui
|
- git-gui
|
||||||
- libcanberra-gtk-module
|
- libcanberra-gtk-module
|
||||||
- remmina
|
- remmina
|
||||||
- rxvt-unicode
|
- rxvt-unicode
|
||||||
- thunderbird
|
|
||||||
- vim-gtk
|
- vim-gtk
|
||||||
|
- name: Check for Gnome Shell
|
||||||
|
ansible.builtin.stat:
|
||||||
|
path: /usr/bin/gnome-shell
|
||||||
|
register: gnome_shell
|
||||||
|
- name: Install Gnome packages
|
||||||
|
become: true
|
||||||
|
ansible.builtin.dnf:
|
||||||
|
name: '{{ packages }}'
|
||||||
|
state: present
|
||||||
|
vars:
|
||||||
|
packages:
|
||||||
|
- gnome-shell-extension-appindicator
|
||||||
|
- gnome-shell-extension-dashtodock
|
||||||
|
- gnome-shell-extension-prefs
|
||||||
|
- gnome-tweaks
|
||||||
|
when: gnome_shell.stat.exists
|
||||||
|
|
Loading…
Add table
Reference in a new issue