aboutsummaryrefslogtreecommitdiff
path: root/roles/icewm/tasks/main.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/icewm/tasks/main.yaml')
-rw-r--r--roles/icewm/tasks/main.yaml16
1 files changed, 16 insertions, 0 deletions
diff --git a/roles/icewm/tasks/main.yaml b/roles/icewm/tasks/main.yaml
new file mode 100644
index 0000000..db30cd7
--- /dev/null
+++ b/roles/icewm/tasks/main.yaml
@@ -0,0 +1,16 @@
+- name: install icewm
+ apt:
+ name:
+ - icewm
+ - fonts-dejavu
+ - xterm
+ 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'