Ansible_workstation/tasks/arch_graphicals.yml

80 lines
1.5 KiB
YAML
Raw Normal View History

2018-08-22 20:54:51 +00:00
---
- 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
2018-11-14 07:17:03 +00:00
- mpv
- mplayer
2018-11-15 07:34:45 +00:00
- geogebra
2018-08-22 20:54:51 +00:00
state: present
2018-08-23 12:55:29 +00:00
2019-01-15 18:54:49 +00:00
- 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
2018-08-23 13:02:18 +00:00
- name: Install fonts
2018-08-23 12:55:29 +00:00
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
2018-08-23 12:55:29 +00:00
state: present
2018-08-23 13:11:30 +00:00
2018-11-12 16:09:52 +00:00
- 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
2018-08-23 13:11:30 +00:00