X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=buster%2Fsetup_scripts%2Fsetup_home_eeepc.sh;h=90db564c302c575eebcfff6e686f366e825d8b16;hb=f54c648bbb11e3103498b8c3c1c02d04a265dcd8;hp=bf987a54771d64280ed1e4d8ad4985b4b0d221ae;hpb=3594ad60c941246756a217b751bdfbd9258d222d;p=config diff --git a/buster/setup_scripts/setup_home_eeepc.sh b/buster/setup_scripts/setup_home_eeepc.sh index bf987a5..90db564 100755 --- a/buster/setup_scripts/setup_home_eeepc.sh +++ b/buster/setup_scripts/setup_home_eeepc.sh @@ -4,14 +4,27 @@ set -e 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" + +ensure_repo() { + repo_name="${1}" + if [ ! -d "${public_repos_dir}/${repo_name}" ]; then + cd "${public_repos_dir}" + git clone https://plomlompom.com/repos/clone/${repo_name} + fi +} cd mkdir -p "${public_repos_dir}" -if [ ! -d "${HOME}/${public_repos_dir}/config" ]; then - cd "${public_repos_dir}" - git clone https://plomlompom.com/repos/clone/config -fi +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" "/root" minimal user_eeepc +./copy_dirtree.sh "${config_tree_prefix}/home_files" "${HOME}" minimal user_eeepc +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."