X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=buster%2Fsetup_scripts%2Fsetup_home_eeepc.sh;h=7dd2f8f690ee80019a65e7716d6b98458ca68349;hb=722d0def8e15b2f96ef5190e09135f6cb2c1b09d;hp=90db564c302c575eebcfff6e686f366e825d8b16;hpb=f54c648bbb11e3103498b8c3c1c02d04a265dcd8;p=config diff --git a/buster/setup_scripts/setup_home_eeepc.sh b/buster/setup_scripts/setup_home_eeepc.sh index 90db564..7dd2f8f 100755 --- a/buster/setup_scripts/setup_home_eeepc.sh +++ b/buster/setup_scripts/setup_home_eeepc.sh @@ -5,6 +5,9 @@ public_repos_dir="${HOME}/public_repos" config_tree_prefix="${public_repos_dir}/config/buster" setup_scripts_dir="${config_tree_prefix}/setup_scripts" repos_list_file="${public_repos_dir}/repos" +dir_secrets="${HOME}/tmp_secrets" +borgkeys_dir=~/.config/borg/keys +ssh_dir=~/.ssh ensure_repo() { repo_name="${1}" @@ -17,14 +20,22 @@ ensure_repo() { cd mkdir -p "${public_repos_dir}" ensure_repo config -#if [ ! -d "${HOME}/${public_repos_dir}/config" ]; then -# cd "${public_repos_dir}" -# git clone https://plomlompom.com/repos/clone/config -#fi cd "${setup_scripts_dir}" ./copy_dirtree.sh "${config_tree_prefix}/home_files" "${HOME}" minimal user_eeepc +curl -fsSl https://raw.githubusercontent.com/tridactyl/tridactyl/78e662efefd1f4af2bdb2a53edecf03b535b997b/native/install.sh | bash +cd "${dir_secrets}" +mkdir -p "${ssh_dir}" +echo "Setting up .ssh" +cp id_rsa ~/.ssh +stty -echo +ssh-keygen -y -f ~/.ssh/id_rsa > ~/.ssh/id_rsa.pub +stty echo +tar xf borg_keyfiles.tar +mkdir -p "${borgkeys_dir}" +mv borg_keyfiles/* "${borgkeys_dir}" +cd +rm -rf "${dir_secrets}" cat "${repos_list_file}" | while read line; do ensure_repo "${line}" done -curl -fsSl https://raw.githubusercontent.com/tridactyl/tridactyl/78e662efefd1f4af2bdb2a53edecf03b535b997b/native/install.sh | bash -echo "As tridactyl user, don't forget to do :source on the first Firefox run and then re-start." +echo "TODO: As tridactyl user, don't forget to do :source on the first Firefox run and then re-start."