1234567891011121314151617181920212223 |
- #!/bin/sh
- echo '
- ___ _ ___ _ _
- | \ ___| |_| __(_) |___ ___
- | |) / _ \ _| _|| | / -_|_-<
- |___/\___/\__|_| |_|_\___/__/
- '
- echo "Installing dot files for current user"
- sleep 2
- _cwd="$(pwd)"
- cd
- echo "cloning https://figureslibres.io/gogs/bachir/dotfiles-server.git"
- git clone https://figureslibres.io/gogs/bachir/dotfiles-server.git ~/.dotfiles-server && cd ~/.dotfiles-server && ./install.sh && cd ~
- source ~/.bashrc
- cd "$_cwd"
- echo "Dot files installed"
|