2012-04-03 13:21:19 +03:00
|
|
|
PATH=$HOME/.local/bin:$PATH
|
2012-04-04 10:16:52 +03:00
|
|
|
|
2012-04-04 13:52:03 +03:00
|
|
|
# Use gpg-agent
|
|
|
|
eval $(gpg-agent --daemon)
|
|
|
|
|
2012-04-30 19:22:42 +03:00
|
|
|
# For MonkeySphere
|
|
|
|
mkdir -p ~/.monkeysphere
|
2012-07-30 18:38:18 +03:00
|
|
|
echo "USE_VALIDATION_AGENT=true" > ~/.monkeysphere/monkeysphere.conf
|
2012-04-30 19:22:42 +03:00
|
|
|
|
2012-05-02 18:23:12 +03:00
|
|
|
# Enable core files.
|
|
|
|
ulimit -c unlimited
|
|
|
|
|
2012-08-26 20:33:08 +03:00
|
|
|
# Start gtk-redshift automatically with coordinates of Kotka.
|
|
|
|
# You might want to change those coordinates if you aren't in the city of Kotka.
|
|
|
|
# Use http://stereopsis.com/flux/map.html to get the coordinates. Replace ", " with ":".
|
|
|
|
# Coordinates are specified, because automatic location setting doesn't work.
|
|
|
|
# See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685233
|
2012-08-26 20:46:49 +03:00
|
|
|
gtk-redshift -l 60.4666227:26.9459998&
|
2012-08-26 20:33:08 +03:00
|
|
|
|
2012-04-04 14:06:03 +03:00
|
|
|
# The environment was set to ~/.environment according to other files...
|
|
|
|
if [ -f ~/.environment ]; then
|
2012-05-02 18:21:43 +03:00
|
|
|
. ~/.environment
|
2012-04-04 14:06:03 +03:00
|
|
|
fi
|
|
|
|
|
2012-04-04 10:16:52 +03:00
|
|
|
# Allow custom things to be put to ~/.xcustom
|
|
|
|
if [ -f ~/.xcustom ]; then
|
|
|
|
. ~/.xcustom
|
|
|
|
fi
|
|
|
|
|
|
|
|
# vim: set ft=sh
|