11 lines
302 B
Bash
Executable File
11 lines
302 B
Bash
Executable File
#!/bin/bash
|
|
. "../src/01-common.sh" || exit 5
|
|
title "Copying dotfiles..."
|
|
require_start
|
|
|
|
cp $DOTFILESDIR/.aliases $HOME/.aliases
|
|
cp $DOTFILESDIR/.bashrc $HOME/.bashrc
|
|
cp $DOTFILESDIR/.zshrc $HOME/.zshrc
|
|
cp $DOTFILESDIR/.gitconfig $HOME/.gitconfig
|
|
cp -R $DOTFILESDIR/Шаблоны $HOME/Шаблоны
|