mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-02 00:25:11 +02:00
9 lines
234 B
Bash
9 lines
234 B
Bash
# Sets and creates XDG_RUNTIME_DIR.
|
|
|
|
if test -z "${XDG_RUNTIME_DIR}"; then
|
|
export XDG_RUNTIME_DIR=/tmp/${UID}-runtime-dir
|
|
if ! test -d "${XDG_RUNTIME_DIR}"; then
|
|
mkdir "${XDG_RUNTIME_DIR}"
|
|
chmod 0700 "${XDG_RUNTIME_DIR}"
|
|
fi
|
|
fi
|