比如 Safari 、Chrome ,全屏的时候我希望菜单栏不隐藏。 在用视频播放器看视频的时候,希望菜单栏隐藏。
1 OYSTER2DO 2023-09-08 17:46:37 +08:00 macOS 应该没有这么厉害吧,毕竟连个菜单栏折叠都没有 |
2 jorneyr 2023-09-08 18:23:43 +08:00 感觉 Hammerspoon 能做到: 1. 监听程序切换,这个功能有 2. 切换的时候修改系统配置的 defaults ,这个功能也有 剩下的就是研究修改哪些系统的配置项了。 |
![]() | 4 codehz 2023-09-09 13:48:16 +08:00 单独显示菜单栏可以用 defaults write com.example.SomeApp AppleMenuBarVisibleInFullscreen -bool true 中间替换成需要设置的 app bundle id 撤销可以 defaults delete com.example.SomeApp AppleMenuBarVisibleInFullscreen 其中 id 可以用 osascript -e 'id of app "TextEdit"' 查询 |