4 public_repos_dir="${HOME}/public_repos"
5 config_tree_prefix="${public_repos_dir}/config/buster"
6 setup_scripts_dir="${config_tree_prefix}/setup_scripts"
7 repos_list_file="${public_repos_dir}/repos"
9 source_dir="/media/${secrets_dev}/to_usb"
10 target_dir="${HOME}/tmp_to_usb"
11 borgkeys_dir=~/.config/borg/keys
16 if [ ! -d "${public_repos_dir}/${repo_name}" ]; then
17 cd "${public_repos_dir}"
18 git clone https://plomlompom.com/repos/clone/${repo_name}
23 mkdir -p "${public_repos_dir}"
25 cd "${setup_scripts_dir}"
26 ./copy_dirtree.sh "${config_tree_prefix}/home_files" "${HOME}" minimal user_eeepc
27 cat "${repos_list_file}" | while read line; do
30 curl -fsSl https://raw.githubusercontent.com/tridactyl/tridactyl/78e662efefd1f4af2bdb2a53edecf03b535b997b/native/install.sh | bash
31 while [ ! -e /dev/"${secrets_dev}" ]; do
32 echo "Put secrets drive into slot for /dev/${secrets_dev}, then hit Return."
35 sudo pmount /dev/"${secrets_dev}"
36 cp -a "${source_dir}" "${target_dir}"
37 sudo pumount "${secrets_dev}"
38 echo "You can remove /dev/${secrets_dev} now."
41 echo "Setting up .ssh"
43 ssh-keygen -y -f ~/.ssh/id_rsa > ~/.ssh/id_rsa.pub
44 tar xf borg_keyfiles.tar
45 mkdir -p "${borgkeys_dir}"
46 mv borg_keyfiles/* "${borgkeys_dir}"
48 rm -rf "${target_dir}"
49 echo "TODO: As tridactyl user, don't forget to do :source on the first Firefox run and then re-start."