# Set up user environments.
cd "${setup_scripts_dir}"
./copy_dirtree.sh "${config_tree_prefix}/home_files" "/root" minimal root
+HOME_DIR_EXISTS=$([ ! -d "/home/plom" ]; echo $?)
+if [ ! -d "/home/plom" ]; then
adduser --disabled-password --gecos "" plom
usermod -a -G sudo plom
-if [ ! -d "/home/plom" ]; then
+if [ ! "${HOME_DIR_EXISTS}" -eq 0 ]; then
cp setup_home_eeepc.sh /home/plom
chown plom:plom /home/plom/setup_home_eeepc.sh
- su -c "cd && ./setup_home_eeepc.sh"
+ su -c "cd && ./setup_home_eeepc.sh" plom
fi
passwd plom
if [ ! -d "/home/plom/${public_repos_dir}/config" ]; then
cd "${public_repos_dir}"
git clone https://plomlompom.com/repos/clone/config
+fi
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."