setup (698B)
1 #!/bin/sh 2 3 # ~ 4 ln -s "gnupg/" "${HOME}/.gnupg" 5 ln -s "themes/" "${HOME}/.themes" 6 ln -s "bash/bash_logout" "${HOME}/.bash_logout" 7 ln -s "bash/bash_profile" "${HOME}/.bash_profile" 8 ln -s "bash/.bashrc" "${HOME}/.bashrc" 9 ln -s "profile" "${HOME}/.profile" 10 ln -s "signature" "${HOME}/.signature" 11 ln -s "X11/xinitrc" "${HOME}/.xinitrc" 12 13 # ~/.local/bin 14 mkdir -p "${HOME}/.local/bin" 15 16 ln -f -s "${PWD}/scripts/"* "${HOME}/.local/bin/" 17 18 echo "Install the following to ~/.local/bin:" 19 echo "st" 20 echo "statusbar" 21 echo "ymd" 22 23 # ~/.local/share 24 mkdir -p "${HOME}/.local/share" 25 26 ln -s "fonts/" "${HOME}/.local/share/fonts" 27 ln -s "icons/" "${HOME}/.local/share/icons" 28 ln -s "themes/" "${HOME}/.local/share/themes"