mirror of
https://github.com/JanJastrow/.dotfiles.git
synced 2024-11-22 10:39:57 +01:00
15 lines
320 B
Bash
Executable File
15 lines
320 B
Bash
Executable File
#!/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
|