mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-29 23:25:11 +02:00
9 lines
292 B
Bash
9 lines
292 B
Bash
# Sets and creates XDG_RUNTIME_DIR.
|
|
|
|
if [ -z "${XDG_RUNTIME_DIR}" ]; then
|
|
export XDG_RUNTIME_DIR=/tmp/${UID:-$(id -u)}-runtime-dir
|
|
if [ -w /tmp ] && [ ! -d "${XDG_RUNTIME_DIR}" ]; then
|
|
mkdir -p "${XDG_RUNTIME_DIR}" >/dev/null 2>&1
|
|
chmod 0700 "${XDG_RUNTIME_DIR}" >/dev/null 2>&1
|
|
fi
|
|
fi
|