]> git.immae.eu Git - perso/Immae/Config/Ansible.git/blame - roles/graphical/tasks/main.yml
Add dir creation
[perso/Immae/Config/Ansible.git] / roles / graphical / tasks / main.yml
CommitLineData
397c4fed 1---
587b6dd6
IB
2- name: Config dirs
3 file:
4 state: directory
5 path: "$XDG_CONFIG_HOME/{{ item }}"
6 loop:
7 - autostart
8 - dunst
397c4fed 9- name: Config files
eac82f28
IB
10 copy:
11 src: "config_files/{{ item }}"
12 dest: "$XDG_CONFIG_HOME/{{ item }}"
13 loop:
14 - redshift.conf
15 - autostart/redshift-gtk.desktop
16 - dunst/dunstrc
397c4fed
IB
17- name: mimeapps file
18 copy:
19 src: mimeapps.list
20 dest: $XDG_DATA_HOME/applications/
21- name: Create xorg state dir
22 file:
23 path: $XDG_STATE_HOME/xorg
24 state: directory
25- name: Link Xorg state dir
26 file:
27 path: "$XDG_DATA_HOME/xorg"
28 src: "$XDG_STATE_HOME/xorg"
29 state: link