diff --git a/tasks/arch_graphicals.yml b/tasks/arch_graphicals.yml index 097bfc8..24807df 100644 --- a/tasks/arch_graphicals.yml +++ b/tasks/arch_graphicals.yml @@ -19,7 +19,7 @@ - texlive-most -- name: Install graphical packages +- name: Install fonts pacman: name: "{{ item }}" state: present diff --git a/tasks/dotfiles.yml b/tasks/dotfiles.yml index 7115bcd..c6561c2 100644 --- a/tasks/dotfiles.yml +++ b/tasks/dotfiles.yml @@ -6,5 +6,19 @@ with_items: "{{ me }}" when: not minimal +- 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