summaryrefslogtreecommitdiff
path: root/roles/tools
diff options
context:
space:
mode:
Diffstat (limited to 'roles/tools')
-rw-r--r--roles/tools/tasks/main.yml13
1 files changed, 7 insertions, 6 deletions
diff --git a/roles/tools/tasks/main.yml b/roles/tools/tasks/main.yml
index 745a08f..9d23619 100644
--- a/roles/tools/tasks/main.yml
+++ b/roles/tools/tasks/main.yml
@@ -25,6 +25,7 @@
25 dest: $XDG_CONFIG_HOME/vim/vimrc 25 dest: $XDG_CONFIG_HOME/vim/vimrc
26 notify: 26 notify:
27 - run PlugInstall 27 - run PlugInstall
28- meta: flush_handlers
28- name: tmux config file 29- name: tmux config file
29 template: 30 template:
30 src: tmux.conf.j2 31 src: tmux.conf.j2
@@ -34,18 +35,18 @@
34 src: youtube-viewer.conf.j2 35 src: youtube-viewer.conf.j2
35 dest: $XDG_CONFIG_HOME/youtube-viewer/youtube-viewer.conf 36 dest: $XDG_CONFIG_HOME/youtube-viewer/youtube-viewer.conf
36- name: remind config file 37- name: remind config file
37 synchronize: 38 copy:
38 recursive: yes 39 src: "remind/commands/{{ item }}"
39 archive: no 40 dest: "$XDG_CONFIG_HOME/remind/{{ item }}"
40 checksum: yes 41 loop:
41 src: remind/commands/ 42 - work
42 dest: /$XDG_CONFIG_HOME/remind/
43- name: remind service file 43- name: remind service file
44 copy: 44 copy:
45 src: remind/remind@.service 45 src: remind/remind@.service
46 dest: $XDG_CONFIG_HOME/systemd/user/ 46 dest: $XDG_CONFIG_HOME/systemd/user/
47 notify: 47 notify:
48 - reload systemd 48 - reload systemd
49- meta: flush_handlers
49- name: Clone password store 50- name: Clone password store
50 git: 51 git:
51 dest: "$XDG_DATA_HOME/pass" 52 dest: "$XDG_DATA_HOME/pass"