lib/scripts/java-gui-setup
author wenzelm
Tue, 09 Jan 2024 17:25:43 +0100
changeset 79453 fe0fffc5d186
parent 73161 31fbde3baa97
child 79556 0631dfc0db07
permissions -rwxr-xr-x
proper check of result from Soft_Type_System.global_purge (amending b2bedb022a75);

#!/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