Skip to content
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

Open at login notification #552

Open
mathguimaraes opened this issue May 13, 2024 · 2 comments
Open

Open at login notification #552

mathguimaraes opened this issue May 13, 2024 · 2 comments

Comments

@mathguimaraes
Copy link

I've set up the app to run at login, problem is that every time I turn on my mac, I receive macOS notification telling that Clipy was added to open at login. That's the only app that send this notification everyday.

@falconchen
Copy link

Also troubled by this issue。

@falconchen
Copy link

I have fix in another way. cancel the startup in clippy.app, and create a plist in ~/Library/LaunchAgents using launctl startup in macOS.

for me ,it is ~/Library/LaunchAgents/falcon.cmd.clipy.plist, plist content :

<?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>Label</key>
  <string>falcon.cmd.clipy</string>
  <key>ProgramArguments</key>
  <array>
    <string>/Applications/Clipy.app/Contents/MacOS/Clipy</string>
  </array>
  <key>RunAtLoad</key>
  <true/>
  <key>WorkingDirectory</key>
  <string>/Users/falcon</string>
</dict>
</plist>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants