Ansible_workstation/tasks/arch_graphicals.yml

106 lines
2.1 KiB
YAML

---
- name: Install graphical packages
pacman:
name:
- gimp
- firefox
- firefox-i18n-fr
- chromium
- inkscape
- thunderbird
- thunderbird-i18n-fr
- libreoffice-fresh
- libreoffice-fresh-fr
- hunspell
- hunspell-fr
- rxvt-unicode
- vlc
- mpv
- mplayer
- geogebra
- zathura
- zathura-ps
- zathura-djvu
- zathura-cb
- zathura-pdf-mupdf
- xdotool
- guvcview
- alacritty
- scribus
- nextcloud-client
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-inconsolata-lgc-for-powerline
- ttf-droid-sans-mono-slashed-powerline-git
- ttf-literation-mono-powerline-git
- ttf-opendyslexic
- nerd-fonts-ubuntu-mono
- nerd-fonts-droid-sans-mono
become: yes
become_user: aur_builder
# - name: Download st
# git:
# repo: https://git.opytex.org/lafrite/st.git
# dest: /home/aur_builder/st
# register: st_update
# become: yes
# become_user: aur_builder
#
# - name: Install st
# command: "makepkg -si --noconfirm"
# args:
# chdir: "/home/aur_builder/st/"
# when: st_update is changed
# become: yes
# become_user: aur_builder