给 emacs-mac-port 打了个 patch,把标题栏变成透明的

最近从 master 安装的 Emacs,刚才看 Frame 相关的文档,发现官方的 Cocoa 的默认支持这个功能:

`ns-transparent-titlebar'
     Only available on macOS, if non-`nil', set the titlebar and
     toolbar to be transparent.  This effectively sets the background
     color of both to match the Emacs background color.
(make-frame '((ns-transparent-titlebar . t))) (make-frame)

另外也能是适配 macOS 的暗色主题(Emacs Mac Port 貌似默认就开了这个?):

`ns-transparent-titlebar'
     Only available on macOS, if non-`nil', set the titlebar and
     toolbar to be transparent.  This effectively sets the background
     color of both to match the Emacs background color.

此外,还支持半透明效果(或许老早就有了,只是我刚知道而已),(make-frame '((alpha . 80)))

4 个赞