Clipy / Clipy

Clipboard extension app for macOS.
https://clipy-app.com
MIT License
7.48k stars 633 forks source link

Open at login notification #552

Open mathguimaraes opened 2 months ago

mathguimaraes commented 2 months ago

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 commented 1 month ago

Also troubled by this issue。

falconchen commented 1 month ago

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>
will09122000 commented 3 weeks ago

If the above doesn't work for you, like it didn't for me. Try adding the app attached to your login items, it's a simple Automator script to open Clipy when launched.

ClipyOpen.zip

tolluset commented 2 weeks ago

Same as above, other applications not showing the notification.