We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have Yabai Indicator set as a login item. However, as my computer sleeps, the application sometimes closes and will need reopened.
Is there a correct way to set this as a service and avoid this problem? If so, that would be nice to include in the README.
Perhaps something like this can help:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>RunAtLoad</key> <true/> <key>KeepAlive</key> <true/> <key>Label</key> <string>SomeApp.restart</string> <key>ProgramArguments</key> <array> <string>/path/to/SomeApp.app/Contents/MacOS/SomeApp</string> </array> </dict> </plist>
I found this in a solution here. I am happy to give this a try and submit a PR to update the README if I can confirm this addresses the issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
I have Yabai Indicator set as a login item. However, as my computer sleeps, the application sometimes closes and will need reopened.
Question
Is there a correct way to set this as a service and avoid this problem? If so, that would be nice to include in the README.
Potential Solution
Perhaps something like this can help:
I found this in a solution here. I am happy to give this a try and submit a PR to update the README if I can confirm this addresses the issue.
The text was updated successfully, but these errors were encountered: