mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-04 16:49:22 +01:00
24 lines
902 B
Bash
Executable File
24 lines
902 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Do not use this script unless you know what you are doing!
|
|
set -x
|
|
git verify-commit HEAD
|
|
cat .mikaela/bash_aliases >~/.bash_aliases
|
|
cat .mikaela/zsh_aliases >~/.zsh_aliases
|
|
cat .mikaela/gitconfig >~/.gitconfig
|
|
cat rc/xinitrc >~/.xinitrc
|
|
mkdir -p ~/.gnupg
|
|
cat .mikaela/gpg.conf >~/.gnupg/gpg.conf
|
|
cat .mikaela/pastebinit.xml >~/.pastebinit.xml
|
|
cat .mikaela/environment >~/.environment
|
|
cat .mikaela/gitconfig >~/.gitconfig
|
|
mkdir -p ~/.ssh
|
|
cat .mikaela/keys/authorized_keys >~/.ssh/authorized_keys
|
|
cat etc/ssh/ssh_config >~/.ssh/config
|
|
cat .editorconfig >~/.editorconfig
|
|
mkdir -p ~/.librewolf/ ~/.var/app/io.gitlab.librewolf-community/.librewolf/
|
|
cat conf/librewolf.overrides.cfg.js >~/.librewolf/librewolf.overrides.cfg
|
|
cat conf/librewolf.overrides.cfg.js >~/.var/app/io.gitlab.librewolf-community/.librewolf/librewolf.overrides.cfg
|
|
touch ~/.MIKAELA_GREP
|
|
set +x
|
|
# vim : set ft=sh :
|