mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-15 06:28:40 +01:00
17 lines
472 B
Bash
Executable File
17 lines
472 B
Bash
Executable File
#!/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
|
|
cat xsessionrc > ~/.xsessionrc
|
|
cat pastebinit.xml > ~/.pastebinit.xml
|
|
gpg --quiet --import .keys/0x4DB53CFE82A46728.asc&
|
|
mkdir -p ~/.ssh
|
|
chmod 700 ~/.ssh --recursive
|
|
chmod 700 ~/.gnupg --recursive
|
|
# vim : set ft=sh :
|