2014-12-27 10:01:16 +01:00
|
|
|
#!/usr/bin/env bash
|
2024-02-26 07:37:48 +01:00
|
|
|
# Do not use this script unless you know what you are doing! And even when you
|
|
|
|
# are me and know what you are doing, this is a poor practice I really should
|
|
|
|
# stop.
|
2014-12-27 10:01:16 +01:00
|
|
|
set -x
|
2022-03-15 20:17:08 +01:00
|
|
|
git verify-commit HEAD
|
2023-05-18 10:58:51 +02:00
|
|
|
cat .mikaela/bash_aliases >~/.bash_aliases
|
|
|
|
cat .mikaela/zsh_aliases >~/.zsh_aliases
|
|
|
|
cat rc/xinitrc >~/.xinitrc
|
2014-12-27 10:01:16 +01:00
|
|
|
mkdir -p ~/.gnupg
|
2023-05-18 10:58:51 +02:00
|
|
|
cat .mikaela/gpg.conf >~/.gnupg/gpg.conf
|
|
|
|
cat .mikaela/pastebinit.xml >~/.pastebinit.xml
|
|
|
|
cat .mikaela/environment >~/.environment
|
2024-02-26 07:37:48 +01:00
|
|
|
mkdir ~/.config/git
|
|
|
|
cat .mikaela/gitconfig >~/.config/git/config
|
2024-02-26 07:41:19 +01:00
|
|
|
cat .gitattributes >~/.config/git/attributes
|
2014-12-27 10:01:16 +01:00
|
|
|
mkdir -p ~/.ssh
|
2023-05-18 10:58:51 +02:00
|
|
|
cat .mikaela/keys/authorized_keys >~/.ssh/authorized_keys
|
|
|
|
cat etc/ssh/ssh_config >~/.ssh/config
|
|
|
|
cat .editorconfig >~/.editorconfig
|
2024-02-14 10:17:59 +01:00
|
|
|
mkdir -p ~/.local/firefox/defaults/pref/
|
|
|
|
cat conf/autoconfig.js >~/.local/firefox/defaults/pref/autoconfig.js
|
2024-02-14 10:57:47 +01:00
|
|
|
cat conf/librewolf.overrides.cfg >~/.local/firefox/librewolf.overrides.cfg
|
2024-02-16 11:31:01 +01:00
|
|
|
cat conf/librewolf.overrides.cfg >~/public_html/autoconfig.js
|
2023-11-04 12:12:52 +01:00
|
|
|
mkdir -p ~/.librewolf/ ~/.var/app/io.gitlab.librewolf-community/.librewolf/
|
2024-02-14 10:57:47 +01:00
|
|
|
cat conf/librewolf.overrides.cfg >~/.librewolf/librewolf.overrides.cfg
|
|
|
|
cat conf/librewolf.overrides.cfg >~/.var/app/io.gitlab.librewolf-community/.librewolf/librewolf.overrides.cfg
|
2014-12-27 10:01:16 +01:00
|
|
|
touch ~/.MIKAELA_GREP
|
|
|
|
set +x
|
|
|
|
# vim : set ft=sh :
|