2024-10-01 00:19:21 +02:00
|
|
|
---
|
|
|
|
# Managing tmux
|
|
|
|
|
|
|
|
- name: Installation
|
2024-12-23 22:28:41 +01:00
|
|
|
ansible.builtin.package:
|
|
|
|
name: tmux
|
|
|
|
state: present
|
|
|
|
update_cache: true
|
|
|
|
become: true
|
2024-10-01 00:19:21 +02:00
|
|
|
tags:
|
|
|
|
- tmux
|
|
|
|
- tmux-install
|
|
|
|
|
|
|
|
- name: Configuration
|
|
|
|
ansible.builtin.import_tasks: configuration.yml
|
|
|
|
tags:
|
|
|
|
- tmux
|
|
|
|
- tmux-config
|
|
|
|
|
|
|
|
- name: Manual steps
|
|
|
|
ansible.builtin.debug:
|
|
|
|
msg: "Please run prefix + I in tmux to install the needed plugins."
|