21 lines
491 B
YAML
21 lines
491 B
YAML
---
|
|
|
|
- name: Install terminator (Archlinux)
|
|
become: true
|
|
pacman:
|
|
name:
|
|
- terminator
|
|
when: ansible_distribution == 'Archlinux'
|
|
|
|
- name: Install terminator (Debian)
|
|
become: true
|
|
apt:
|
|
name:
|
|
- terminator
|
|
when: ansible_distribution == 'Debian'
|
|
|
|
- name: Copy terminator config
|
|
copy: src={{ item.src }} dest={{ item.dest }}
|
|
with_items:
|
|
- { src: 'config', dest: '~/.config/terminator/config' }
|
|
- { src: 'profiles', dest: '~/.config/terminator/profiles' }
|