One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| import WatchConnectivity | |
| class WatchSessionManager: NSObject, WCSessionDelegate { | |
| static let sharedManager = WatchSessionManager() | |
| private override init() { | |
| super.init() | |
| } | |
| private let session: WCSession? = WCSession.isSupported() ? WCSession.default : nil |
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases. | |
| # Much of this was originally copied from: | |
| # http://natelandau.com/my-mac-osx-bash_profile/ | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management |