Ansible_workstation/roles/gnome/tasks/arch.yml

36 lines
737 B
YAML
Raw Normal View History

2022-01-05 10:25:33 +00:00
---
# tasks file for gnome
- name: Install gnome packages
pacman:
2022-01-05 13:23:31 +00:00
name: "{{ item }}"
2022-01-05 10:25:33 +00:00
state: present
2022-01-05 13:23:31 +00:00
with_items: "{{ pacman_gnome }}"
2022-01-05 10:25:33 +00:00
- name: Install look and feel
pacman:
name:
- materia-gtk-theme
- gnome-icon-theme-extras
- arc-solid-gtk-theme
- arc-gtk-theme
- gnome-themes-extra
- gnome-icon-theme-symbolic
- gnome-icon-theme
- adwaita-icon-theme
state: present
- name: Install AUR Icons and gtk themes
aur:
name: "{{ item }}"
use: makepkg
state: present
with_items:
- plata-theme
- gnome-colors-icon-theme
- numix-icon-theme-git
- numix-circle-icon-theme-git
- tela-icon-theme-git
become: yes
become_user: aur_builder