mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-13 03:49:22 +01:00
18 lines
399 B
Bash
Executable File
18 lines
399 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 gnupg/gpg.conf > ~/.gnupg/gpg.conf
|
|
cat xsessionrc > ~/.xsessionrc
|
|
cat oidentd.conf > ~/.oidentd.conf
|
|
chmod 644 ~/.oidentd.conf
|
|
chmod 711 ~
|
|
|
|
exec $SHELL
|
|
|
|
# vim : set ft=sh :
|