8 lines
161 B
Bash
8 lines
161 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if test -z "$XDG_RUNTIME_DIR"; then
|
||
|
export XDG_RUNTIME_DIR=/run/user/$UID
|
||
|
mkdir --parents $XDG_RUNTIME_DIR
|
||
|
chmod 0700 $XDG_RUNTIME_DIR
|
||
|
fi
|