diff bashrc @ 24:acbc487533ab

Consistently fix Thunderbird time settings by moving some bits to profile, not bashrc
author IBBoard <dev@ibboard.co.uk>
date Sat, 24 Oct 2015 15:48:50 +0100
parents ea572e660598
children c67aa2af6ff2
line wrap: on
line diff
--- a/bashrc	Sat Oct 24 15:47:34 2015 +0100
+++ b/bashrc	Sat Oct 24 15:48:50 2015 +0100
@@ -9,6 +9,8 @@
 
 # Use a sane editor
 export EDITOR=/usr/bin/nano
+
+#Import aliases
 test -s ~/.alias && . ~/.alias || true
 
 # Add sbins to path to make life easier (e.g. /sbin/ifconfig)
@@ -17,12 +19,11 @@
 #Disable man page number prompts - where there's more than one, we normally want the default (user command) version
 export MAN_POSIXLY_CORRECT=1
 
-#Make sure that Thunderbird et al show correct dates
-export LC_TIME=en_GB.UTF-8
-
 #Disable less history, because do I really search the same things enough to use it across sessions?
 export LESSHISTFILE=-
 
+export XDG_CACHE_HOME="$HOME/.cache"
+
 if [ "$PS1" != "" -a "${STARTED_TMUX:-x}" = x -a "${SSH_TTY:-x}" != x ]
 then
         STARTED_TMUX=1; export STARTED_TMUX