diff options
Diffstat (limited to 'roles/contexts/fretlink/tasks')
-rw-r--r-- | roles/contexts/fretlink/tasks/main.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/roles/contexts/fretlink/tasks/main.yml b/roles/contexts/fretlink/tasks/main.yml index 57d332e..07861ed 100644 --- a/roles/contexts/fretlink/tasks/main.yml +++ b/roles/contexts/fretlink/tasks/main.yml | |||
@@ -12,6 +12,22 @@ | |||
12 | dest: "$XDG_CONFIG_HOME/{{ item }}" | 12 | dest: "$XDG_CONFIG_HOME/{{ item }}" |
13 | loop: | 13 | loop: |
14 | - "autostart/zeal.desktop" | 14 | - "autostart/zeal.desktop" |
15 | - name: zeal configuration | ||
16 | ini_file: | ||
17 | path: "$XDG_CONFIG_HOME/Zeal/Zeal.conf" | ||
18 | section: "{{ item.0 }}" | ||
19 | option: "{{ item.1 }}" | ||
20 | value: "{{ item.2 }}" | ||
21 | no_extra_spaces: true | ||
22 | loop: | ||
23 | - [ "General", "check_for_update", "true" ] | ||
24 | - [ "General", "hide_on_close", "true" ] | ||
25 | - [ "General", "minimize_to_systray", "true" ] | ||
26 | - [ "General", "show_systray_icon", "true" ] | ||
27 | - [ "General", "start_minimized", "true" ] | ||
28 | - [ "docsets", "path", "{{ lookup('env', 'XDG_DATA_HOME') }}/Zeal/Zeal/docsets" ] | ||
29 | - [ "search", "fuzzy_search_enabled", "false" ] | ||
30 | - [ "tabs", "open_new_tab_after_active", "false" ] | ||
15 | - name: Create pm2 config dir | 31 | - name: Create pm2 config dir |
16 | file: | 32 | file: |
17 | path: $XDG_CONFIG_HOME/pm2 | 33 | path: $XDG_CONFIG_HOME/pm2 |