| 1234567891011121314151617181920212223 | #!/bin/shecho '  ___      _   ___ _ _ |   \ ___| |_| __(_) |___ ___ | |) / _ \  _| _|| | / -_|_-< |___/\___/\__|_| |_|_\___/__/'#installing better prompt and some goodiesecho "Installing dot files for current user"sleep 2# get the current position_cwd="$(pwd)"# go to user homecdecho "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# return to working directorycd "$_cwd"echo "Dot files installed"
 |