14 lines
236 B
Bash
14 lines
236 B
Bash
#!/bin/sh
|
|
|
|
OZSH_HOME=$HOME/.ozsh
|
|
|
|
# clone the repo
|
|
git clone https://git.quacker.org/d/ozsh $OZSH_HOME/
|
|
|
|
# pull submodules
|
|
git -C $OZSH_HOME/.ozsh submodule update --init --recursive
|
|
|
|
# link .zshrc
|
|
ln -s $OZSH_HOME/.zshrc $HOME/.zshrc
|
|
|