9 lines
245 B
Bash
9 lines
245 B
Bash
#!/bin/sh
|
|
|
|
# workaround Chromium bug https://bugs.chromium.org/p/chromium/issues/detail?id=918234
|
|
if [ "$DBUS_SESSION_BUS_ADDRESS" = "" ]; then
|
|
export DBUS_SESSION_BUS_ADDRESS="autolaunch:"
|
|
fi
|
|
|
|
exec %%DATADIR%%/tradingview --no-sandbox "$@"
|