39 lines
671 B
YAML
39 lines
671 B
YAML
---
|
|
- name: Install graphical packages
|
|
pacman:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items:
|
|
- gimp
|
|
- firefox
|
|
- firefox-i18n-fr
|
|
- chromium
|
|
- inkscape
|
|
- thunderbird
|
|
- thunderbird-i18n-fr
|
|
- libreoffice-fresh
|
|
- hunspell
|
|
- hunspell-fr
|
|
- rxvt-unicode
|
|
- vlc
|
|
- texlive-most
|
|
|
|
|
|
- name: Install fonts
|
|
pacman:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items:
|
|
- awesome-terminal-fonts
|
|
- cantarell-fonts
|
|
- gnu-free-fonts
|
|
- gsfonts
|
|
- ttf-bitstream-vera
|
|
- ttf-dejavu
|
|
- ttf-droid
|
|
- ttf-roboto
|
|
- ttf-liberation
|
|
- ttf-ubuntu-font-family
|
|
- ttf-inconsolata
|
|
- noto-fonts
|