aboutsummaryrefslogtreecommitdiff
path: root/roles/desktop-environment/tasks/main.yaml
diff options
context:
space:
mode:
authorheqnx <root@heqnx.com>2025-05-27 11:53:37 +0300
committerheqnx <root@heqnx.com>2025-05-27 11:53:37 +0300
commit344691c7fc00fffa1d038f38c6b6a7217430ca7c (patch)
treef57688f379e9799e4b51212d1e12ea5641148d77 /roles/desktop-environment/tasks/main.yaml
parent8dbd2c0d50390f559934fbec9d2766cf7b5dece0 (diff)
downloadansible-playbooks-344691c7fc00fffa1d038f38c6b6a7217430ca7c.tar.gz
ansible-playbooks-344691c7fc00fffa1d038f38c6b6a7217430ca7c.zip
added icewm window manager
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'