aboutsummaryrefslogtreecommitdiff
path: root/roles/icewm/tasks/main.yaml
blob: 1d273e115da5853f592a51766cb52edf2438c4ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
- name: install icewm
  apt:
    name:
      - icewm
      - fonts-dejavu
      - xterm
      - xclip
    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'

- name: copy system-wide xterm configuration to /etc/x11/Xresources
  copy:
    src: xterm
    dest: /etc/X11/Xresources
    owner: root
    group: root
    mode: '0644'