mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-14 20:39:22 +01:00
31 lines
880 B
Bash
31 lines
880 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
|
|
|
|
# Enable core files.
|
|
ulimit -c unlimited
|
|
|
|
# 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
|
|
gtk-redshift -l 60.4666227:26.9459998&
|
|
|
|
# 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
|