mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-10 18:49:23 +01:00
21 lines
432 B
Bash
21 lines
432 B
Bash
PATH=$HOME/.local/bin:$PATH
|
|
|
|
# Use gpg-agent
|
|
eval $(gpg-agent --daemon)
|
|
|
|
# For MonkeySphere
|
|
mkdir -p ~/.monkeysphere
|
|
echo "USE_VALIDATION_AGENT=true" >> ~/.monkeysphere/monkeysphere.conf
|
|
|
|
# The environment was set to ~/.environment according to other files...
|
|
if [ -f ~/.environment ]; then
|
|
source ~/.environment
|
|
fi
|
|
|
|
# Allow custom things to be put to ~/.xcustom
|
|
if [ -f ~/.xcustom ]; then
|
|
. ~/.xcustom
|
|
fi
|
|
|
|
# vim: set ft=sh
|