summaryrefslogtreecommitdiff
path: root/.config/X11/clientrc
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-10-04 15:04:21 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-10-04 15:04:21 -0400
commit1cdc7055122eae4a260b0f6f5aaa5522af145e43 (patch)
treec72729c9fc35af316c507893bb99762cb44355e6 /.config/X11/clientrc
parent9abaebb597d396a24c51f7c7c03e4145963f6bb1 (diff)
Be more careful about what happens when XDG_RUNTIME_DIR isn't set.
Diffstat (limited to '.config/X11/clientrc')
-rw-r--r--.config/X11/clientrc5
1 files changed, 4 insertions, 1 deletions
diff --git a/.config/X11/clientrc b/.config/X11/clientrc
index ac0d5a8..bc68ed6 100644
--- a/.config/X11/clientrc
+++ b/.config/X11/clientrc
@@ -17,7 +17,10 @@ if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
-[ -n "$XDG_RUNTIME_DIR" ] || exit 1
+if [ -z "$XDG_RUNTIME_DIR" ]; then
+ printf "XDG_RUNTIME_DIR isn't set\n" >&2
+ exit 6
+fi
_DISPLAY="$(systemd-escape -- "$DISPLAY")"
trap "rm -f $(printf '%q' "${XDG_RUNTIME_DIR}/x11-wm@${_DISPLAY}")" EXIT
mkfifo "${XDG_RUNTIME_DIR}/x11-wm@${_DISPLAY}"