2019-10-21 08:09:44 +00:00
|
|
|
---
|
|
|
|
- name: Create user applications directory
|
|
|
|
file:
|
|
|
|
path: "{{ ansible_env.HOME }}/.local/share/applications"
|
|
|
|
state: directory
|
|
|
|
- name: Create user autostart directory
|
|
|
|
file:
|
|
|
|
path: "{{ ansible_env.HOME }}/.config/autostart"
|
|
|
|
state: directory
|
2019-11-15 22:55:28 +00:00
|
|
|
- name: Create ~/.fvwm directory
|
|
|
|
file:
|
2020-07-11 18:56:11 +00:00
|
|
|
path: "{{ ansible_env.HOME }}/.fvwm"
|
|
|
|
state: directory
|
|
|
|
- name: Create ~/.local/share/fonts directory
|
|
|
|
file:
|
|
|
|
path: "{{ ansible_env.HOME }}/.local/share/fonts"
|
2019-11-15 22:55:28 +00:00
|
|
|
state: directory
|