mirror of
https://github.com/cucumber-sp/yandex-music-linux.git
synced 2025-07-02 17:53:44 +03:00
11 lines
304 B
Bash
Executable File
11 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ELECTRON_PATH=$(tr '\n' ' ' < /usr/lib/yandex-music/electron-path)
|
|
|
|
if [ "$XDG_SESSION_TYPE" == "wayland" ]; then
|
|
WAYLAND_FLAGS="--enable-features=UseOzonePlatform --ozone-platform=wayland"
|
|
fi
|
|
|
|
# Launch
|
|
exec ${ELECTRON_PATH} /usr/lib/yandex-music/yandex-music.asar ${WAYLAND_FLAGS} "$@"
|