blob: 18be2ad49699de91642637820089d19f7e523b36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
if test -z "$XDG_RUNTIME_DIR"; then
export XDG_RUNTIME_DIR=/run/user/`id -u`
if ! test -d "$XDG_RUNTIME_DIR"; then
mkdir --parents $XDG_RUNTIME_DIR
chmod 0700 $XDG_RUNTIME_DIR
fi
fi
export QT_QPA_PLATFORM=wayland
|