added /etc/profile.d files
[gospodin_dotfiles.git] / dox / setup / xdg_runtime_dir.sh
blobba1ddc03c4ff81741f60f598038543aec3948bec
1 if test -z "${XDG_RUNTIME_DIR}"; then
2 export XDG_RUNTIME_DIR=/tmp/$(id -u)-runtime-dir
3 if ! test -d "${XDG_RUNTIME_DIR}"; then
4 mkdir "${XDG_RUNTIME_DIR}"
5 chmod 0700 "${XDG_RUNTIME_DIR}"
6 fi
7 fi