Clipy icon indicating copy to clipboard operation
Clipy copied to clipboard

Open at login notification

Open mathguimaraes opened this issue 1 year ago • 5 comments

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.

mathguimaraes avatar May 13 '24 11:05 mathguimaraes

Also troubled by this issue。

falconchen avatar Jun 06 '24 07:06 falconchen

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>

falconchen avatar Jun 06 '24 10:06 falconchen

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

will09122000 avatar Jun 25 '24 09:06 will09122000

Same as above, other applications not showing the notification.

tolluset avatar Jul 06 '24 04:07 tolluset