macOS 下用 brew 安装 Emacs,natural title bar 无法生效

我在 macOS 重新安装 Emacs,使用的是 GitHub - railwaycat/homebrew-emacsmacport: Emacs mac port formulae for the Homebrew package manager 这个仓库。 安装的命令是:

brew install emacs-mac --with-natural-title-bar --with-imagemagick --with-glib --with-gnu-head-icon --with-rsvg --with-dbus --with-ctags --with-starter

安装过程一切正常,终端打印也提示了关于 natural title bar 的补丁也打进去了:

==> Patching
==> Applying emacs-mac-title-bar-7.4.patch
patching file src/macappkit.m
Hunk #1 succeeded at 2119 (offset 21 lines).
Hunk #2 succeeded at 2719 (offset 48 lines).
Hunk #3 succeeded at 6679 (offset 222 lines).

然后我也运行了,启用的命令:

defaults write org.gun.Emacs TransparentTitleBar DARK

可是重新启动 Emacs,没有效果:

title bar 颜色还是和背景颜色不一致,很突兀。

我到终端中读取 org.gnu.Emacsdefaults

➜ defaults read org.gnu.Emacs
{
    ApplePressAndHoldEnabled = NO;
}

里面没有关于上一步我写入的关于 natural title bar 的配置,难道不生效和配置没有写入又关系? 我重试了 defaults write org.gun.Emacs TransparentTitleBar DARK 这个命令好多次,每次的 defaults 还是只有 ApplePressAndHoldEnabled = NO;,网络上找了一圈,不知道哪里出问题了。