43 lines
880 B
YAML
43 lines
880 B
YAML
---
|
|
- name: Copy urxvt Xdefault
|
|
template:
|
|
src: files/Xdefaults
|
|
dest: /home/{{ item.username }}/.Xdefaults
|
|
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
|
|
|
|
- name: Clone TPM (tmux plugin manager)
|
|
git:
|
|
repo: https://github.com/tmux-plugins/tpm
|
|
dest: /home/{{ item.username }}/.tmux/plugins/tpm
|
|
version: master
|
|
accept_hostkey: yes
|
|
with_items: "{{ me }}"
|
|
|
|
- name: Copy tmux.conf
|
|
template:
|
|
src: files/tmux.conf
|
|
dest: /home/{{ item.username }}/.tmux.conf
|
|
with_items: "{{ me }}"
|
|
|
|
- name: Install tmuxinator
|
|
gem:
|
|
name: tmuxinator
|
|
state: latest
|