mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
7 lines
101 B
Bash
7 lines
101 B
Bash
#!/bin/bash
|
|
|
|
export XDG_RUNTIME_DIR=/tmp/$UID
|
|
if [ ! -d $XDG_RUNTIME_DIR ]; then
|
|
mkdir /tmp/$UID
|
|
fi
|