15 lines
403 B
Bash
Executable File
15 lines
403 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Warning: This will force overwrite your .bashrc and so on.
|
|
If you want to exit, please press Ctrl+C to exit.
|
|
Press the Enter to continue."
|
|
read _
|
|
|
|
cp -rf $PWD ~/profiles
|
|
|
|
ln -sf profiles/bash/.bashrc ~/.bashrc
|
|
ln -sf ../../profiles/fish/.config/fish/config.fish ~/.config/fish/config.fish
|
|
ln -sf profiles/vim/.vimrc ~/.vimrc
|
|
ln -sf profiles/tmux/.tmux.conf ~/.tmux.conf
|
|
|
|
echo "Finished" |