shell-things/xsessionrc

17 lines
317 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)
# 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