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-05-19 13:05:04 +02:00
|
|
|
#cat conf/librewolf.overrides.cfg >~/.local/firefox/librewolf.overrides.cfg
|
|
|
|
cat conf/firefox-forbidden-policies.js >~/.local/firefox/firefox-forbidden-policies.js
|
|
|
|
#cat conf/librewolf.overrides.cfg >~/public_html/autoconfig.js
|
|
|
|
cat conf/firefox-forbidden-policies.js >~/public_html/autoconfig.js
|
2023-11-04 12:12:52 +01:00
|
|
|
mkdir -p ~/.librewolf/ ~/.var/app/io.gitlab.librewolf-community/.librewolf/
|
2024-05-19 13:05:04 +02:00
|
|
|
#cat conf/librewolf.overrides.cfg >~/.librewolf/librewolf.overrides.cfg
|
|
|
|
cat conf/firefox-forbidden-policies.js >~/.librewolf/librewolf.overrides.cfg
|
|
|
|
#cat conf/librewolf.overrides.cfg >~/.var/app/io.gitlab.librewolf-community/.librewolf/librewolf.overrides.cfg
|
|
|
|
cat conf/firefox-forbidden-policies.js >~/.var/app/io.gitlab.librewolf-community/.librewolf/librewolf.overrides.cfg
|
2024-04-29 09:26:44 +02:00
|
|
|
mkdir -p ~/.local/share/applications
|
|
|
|
ln -sfv ~/.shell-things/local/share/applications ~/.local/share/applications/shell-things
|
2024-05-13 18:54:50 +02:00
|
|
|
rm -fv ~/.shell-things/local/share/applications/applications
|
2024-04-29 09:26:44 +02:00
|
|
|
if hash update-desktop-database 2>/dev/null; then
|
|
|
|
update-desktop-database ~/.local/share/applications
|
|
|
|
fi
|
2014-12-27 10:01:16 +01:00
|
|
|
touch ~/.MIKAELA_GREP
|
|
|
|
set +x
|
|
|
|
# vim : set ft=sh :
|