1
0
Fork 0
mirror of https://github.com/kastdeur/dotfiles.git synced 2025-05-15 12:29:23 +02:00

Possiblity of having special setups for hostnames

For .Bashrc aswell as generic .Profile
This commit is contained in:
Eric Teunis de Boone 2016-09-26 15:40:04 +02:00
parent 0fd6e855bf
commit 37123ca4cd
31 changed files with 3148 additions and 51 deletions

14
install Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -e
CONFIG="install.conf.yaml"
DOTBOT_DIR="dotbot"
DOTBOT_BIN="bin/dotbot"
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${BASEDIR}"
git submodule update --init --recursive "${DOTBOT_DIR}"
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"