lib/scripts/java-gui-setup
author wenzelm
Tue, 19 Jan 2021 14:04:31 +0100
changeset 73161 31fbde3baa97
child 79556 0631dfc0db07
permissions -rwxr-xr-x
more systematic java-gui-setup, also for "isabelle jedit" command-line tool;

#!/usr/bin/env bash
#
# java-gui-setup --- platform-specific setup for Java/Swing GUI applications

if [ "$ISABELLE_PLATFORM_FAMILY" = "macos" ]
then
  JAVA_VERSION="$("$ISABELLE_JDK_HOME/bin/java" -version 2>&1 | head -n 1 | cut -d '"' -f2)"
  JAVA_DOMAIN="com.azul.zulu.${JAVA_VERSION}.java"
  defaults read "$JAVA_DOMAIN" AppleWindowTabbingMode >/dev/null 2>/dev/null ||
    defaults write "$JAVA_DOMAIN" AppleWindowTabbingMode manual >/dev/null 2>/dev/null
fi