]> git.immae.eu Git - perso/Immae/Config/Ansible.git/blame - roles/tools/tasks/main.yml
Add environment file for Fretlink
[perso/Immae/Config/Ansible.git] / roles / tools / tasks / main.yml
CommitLineData
397c4fed
IB
1---
2- name: Import other tools
3 include_role:
4 name: "{{ item }}"
5 loop:
6 - git
7 - gnupg
8- name: mplayer config file
9 copy:
10 src: mplayer
11 dest: $XDG_CONFIG_HOME/mplayer/config
12- name: psql config file
13 copy:
14 src: psqlrc
15 dest: $XDG_CONFIG_HOME/psql/psqlrc
16- name: psql history directory
17 file:
18 path: $XDG_STATE_HOME/psql
19 state: directory
20- name: vim config file
21 register: vim_result
22 copy:
23 src: vimrc
24 dest: $XDG_CONFIG_HOME/vim/vimrc
25- name: run PlugInstall
26 shell: vim -c PlugInstall -c qa
27 when: vim_result.changed
28- name: tmux config file
29 template:
30 src: tmux.conf.j2
31 dest: $XDG_CONFIG_HOME/tmux/tmux.conf
32- name: youtube viewer config file
33 template:
34 src: youtube-viewer.conf.j2
35 dest: $XDG_CONFIG_HOME/youtube-viewer/youtube-viewer.conf
36- name: remind config file
37 synchronize:
38 recursive: yes
39 archive: no
40 checksum: yes
41 src: remind/commands/
42 dest: /$XDG_CONFIG_HOME/remind/
43- name: remind service file
44 copy:
45 src: remind/remind@.service
46 dest: $XDG_CONFIG_HOME/systemd/user/
47 notify:
48 - reload systemd
b6984948
IB
49- name: Link password store
50 file:
51 path: "$XDG_DATA_HOME/pass"
52 src: "$XDG_CONFIG_HOME/ansible/password_store"
53 state: link