summaryrefslogtreecommitdiffstats
path: root/desktop-i3/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'desktop-i3/tasks/main.yml')
-rw-r--r--desktop-i3/tasks/main.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/desktop-i3/tasks/main.yml b/desktop-i3/tasks/main.yml
new file mode 100644
index 0000000..9e58a22
--- /dev/null
+++ b/desktop-i3/tasks/main.yml
@@ -0,0 +1,17 @@
+---
+- name: Install i3 tiling window manager
+ apt:
+ name: i3
+ state: present
+ update_cache: yes
+
+- name: Remove i3 debug xsession
+ file:
+ name: "/usr/share/xsessions/i3-with-shmlog.desktop"
+ state: absent
+
+- name: Copy static files
+ copy:
+ src: files/
+ dest: /
+ become: yes