shell-things/xsessionrc

12 lines
184 B
Bash

PATH=$HOME/.local/bin:$PATH
# Use gpg-agent
eval $(gpg-agent --daemon)
# Allow custom things to be put to ~/.xcustom
if [ -f ~/.xcustom ]; then
. ~/.xcustom
fi
# vim: set ft=sh