blob: ed8a56144d214129282db6ade5c7e7519346e375 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/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
/usr/bin/openivi-html5 -f -u /usr/share/openivi/example/cluster/index.html
|