Open at login notification
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.
Also troubled by this issue。
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>
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.
Same as above, other applications not showing the notification.