profiles/run.sh
2024-12-03 22:52:50 +08:00

14 lines
345 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 _
ln -sf $PWD/bash/.bashrc ~/.bashrc
ln -sf $PWD/fish/config.fish ~/.config/fish/config.fish
ln -sf $PWD/vim/.vimrc ~/.vimrc
ln -sf $PWD/tmux/.tmux.conf ~/.tmux.conf
echo "Finished"