Ansible_workstation/tasks/arch_graphicals.yml

80 lines
1.5 KiB
YAML

---
- name: Install graphical packages
pacman:
name:
- gimp
- firefox
- firefox-i18n-fr
- chromium
- inkscape
- thunderbird
- thunderbird-i18n-fr
- libreoffice-fresh
- hunspell
- hunspell-fr
- rxvt-unicode
- vlc
- texlive-most
- gnuplot
- mpv
- mplayer
- geogebra
state: present
- name: Install 3D printing packages
pacman:
name:
- openscad
- cura
state: present
- name: Install urxvt perls
pacman:
name: urxvt-perls
state: present
- name: Install urxvt plugins (AUR)
aur:
name: "{{ item }}"
use: makepkg
skip_installed: true
with_items:
- urxvt-fullscreen
- urxvt-resize-font-git
become: yes
become_user: aur_builder
- name: Install fonts
pacman:
name:
- 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
state: present
- name: Install AUR fonts
aur:
name: "{{ item }}"
use: makepkg
skip_installed: true
with_items:
- ttf-ubuntu-mono-derivative-powerline-git
- ttf-roboto-mono-powerline-git
- ttf-inconsolata-lgc-for-powerline
- ttf-droid-sans-mono-slashed-powerline-git
- ttf-literation-mono-powerline-git
become: yes
become_user: aur_builder