-
Notifications
You must be signed in to change notification settings - Fork 47
Description
I help maintain a feedstock for a Terminal Emulator called Alacritty, recently I received an issue regarding the app bundled for MacOS, the issues are the following,
- Alacritty not inheriting the System-default for the Theme
- Alacritty not maximizing to cover the whole page
- The menu option Alacritty -> About Alacritty not showing the version number
(the issue page has videos for all of the issues)
Doing the following resolves all of the issues mentioned above,
- Replacing the contents of
~/Applications/Alacritty.app/Contents/MacOS/with the actual binary that gets called by the shell script (alacritty-script) - Adding the following entries to the
Info.plistfile
<key>NSRequiresAquaSystemAppearance</key>
<string>NO</string>
<key>NSHighResolutionCapable</key>
<true/>I was hoping I could get some help resolving these issues directly via menuinst and not rely on manually manipulating the installed files.
This is the file I used to configure menuinst for Alacritty: menu.json, I have been going through the menuinst-reference to understand if I have missed something, but haven't made any breakthroughs.
I was hoping you would be able to offer help, that might steer me in the right direction. I would greatly appreciate any and all assistance.