summaryrefslogtreecommitdiff
path: root/roles/common/tasks/tmux.yml
blob: 7f8a653a9d1ef05878aa2c38b8621a0ec7e0eca3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- name: Install tmux
  package:
    name: tmux
    state: present

- name: Configure tmux
  copy:
    src: tmux/tmux.conf
    dest: /etc/tmux.conf
    owner: root
    group: root
    mode: '0664'

- name: Configure tmux window script
  copy:
    src: tmux/tmux-window.sh
    dest: /usr/local/bin/tmux-window.sh
    owner: root
    group: root
    mode: '0755'