diff options
author | Jonathan Bauer | 2021-05-19 10:28:34 +0200 |
---|---|---|
committer | Jonathan Bauer | 2021-05-19 10:28:34 +0200 |
commit | b71358ca55b8fc802396e33a57676c93ff58f542 (patch) | |
tree | 275e1149c39a43ca1de27d487d1307657b7254cd /desktop-i3/tasks | |
parent | [desktop-common] common desktop related files for DEs (diff) | |
download | ansible-bwlp-b71358ca55b8fc802396e33a57676c93ff58f542.tar.gz ansible-bwlp-b71358ca55b8fc802396e33a57676c93ff58f542.tar.xz ansible-bwlp-b71358ca55b8fc802396e33a57676c93ff58f542.zip |
[desktop-i3] i3 installation
Diffstat (limited to 'desktop-i3/tasks')
-rw-r--r-- | desktop-i3/tasks/main.yml | 17 |
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 |