blob: 683af31f20c098609899656345aebd0bae312f3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/bash
export launchTarget="/opt/bytedance/lark/bytedance-lark"
if [ ${XDG_SESSION_TYPE} = "wayland" ]; then
export launchTarget="${launchTarget} --ozone-platform-hint=auto --enable-features=UseOzonePlatform --enable-wayland-ime --gtk-version=4"
export waylandOnly=${waylandOnly:-"true"}
fi
export _portableConfig="/usr/lib/larksuite-portable/portable-config"
portable $@
|