7 lines
149 B
Bash
Executable file
7 lines
149 B
Bash
Executable file
#!/usr/bin/env bash
|
|
if ! [ -d /tmp/$UID-runtime-dir ]; then
|
|
mkdir /tmp/$UID-runtime-dir
|
|
fi
|
|
export XDG_RUNTIME_DIR=/tmp/$UID-runtime-dir
|
|
|
|
sway $@
|