summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-04-13 15:10:22 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-04-13 15:39:51 -0400
commit3295c5fd9b09fe0af48e11222c41d69f5bae5dbe (patch)
tree9d86324e241e893433054399dbb29a88705ce9b1
parent9f5efa128ef0c1177856682659969e2bc8accfd2 (diff)
login.sh: Do a better job of handling if variables aren't set
-rw-r--r--.config/login.d/90_symlink_xdg_runtime_dir.sh6
-rw-r--r--.config/login.sh4
2 files changed, 8 insertions, 2 deletions
diff --git a/.config/login.d/90_symlink_xdg_runtime_dir.sh b/.config/login.d/90_symlink_xdg_runtime_dir.sh
index b89f7b1..bc6109d 100644
--- a/.config/login.d/90_symlink_xdg_runtime_dir.sh
+++ b/.config/login.d/90_symlink_xdg_runtime_dir.sh
@@ -1,4 +1,6 @@
# This is really only needed for ssh ControlPath; as I don't have a
# way to communicate XDG_RUNTIME_DIR
-mkdir -p -- "$XDG_CACHE_HOME/xdg-runtime-dir"
-ln -sfT -- "$XDG_RUNTIME_DIR" "$XDG_CACHE_HOME/xdg-runtime-dir/$HOSTNAME"
+if [ -n "$XDG_RUNTIME_DIR" ]; then
+ mkdir -p -- "$XDG_CACHE_HOME/xdg-runtime-dir"
+ ln -sfT -- "$XDG_RUNTIME_DIR" "$XDG_CACHE_HOME/xdg-runtime-dir/$HOSTNAME"
+fi
diff --git a/.config/login.sh b/.config/login.sh
index b2cc80a..538920a 100644
--- a/.config/login.sh
+++ b/.config/login.sh
@@ -11,6 +11,10 @@
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
+if [ -z "$HOME" ]; then
+ eval 'HOME=~'
+ export HOME
+fi
for file in "${XDG_CONFIG_HOME:-$HOME/.config}/login.d/"*.sh; do
. "$file"
done