-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Remove the launcher and set the locale/current directory in alacritty #661
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Thanks for the PR! This looks good, but for some reason Alacritty.app no longer shows a window when I try and use it. Any idea? |
I ran into that too. Changing the bundle ID in the info.plist fixed it for me, so I assumed it was just something about the launch services cache. Maybe it is. |
Not sure if this was a problem before, but doing |
I suspect that's because macOS apps aren't generally supposed to have multiple instances open. Will investigate. |
This is kind of getting into the multiple windows territory, but it would be nice if we could support it easily. For instance, I can setup a keybinding like - { key: N, mods: Command, command: { program: open, args: ['-n', '-a', '/Applications/Alacritty.app'] } } to open new instances, but it doesn't matter if they don't show up. 😆 In any case, maybe this problem is nothing new with your PR and it has always been a problem. |
Yeah, changing the bundle ID to io.alacritty and removing the launcher seems to trigger this on all versions of alacritty. This is kinda weird though. |
I solved #668 by deletes all of Actually, I deleted these two locations. I don't know what's in there exactly.
|
ooh, it's really good to know that deleting Saved Application State helps. one of those features that apple enabled for everyone including people who really don't want it. |
Moving this to a new PR so that I can do more interesting stuff on my master branch. #879 |
This fixes all the weirdness where opening the app bundle would start one copy which immediately disappeared and then start another copy, etc. The code to get the locale probably should be reorganized.