2022-01-05 21:24:28 +00:00
|
|
|
---
|
|
|
|
- name: Install
|
|
|
|
ansible.builtin.package:
|
|
|
|
name:
|
|
|
|
- tmux
|
|
|
|
state: latest
|
|
|
|
become: true
|
|
|
|
|
2022-08-04 01:58:04 +00:00
|
|
|
- name: Directory
|
2022-01-05 21:24:28 +00:00
|
|
|
ansible.builtin.file:
|
2022-08-04 01:58:04 +00:00
|
|
|
path: "{{ ansible_user_dir }}/.config/tmux"
|
|
|
|
state: directory
|
|
|
|
|
|
|
|
- name: Configuration
|
|
|
|
ansible.builtin.file:
|
|
|
|
src: "{{ role_path }}/files/tmux.conf"
|
|
|
|
dest: "{{ ansible_user_dir }}/.config/tmux/tmux.conf"
|
2022-01-05 21:24:28 +00:00
|
|
|
state: link
|