2012-12-21 13:50:51 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Do not use this script unless you know what you are doing!
|
|
|
|
cat bashrc > ~/.bashrc
|
|
|
|
cat tmux.conf > ~/.tmux.conf
|
|
|
|
cat zshrc > ~/.zshrc
|
|
|
|
cat gitconfig > ~/.gitconfig
|
|
|
|
cat vimrc > ~/.vimrc
|
|
|
|
mkdir -p ~/.gnupg
|
|
|
|
cat gpg.conf > ~/.gnupg/gpg.conf
|
2013-01-17 14:07:21 +01:00
|
|
|
cat gpg-agent.conf > ~/.gnupg/gpg-agent.conf
|
2012-12-21 13:50:51 +01:00
|
|
|
cat xsessionrc > ~/.xsessionrc
|
2012-12-29 15:07:03 +01:00
|
|
|
cat pastebinit.xml > ~/.pastebinit.xml
|
|
|
|
gpg --quiet --import .keys/0x4DB53CFE82A46728.asc&
|
|
|
|
mkdir -p ~/.ssh
|
|
|
|
chmod 700 ~/.ssh --recursive
|
|
|
|
chmod 700 ~/.gnupg --recursive
|
2012-12-29 15:24:25 +01:00
|
|
|
mkdir -p ~/.public_html/
|
|
|
|
chmod 711 ~
|
|
|
|
chmod 755 ~/.public_html
|
2012-12-21 13:50:51 +01:00
|
|
|
# vim : set ft=sh :
|
2012-12-29 15:24:25 +01:00
|
|
|
#chmod 700 $HOME -R
|