mirror of
https://github.com/JanJastrow/.dotfiles.git
synced 2024-11-22 18:49:55 +01:00
15 lines
320 B
Bash
15 lines
320 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
rm ~/.zshrc
|
||
|
ln -s ~/.dotfiles/zshrc ~/.zshrc
|
||
|
touch ~/.dotfiles/credentials
|
||
|
touch ~/.dotfiles/zsh/device-specific
|
||
|
sudo chsh -s $(which zsh) $USER
|
||
|
echo "Include ~/.dotfiles/ssh/hosts" >> ~/.ssh/config
|
||
|
chmod 600 ~/.dotfiles/ssh/hosts
|
||
|
chmod 600 ~/.ssh/config
|
||
|
rm ~/.bashrc
|
||
|
rm ~/.bash_logout
|
||
|
rm ~/.bash_history
|
||
|
zsh
|