summaryrefslogtreecommitdiff
path: root/.config/login.d/02_xdg_runtime_dir.sh
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-02-27 20:12:38 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-02-27 20:12:38 -0500
commit4e802e740bb2f7c6891271d3eaab39768360e261 (patch)
tree52cd247d9ffabab2f5cfb9f7821fbafbb27678f7 /.config/login.d/02_xdg_runtime_dir.sh
parentbd42aa1b31e2e41cac7ac2ffa6edc05e04354815 (diff)
parentd09fa8687ee01dcb4ef540deb106b8531f56b403 (diff)
Merge branch 'master' into build64-par/master
Diffstat (limited to '.config/login.d/02_xdg_runtime_dir.sh')
-rw-r--r--.config/login.d/02_xdg_runtime_dir.sh28
1 files changed, 0 insertions, 28 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 6e3e4ad..0000000
--- a/.config/login.d/02_xdg_runtime_dir.sh
+++ /dev/null
@@ -1,28 +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"
- if ! [ /dev/fd/7 -ef "$XDG_CACHE_HOME/xdg-runtime-dir/.lock" ]; then
- mkdir -p -- "$XDG_CACHE_HOME/xdg-runtime-dir"
- exec 7>"$XDG_CACHE_HOME/xdg-runtime-dir/.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() {
- exec 7>"$XDG_CACHE_HOME/xdg-runtime-dir/.lock"
- if flock -xn 7; then
- rm -rf -- "$(readlink "$XDG_RUNTIME_DIR")"
- fi
- }
- _diy_xdg_runtime_login
-fi