mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-10 02:29:22 +01:00
install-on-tails.bash: looks like Tails doesn't appreciate my symlinks
This commit is contained in:
parent
6244199e0b
commit
33e37d6f39
@ -57,27 +57,25 @@ else
|
|||||||
printf "shell-things: $SHELL_THINGS_REPO doesn't exist, cloning...\n\n"
|
printf "shell-things: $SHELL_THINGS_REPO doesn't exist, cloning...\n\n"
|
||||||
git clone https://codeberg.org/Aminda/shell-things.git $SHELL_THINGS_REPO
|
git clone https://codeberg.org/Aminda/shell-things.git $SHELL_THINGS_REPO
|
||||||
cd $SHELL_THINGS_REPO
|
cd $SHELL_THINGS_REPO
|
||||||
sleep 3
|
|
||||||
printf "\nPlease run this script again.\n\t...if you really want to, that is.\n"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd
|
cd
|
||||||
|
|
||||||
# bash
|
# bash
|
||||||
ln -nsfv $SHELL_THINGS_REPO/rc/bashrc $PERSISTDIR/dotfiles/.bashrc
|
cp -v $SHELL_THINGS_REPO/rc/bashrc $PERSISTDIR/dotfiles/.bashrc
|
||||||
ln -nsfv $SHELL_THINGS_REPO/rc/bashrc $HOME/.bashrc
|
ln -nsfv $PERSISTDIR/dotfiles/.bashrc $HOME/
|
||||||
# zsh
|
# zsh
|
||||||
ln -nsfv $SHELL_THINGS_REPO/rc/zshrc $PERSISTDIR/dotfiles/.zshrc
|
cp -v $SHELL_THINGS_REPO/rc/zshrc $PERSISTDIR/dotfiles/.zshrc
|
||||||
ln -nsfv $SHELL_THINGS_REPO/rc/zshrc $HOME/.zshrc
|
ln -nsfv $PERSISTDIR/dotfiles/.zshrc $HOME/
|
||||||
# tmux
|
# tmux
|
||||||
ln -nsfv $SHELL_THINGS_REPO/conf/tmux.conf $PERSISTDIR/dotfiles/.tmux.conf
|
cp -v $SHELL_THINGS_REPO/conf/tmux.conf $PERSISTDIR/dotfiles/.tmux.conf
|
||||||
ln -nsfv $SHELL_THINGS_REPO/conf/tmux.conf $HOME/.tmux.conf
|
ln -nsfv $PERSISTDIR/dotfiles/.tmux.conf $HOME/
|
||||||
# git
|
# git
|
||||||
git config --global gpg.ssh.allowedSignersFile $PERSISTDIR/src/codeberg.org/Aminda/ssh-allowed_signers/allowed_signers
|
git config --global gpg.ssh.allowedSignersFile $PERSISTDIR/src/codeberg.org/Aminda/ssh-allowed_signers/allowed_signers
|
||||||
ln -nsfv $SHELL_THINGS_REPO/conf/gitconfig $PERSISTDIR/dotfiles/.gitconfig
|
cp $SHELL_THINGS_REPO/conf/gitconfig $PERSISTDIR/dotfiles/.gitconfig
|
||||||
ln -nsfv $SHELL_THINGS_REPO/conf/gitconfig $HOME/.gitconfig
|
ln -nsfv $PERSISTDIR/dotfiles/.gitconfig $HOME/
|
||||||
|
|
||||||
# Hack for directories expecting it to work
|
# Hack for directories expecting it to work, although only for this boot
|
||||||
ln -nsfv $SHELL_THINGS_REPO $HOME/.shell-things
|
ln -nsfv $SHELL_THINGS_REPO $HOME/.shell-things
|
||||||
|
|
||||||
# Let's go home
|
# Let's go home
|
||||||
|
Loading…
Reference in New Issue
Block a user