summaryrefslogtreecommitdiff
path: root/roles/tmux/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/tmux/tasks/main.yml')
-rw-r--r--roles/tmux/tasks/main.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/roles/tmux/tasks/main.yml b/roles/tmux/tasks/main.yml
new file mode 100644
index 0000000..76e918e
--- /dev/null
+++ b/roles/tmux/tasks/main.yml
@@ -0,0 +1,15 @@
+---
+
+- name: Install tmux and htop
+ become: yes
+ pacman: name={{ item }} state=present update_cache=yes
+ with_items:
+ - tmux
+ - htop
+
+- name: Copy tmux config
+ become: yes
+ become_user: "{{ normal_user }}"
+ copy: src=tmux.conf dest=/home/{{ normal_user }}/.tmux.conf
+
+