2011-12-29 10:23:18 +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
|
2012-04-30 18:28:04 +02:00
|
|
|
cat gitconfig > ~/.gitconfig
|
2011-12-31 20:40:19 +01:00
|
|
|
cat vimrc > ~/.vimrc
|
2012-04-30 18:28:04 +02:00
|
|
|
mkdir -p ~/.gnupg
|
2012-04-30 18:30:47 +02:00
|
|
|
cat gnupg/gpg.conf > ~/.gnupg/gpg.conf
|
2012-04-03 12:18:29 +02:00
|
|
|
cat xsessionrc > ~/.xsessionrc
|
2012-07-14 19:47:02 +02:00
|
|
|
cat warnings > ~/.warnings
|
2012-05-01 14:09:21 +02:00
|
|
|
cat oidentd.conf > ~/.oidentd.conf
|
|
|
|
chmod 644 ~/.oidentd.conf
|
|
|
|
chmod 711 ~
|
|
|
|
|
2012-01-10 16:42:12 +01:00
|
|
|
exec $SHELL
|
2011-12-31 20:40:19 +01:00
|
|
|
|
2012-01-10 16:42:12 +01:00
|
|
|
# vim : set ft=sh :
|