diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-02-07 22:21:55 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-02-07 22:21:55 -0200 |
commit | 17061634f5563821eb8a6fbecbe4eba41337627e (patch) | |
tree | f6c9ef18209b223621afe295aaa37a330cb948e7 | |
parent | 069bc999fa092b733d359c2ef8998d68418b7d21 (diff) | |
download | dotfiles-17061634f5563821eb8a6fbecbe4eba41337627e.tar.gz dotfiles-17061634f5563821eb8a6fbecbe4eba41337627e.tar.bz2 |
Setting TMP folder and commenting out agents
-rw-r--r-- | modules/profile/dmrc.dot.link | 1 | ||||
-rw-r--r-- | modules/profile/profile.dot.link | 17 |
2 files changed, 11 insertions, 7 deletions
diff --git a/modules/profile/dmrc.dot.link b/modules/profile/dmrc.dot.link index f66a68d..52e0f96 100644 --- a/modules/profile/dmrc.dot.link +++ b/modules/profile/dmrc.dot.link @@ -1,3 +1,2 @@ - [Desktop] Session=awesome diff --git a/modules/profile/profile.dot.link b/modules/profile/profile.dot.link index 835a048..9c2bc47 100644 --- a/modules/profile/profile.dot.link +++ b/modules/profile/profile.dot.link @@ -22,18 +22,23 @@ export PATH=$PATH:$HOME/.dotfiles:$HOME/apps/scripts:$HOME/apps/brweather/brweat # Editor variables, avoiding "Avoiding protocol specified" error export EDITOR="vim -X" +# Temporary folder +export TMPDIR="$HOME/temp/misc" +export TMP="$HOME/temp/misc" +mkdir -p $TMP + # Dir colors eval "`dircolors -b ~/.dircolorsrc`" # SSH Agent -if [ -e "$HOME/apps/scripts/ssh-agent-eval" ]; then - $HOME/apps/scripts/ssh-agent-eval -fi +#if [ -e "$HOME/apps/scripts/ssh-agent-eval" ]; then +# $HOME/apps/scripts/ssh-agent-eval +#fi # GPG Agent -if [ -e "$HOME/apps/scripts/gpg-agent-eval" ]; then - $HOME/apps/scripts/gpg-agent-eval -fi +#if [ -e "$HOME/apps/scripts/gpg-agent-eval" ]; then +# $HOME/apps/scripts/gpg-agent-eval +#fi # Remove lost found folder if empty if [ -d "$HOME/lost+found" ]; then |