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