aboutsummaryrefslogtreecommitdiff
path: root/Carthage/Checkouts/LaunchAtLogin/readme.md
diff options
context:
space:
mode:
authorFivePixels <o5pxels@gmail.com>2019-03-13 02:32:48 -0500
committerFivePixels <o5pxels@gmail.com>2019-03-13 02:32:48 -0500
commit44fd4eedbbba9d28efd301c554f611c08f26a3ca (patch)
treefc778dd663994dff3123469a7630f0d9d48e9d47 /Carthage/Checkouts/LaunchAtLogin/readme.md
parent7799cba77fd833817d16465c5be96ff7fcd46451 (diff)
downloaddwa140shortcut-44fd4eedbbba9d28efd301c554f611c08f26a3ca.tar.xz
dwa140shortcut-44fd4eedbbba9d28efd301c554f611c08f26a3ca.zip
Removed Carthage
Diffstat (limited to 'Carthage/Checkouts/LaunchAtLogin/readme.md')
-rw-r--r--Carthage/Checkouts/LaunchAtLogin/readme.md86
1 files changed, 0 insertions, 86 deletions
diff --git a/Carthage/Checkouts/LaunchAtLogin/readme.md b/Carthage/Checkouts/LaunchAtLogin/readme.md
deleted file mode 100644
index 5cc5a31..0000000
--- a/Carthage/Checkouts/LaunchAtLogin/readme.md
+++ /dev/null
@@ -1,86 +0,0 @@
-# LaunchAtLogin
-
-> Add "Launch at Login" functionality to your macOS app in seconds
-
-It's usually quite a [convoluted and error-prone process](before-after.md) to add this. **No more!**
-
-This package works with both sandboxed and non-sandboxed apps and it's App Store compatible and used in my [Lungo](https://blog.sindresorhus.com/lungo-b364a6c2745f) and [Battery Indicator](https://sindresorhus.com/battery-indicator) apps.
-
-*You might also find my [`create-dmg`](https://github.com/sindresorhus/create-dmg) project useful if you're publishing your app outside the App Store.*
-
-
-## Requirements
-
-- macOS 10.12+
-- Xcode 10+
-- Swift 4.2+
-
-
-## Install
-
-#### Carthage
-
-```
-github "sindresorhus/LaunchAtLogin"
-```
-
-#### CocoaPods
-
-```ruby
-pod 'LaunchAtLogin'
-```
-
-<a href="https://www.patreon.com/sindresorhus">
- <img src="https://c5.patreon.com/external/logo/become_a_patron_button@2x.png" width="160">
-</a>
-
-
-## Usage
-
-Add a new ["Run Script Phase"](http://stackoverflow.com/a/39633955/64949) below "Embed Frameworks" in "Build Phases" with the following:
-
-Carthage:
-
-```sh
-"${PROJECT_DIR}/Carthage/Build/Mac/LaunchAtLogin.framework/Resources/copy-helper.sh"
-```
-
-CocoaPods:
-
-```sh
-"${PROJECT_DIR}/Pods/LaunchAtLogin/LaunchAtLogin/copy-helper.sh"
-```
-
-Use it in your app:
-
-```swift
-import LaunchAtLogin
-
-print(LaunchAtLogin.isEnabled)
-//=> false
-
-LaunchAtLogin.isEnabled = true
-
-print(LaunchAtLogin.isEnabled)
-//=> true
-```
-
-*Note that the [Mac App Store guidelines](https://developer.apple.com/app-store/review/guidelines/) requires "launch at login" functionality to be enabled in response to a user action. This is usually solved by making it a preference that is disabled by default.*
-
-
-## How does it work?
-
-The framework bundles the helper app needed to launch your app and copies it into your app at build time.
-
-
-## Related
-
-- [Defaults](https://github.com/sindresorhus/Defaults) - Swifty and modern UserDefaults
-- [Preferences](https://github.com/sindresorhus/Preferences) - Add a preferences window to your macOS app in minutes
-- [DockProgress](https://github.com/sindresorhus/DockProgress) - Show progress in your app's Dock icon
-- [More…](https://github.com/search?q=user%3Asindresorhus+language%3Aswift)
-
-
-## License
-
-MIT © [Sindre Sorhus](https://sindresorhus.com)