aboutsummaryrefslogtreecommitdiff
path: root/inception
blob: 558dd6a4c36318cc9c07c56955aeebea62a58068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash
#
# The inception.
#

# Parameters
BASENAME="`basename $0`"
DIRNAME="`dirname $0`"

# Setup
(
  cd $DIRNAME

  echo "Initializing submodules..."
  git submodule update --init
  
  echo "Cloning default dotfiles..."
  ./metadot/metadot clone default

  echo "Loading all dotfiles..."
  ./metadot/metadot load --all
)

# Teardown
echo "Done. Logout and login again to apply all changes."