summaryrefslogtreecommitdiff
path: root/.config/login.d
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-02-27 20:05:40 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-02-27 20:05:40 -0500
commitc2ee55d77f093d7a5abf8118870900b866dbba52 (patch)
treeeb8d273e3d0f720a84732f660298324007fbac5c /.config/login.d
parent21bb3f7fb1111d8b1043ff4c3a1d821042a8e4c6 (diff)
stuff
Diffstat (limited to '.config/login.d')
-rw-r--r--.config/login.d/02_xdg_runtime_dir.sh27
-rw-r--r--.config/login.d/90_dot-runtime.sh2
2 files changed, 0 insertions, 29 deletions
diff --git a/.config/login.d/02_xdg_runtime_dir.sh b/.config/login.d/02_xdg_runtime_dir.sh
deleted file mode 100644
index 86f1232..0000000
--- a/.config/login.d/02_xdg_runtime_dir.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/hint/sh
-# Set XDG_RUNTIME_DIR if we can
-if [ -z "$XDG_RUNTIME_DIR" ] && type flock &>/dev/null; then
- _diy_xdg_runtime_login() {
- export XDG_RUNTIME_DIR="$XDG_CACHE_HOME/xdg-runtime-dir/$HOSTNAME.dir"
- if ! [ /dev/fd/7 -ef "$XDG_CACHE_HOME/xdg-runtime-dir/$HOSTNAME.lock" ]; then
- mkdir -p -- "$XDG_CACHE_HOME/xdg-runtime-dir"
- exec 7>"$XDG_CACHE_HOME/xdg-runtime-dir/$HOSTNAME.lock"
- if flock -xn 7; then
- if [ ! -d "$XDG_RUNTIME_DIR" ]; then
- local tmp="$(mktemp -d --tmpdir -- "${USER}@${HOSTNAME}-runtime.XXXXXXXXXX")"
- ln -sfT -- "$tmp" "$XDG_RUNTIME_DIR"
- fi
- # Unfortunately this doesn't survive across exec(1).
- trap _diy_xdg_runtime_logout EXIT
- flock -sn 7
- fi
- fi
- }
- _diy_xdg_runtime_logout() {
- if flock -xn 7; then
- rm -rf -- "$(readlink "$XDG_RUNTIME_DIR")"
- rm -f -- "$XDG_RUNTIME_DIR"
- fi
- }
- _diy_xdg_runtime_login
-fi
diff --git a/.config/login.d/90_dot-runtime.sh b/.config/login.d/90_dot-runtime.sh
index 9536fb4..bf0ddcc 100644
--- a/.config/login.d/90_dot-runtime.sh
+++ b/.config/login.d/90_dot-runtime.sh
@@ -4,6 +4,4 @@
mkdir -p -- ~/.r
if [ -n "$XDG_RUNTIME_DIR" ]; then
ln -sfT -- "$XDG_RUNTIME_DIR" ~/.r/"$HOSTNAME"
-else
- ln -sfT -- /tmp ~/.r/"$HOSTNAME"
fi