diff options
-rw-r--r-- | roles/tools/tasks/main.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/roles/tools/tasks/main.yml b/roles/tools/tasks/main.yml index 70bba9d..748bd77 100644 --- a/roles/tools/tasks/main.yml +++ b/roles/tools/tasks/main.yml | |||
@@ -49,3 +49,33 @@ | |||
49 | path: "$XDG_DATA_HOME/pass" | 49 | path: "$XDG_DATA_HOME/pass" |
50 | src: "$XDG_CONFIG_HOME/ansible/password_store" | 50 | src: "$XDG_CONFIG_HOME/ansible/password_store" |
51 | state: link | 51 | state: link |
52 | - name: dconf configuration | ||
53 | # check: `dconf dump /` or `dconf-editor` | ||
54 | dconf: | ||
55 | key: "{{ item.0 }}" | ||
56 | value: "{{ item.1 }}" | ||
57 | loop: | ||
58 | - ["/org/gnome/evince/default/continuous", "true"] | ||
59 | - ["/org/gnome/evince/default/fullscreen", "true"] | ||
60 | - ["/org/gtk/settings/file-chooser/sort-column", "'name'"] | ||
61 | - ["/org/gtk/settings/file-chooser/show-size-column", "true"] | ||
62 | - ["/org/gtk/settings/file-chooser/show-hidden", "true"] | ||
63 | - ["/org/gtk/settings/file-chooser/location-mode", "'path-bar'"] | ||
64 | - ["/org/gtk/settings/file-chooser/sort-directories-first", "false"] | ||
65 | - ["/org/gtk/settings/file-chooser/sort-order", "'ascending'"] | ||
66 | - ["/org/gtk/settings/file-chooser/startup-mode", "'recent'"] | ||
67 | - name: gtk2 configuration | ||
68 | ini_file: | ||
69 | path: "$XDG_CONFIG_HOME/gtk-2.0/gtkfilechooser.ini" | ||
70 | section: "Filechooser Settings" | ||
71 | option: "{{ item.0 }}" | ||
72 | value: "{{ item.1 }}" | ||
73 | no_extra_spaces: true | ||
74 | loop: | ||
75 | - [ "SortColumn", "name" ] | ||
76 | - [ "ShowSizeColumn", "true" ] | ||
77 | - [ "ShowHidden", "true" ] | ||
78 | - [ "LocationMode", "path-bar" ] | ||
79 | - [ "SortOrder", "ascending" ] | ||
80 | - [ "StartupMode", "recent" ] | ||
81 | |||