diff options
author | heqnx <root@heqnx.com> | 2025-05-27 11:53:37 +0300 |
---|---|---|
committer | heqnx <root@heqnx.com> | 2025-05-27 11:53:37 +0300 |
commit | 344691c7fc00fffa1d038f38c6b6a7217430ca7c (patch) | |
tree | f57688f379e9799e4b51212d1e12ea5641148d77 /roles/desktop-environment/tasks/main.yaml | |
parent | 8dbd2c0d50390f559934fbec9d2766cf7b5dece0 (diff) | |
download | ansible-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.yaml | 15 |
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' |