blob: 37c1831b8c2a3b4aa177fd75575cde6eaf20bc2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
export ELM_ENGINE=wayland_egl
export ECORE_EVAS_ENGINE=wayland_egl
export ELM_THEME=tizen-HD-light
# Make EFL apps use the wayland-based input method.
export ECORE_IMF_MODULE=wayland
# also export dbus session address for dbus clients (details on bug TIVI-1686 [https://bugs.tizen.org/jira/browse/TIVI-1686])
export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$UID/dbus/user_bus_socket
# workaround systemd bug in pam_systemd module
if [ "$USER" == "display" ]; then
export XDG_RUNTIME_DIR=/run/display
else
export XDG_RUNTIME_DIR=/run/user/$UID
fi
|