shell-things/xsessionrc

24 lines
469 B
Plaintext
Raw Normal View History

PATH=$HOME/.local/bin:$PATH
2012-04-04 12:52:03 +02:00
# Use gpg-agent
eval $(gpg-agent --daemon)
# For MonkeySphere
mkdir -p ~/.monkeysphere
echo "USE_VALIDATION_AGENT=true" >> ~/.monkeysphere/monkeysphere.conf
2012-05-02 17:23:12 +02:00
# Enable core files.
ulimit -c unlimited
# The environment was set to ~/.environment according to other files...
if [ -f ~/.environment ]; then
. ~/.environment
fi
# Allow custom things to be put to ~/.xcustom
if [ -f ~/.xcustom ]; then
. ~/.xcustom
fi
# vim: set ft=sh