tmux, motd

This commit is contained in:
2025-01-07 19:47:50 +01:00
parent 77f9b802e9
commit 4de2489293
5 changed files with 62 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
- name: Install tmux
pacman:
name: "tmux"
state: present
when:
- ansible_os_family == "Archlinux"
- name: Install tmux
apt:
name: "tmux"
state: present
when:
- ansible_os_family == "Debian"
- name: Copy config file
copy:
src: tmux/tmux.conf
dest: /etc/tmux.conf
mode: "0644"