summaryrefslogtreecommitdiff
path: root/roles/tools/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/tools/tasks/main.yml')
-rw-r--r--roles/tools/tasks/main.yml25
1 files changed, 24 insertions, 1 deletions
diff --git a/roles/tools/tasks/main.yml b/roles/tools/tasks/main.yml
index dd52f67..3fa7d35 100644
--- a/roles/tools/tasks/main.yml
+++ b/roles/tools/tasks/main.yml
@@ -83,4 +83,27 @@
83 - [ "LocationMode", "path-bar" ] 83 - [ "LocationMode", "path-bar" ]
84 - [ "SortOrder", "ascending" ] 84 - [ "SortOrder", "ascending" ]
85 - [ "StartupMode", "recent" ] 85 - [ "StartupMode", "recent" ]
86 86- name: pavucontrol configuration
87 ini_file:
88 path: "$XDG_CONFIG_HOME/pavucontrol.ini"
89 section: "window"
90 option: "{{ item.0 }}"
91 value: "{{ item.1 }}"
92 no_extra_spaces: true
93 loop:
94 - [ "sinkInputType", "0" ]
95 - [ "sourceOutputType", "0" ]
96 - [ "sinkType", "0" ]
97 - [ "sourceType", "0" ]
98 - [ "showVolumeMeters", "1" ]
99- name: ssh files
100 copy:
101 src: "ssh/{{ item }}"
102 dest: "$HOME/.ssh/{{ item }}"
103 loop:
104 - known_hosts
105 - rc
106- name: ssh configuration
107 template:
108 src: ssh_config.j2
109 dest: $HOME/.ssh/config