mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-30 11:53:41 -04:00
9 lines
270 B
Bash
9 lines
270 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Workaround Unity desktop menubar integration
|
|
# - Unity's menubar relocation breaks Qt's MDI window handling in Linux
|
|
# - Unity was default in Ubuntu 11.04 - 18.04
|
|
if [ "$XDG_CURRENT_DESKTOP" = "Unity" ]; then
|
|
export QT_X11_NO_NATIVE_MENUBAR=1
|
|
fi
|