4 public_repos_dir="${HOME}/public_repos"
5 config_tree_prefix="${public_repos_dir}/config"
6 path_borgscript="${config_tree_prefix}/all_new_2018/borg.sh"
7 config_tree_buster="${config_tree_prefix}/buster"
8 setup_scripts_dir="${config_tree_buster}/setup_scripts"
9 repos_list_file="${public_repos_dir}/repos"
10 dir_secrets="${HOME}/tmp_secrets"
11 borgkeys_dir=~/.config/borg/keys
12 borgrepos_file=~/.borgrepos
17 if [ ! -d "${public_repos_dir}/${repo_name}" ]; then
18 cd "${public_repos_dir}"
19 git clone https://plomlompom.com/repos/clone/${repo_name}
23 # Clone config to copy dotfiles etc. from it.
25 mkdir -p "${public_repos_dir}"
27 cd "${setup_scripts_dir}"
28 ./copy_dirtree.sh "${config_tree_buster}/home_files" "${HOME}" minimal user_eeepc
30 # Set up native messenger for tridactyl.
31 curl -fsSl https://raw.githubusercontent.com/tridactyl/tridactyl/78e662efefd1f4af2bdb2a53edecf03b535b997b/native/install.sh | bash
33 # Set up non-public parts of infrastructure.
36 echo "Setting up .ssh"
39 ssh-keygen -y -f ~/.ssh/id_rsa > ~/.ssh/id_rsa.pub
41 tar xf borg_keyfiles.tar
42 mkdir -p "${borgkeys_dir}"
43 mv borg_keyfiles/* "${borgkeys_dir}"
45 rm -rf "${dir_secrets}"
47 # Sync org dir via borgbackup. For this we need the borgbackup servers
48 # in our .ssh/known_hosts file.
49 cat "${borgrepos_file}" | while read line; do
50 first_char=$(echo "${line}" | cut -c1)
51 if [ "${first_char}" = "#" ]; then
54 server=$(echo "${line}" | sed 's/.*@//')
55 ssh-keyscan "${server}" >> "${ssh_dir}"/known_hosts
57 BORG_PASSPHRASE="${SECRETS_PASS}" "${path_borgscript}" orgpull
59 # Fill ~/public_repos.
60 cat "${repos_list_file}" | while read line; do
61 first_char=$(echo "${line}" | cut -c1)
62 if [ "${first_char}" = "#" ]; then
68 # Final note on how to integrate tridactyl.
69 echo "TODO: As tridactyl user, don't forget to do :source on the first Firefox run and then re-start."