You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
289 B
14 lines
289 B
dot_dir=~/linux-config
|
|
|
|
# dotfiles
|
|
dotfiles="bashrc gitconfig inputrc vimrc"
|
|
cd $dot_dir
|
|
for dotfile in $dotfiles; do
|
|
rm ~/.$dotfile
|
|
ln -s $dot_dir/.$dotfile ~/.$dotfile
|
|
done
|
|
|
|
# terminator
|
|
term_dir=~/.config/terminator
|
|
rm $term_dir/config
|
|
ln $dot_dir/termConfig "$term_dir"/config
|