aboutsummaryrefslogtreecommitdiff
path: root/roles/desktop-environment/tasks/main.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/desktop-environment/tasks/main.yaml')
-rw-r--r--roles/desktop-environment/tasks/main.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/roles/desktop-environment/tasks/main.yaml b/roles/desktop-environment/tasks/main.yaml
new file mode 100644
index 0000000..4d8dec7
--- /dev/null
+++ b/roles/desktop-environment/tasks/main.yaml
@@ -0,0 +1,15 @@
+- name: install icewm
+ apt:
+ name:
+ - icewm
+ - fonts-dejavu
+ state: present
+ update_cache: true
+
+- name: copy system-wide icewm config files
+ copy:
+ src: icewm/
+ dest: /etc/X11/icewm/
+ owner: root
+ group: root
+ mode: '0644'