replace hardcoded user name

This commit is contained in:
Ray Elliott 2020-03-20 14:18:56 +00:00
parent d3d38a32b5
commit 17255dea08
3 changed files with 12 additions and 12 deletions

View File

@ -17,8 +17,8 @@ if [ -h .tmux ] ; then
elif [ -f .tmux ] ; then
mv .tmux .tmux.backup
fi
su ray -c 'git clone https://git.rayelliott.dev/dots/tmux.git .config/tmux'
su ray -c 'ln -bfs .config/tmux/tmux.conf .tmux.conf'
su ray -c 'ln -bfs .config/tmux/tmux .tmux'
su "$_user" -c 'git clone https://git.rayelliott.dev/dots/tmux.git .config/tmux'
su "$_user" -c 'ln -bfs .config/tmux/tmux.conf .tmux.conf'
su "$_user" -c 'ln -bfs .config/tmux/tmux .tmux'
cd .config/tmux
ln -bfs tmux.colours-base16.conf tmux.colours.conf

View File

@ -13,12 +13,12 @@ fi
mkdir -p /home/"$_user"/.config
cd /home/"$_user"
rm -Rf .config/zsh
su ray -c 'git clone https://git.rayelliott.dev/dots/zsh.git .config/zsh'
su ray -c 'git clone https://github.com/tarjoilija/zgen.git .config/zsh/zgen'
su ray -c 'ln -bfs .config/zsh/zshrc .zshrc'
su "$_user" -c 'git clone https://git.rayelliott.dev/dots/zsh.git .config/zsh'
su "$_user" -c 'git clone https://github.com/tarjoilija/zgen.git .config/zsh/zgen'
su "$_user" -c 'ln -bfs .config/zsh/zshrc .zshrc'
# set interactive shell
_zsh=$(command -v zsh)
if [ -f "$_zsh" ] ; then
chsh ray -s "$_zsh"
chsh "$_user" -s "$_zsh"
fi

View File

@ -24,11 +24,11 @@ fi
mkdir -p /home/"$_user"/.config
cd /home/"$_user"
rm -Rf .config/nvim
su ray -c 'git clone https://git.rayelliott.dev/dots/nvim.git .config/nvim'
su "$_user" -c 'git clone https://git."$_user"elliott.dev/dots/nvim.git .config/nvim'
su ray --login -c 'yarn global add neovim'
su "$_user" --login -c 'yarn global add neovim'
su ray --login -c 'python2 -m pip install --user --upgrade pynvim'
su ray --login -c 'python3 -m pip install --user --upgrade pynvim'
su "$_user" --login -c 'python2 -m pip install --user --upgrade pynvim'
su "$_user" --login -c 'python3 -m pip install --user --upgrade pynvim'
su ray --login -c 'nvim --headless +PlugInstall +qall'
su "$_user" --login -c 'nvim --headless +PlugInstall +qall'