summaryrefslogtreecommitdiffstats
path: root/desktop-i3/tasks/main.yml
blob: 9e58a22501b782e49b119405b184bd174799d413 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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