mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-15 05:43:43 +01:00
16 lines
384 B
Bash
Executable File
16 lines
384 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
|
|
chmod 644 ~/.oidentd.conf
|
|
chmod 711 ~
|
|
|
|
# vim : set ft=sh :
|