-
Notifications
You must be signed in to change notification settings - Fork 7
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
Enable the module in Homebrew services #29
Comments
Is the requirement of making the app available in homebrew is to make it auto-update? |
homebrew provides ease of access for installing/updating/uninstalling the scripts and apps. Currently the clip share server is automatically being stopped by OS and I have to manually start it again. |
Did you install ClipShare using the installer script or did you manually run the executable? If it's installed using the installer script, it should automatically start once you log in. If it stops automatically, that may be a bug. Did you notice when it stops automatically (ex: it doesn't auto-start on boot/login, or it works for some time and stops while you are logged in)? Also, does it just stop accepting connections or does it stop all the clip_share processes? (You can check this by Btw., I started to create a brew tap for ClipShare, but it might take some time to complete. It would be better if the current issue with ClipShare (being stopped by OS) could be fixed before getting it in Homebrew, as if this gets stopped automatically by OS, this issue can still affect even if you use a brew service for ClipShare. |
I installed it with installer. Thanks for taking into consideration. |
This solution worked for me: https://stackoverflow.com/a/40067738 sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate off
/usr/libexec/ApplicationFirewall/socketfilterfw --add ~/.local/bin/clip_share # ~ gives your home directory
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate on |
Thanks. Your solution looks good.
The text was updated successfully, but these errors were encountered: