Ansible_workstation/tasks/dotfiles.yml

25 lines
450 B
YAML
Raw Normal View History

2018-08-23 12:32:42 +00:00
---
- name: urxvt Xdefault
template:
src: files/Xdefaults
2018-08-23 12:39:58 +00:00
dest: /home/{{ item.username }}/.Xdefaults
2018-08-23 12:45:01 +00:00
with_items: "{{ me }}"
2018-08-23 12:38:24 +00:00
when: not minimal
2018-08-23 12:32:42 +00:00
2018-08-23 13:02:18 +00:00
- name: Install urxvt perls
pacman:
name: urxvt-perls
state: present
2018-08-23 12:32:42 +00:00
2018-08-23 13:02:18 +00:00
- 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 12:32:42 +00:00