]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
xinitrc: Load general shell environment from ~/.shell/env.
authorSimon Ruderich <simon@ruderich.org>
Mon, 27 May 2013 10:43:14 +0000 (12:43 +0200)
committerSimon Ruderich <simon@ruderich.org>
Mon, 27 May 2013 20:50:55 +0000 (22:50 +0200)
xinitrc

diff --git a/xinitrc b/xinitrc
index 8a634ff61779c4efb1168ea2ab96662cbf4b3a81..696230a455b997b61d9a7d669e767c85ac7a51bf 100755 (executable)
--- a/xinitrc
+++ b/xinitrc
 # Some systems don't set the LANG environment variable when starting xinitrc,
 # this causes problems for rxvt-unicode-256color which fails to display UTF-8
 # characters correctly when LANG is missing and for notify.py which also needs
-# LANG set (for Python's decode() function). Therefore set it here, might be
-# overwritten by shell setup scripts.
-LANG=en_US.UTF-8
-export LANG
+# LANG set (for Python's decode() function). Therefore load my general shell
+# environment which also includes $LANG.
+if test -f "$HOME/.shell/env"; then
+    # Debug function used in ~/.shell/env.
+    source_debug() {
+        # Do nothing.
+        :
+    }
+
+    . "$HOME/.shell/env"
+fi
 
 
 installed() {