├── .gitignore ├── LICENSE ├── LIFX Menu.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── freerunnering.xcuserdatad │ └── xcschemes │ └── LIFX Menu.xcscheme ├── LIFX Menu ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── MainMenu.xib ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── LIFX Bulb Round.png ├── LIFX Bulb.png ├── LIFXKit.framework │ ├── Headers │ ├── LIFXKit │ ├── Resources │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── LFXAllLightsCollection.h │ │ │ ├── LFXClient.h │ │ │ ├── LFXDevice.h │ │ │ ├── LFXHSBKColor.h │ │ │ ├── LFXLight.h │ │ │ ├── LFXLightCollection.h │ │ │ ├── LFXNetworkContext.h │ │ │ ├── LFXTaggedLightCollection.h │ │ │ ├── LFXTypes.h │ │ │ └── LIFXKit.h │ │ ├── LIFXKit │ │ └── Resources │ │ │ ├── Info.plist │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ └── Current ├── LaunchAtLoginController.h ├── LaunchAtLoginController.m ├── lifx-icon.png ├── lifx-icon@2x.png └── main.m ├── LIFX MenuTests ├── Info.plist └── LIFX_MenuTests.m ├── README.md └── Screenshots ├── menu.png └── screnshot_1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LICENSE -------------------------------------------------------------------------------- /LIFX Menu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LIFX Menu.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LIFX Menu.xcodeproj/xcuserdata/freerunnering.xcuserdatad/xcschemes/LIFX Menu.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu.xcodeproj/xcuserdata/freerunnering.xcuserdatad/xcschemes/LIFX Menu.xcscheme -------------------------------------------------------------------------------- /LIFX Menu/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/AppDelegate.h -------------------------------------------------------------------------------- /LIFX Menu/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/AppDelegate.m -------------------------------------------------------------------------------- /LIFX Menu/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /LIFX Menu/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LIFX Menu/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/Info.plist -------------------------------------------------------------------------------- /LIFX Menu/LIFX Bulb Round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFX Bulb Round.png -------------------------------------------------------------------------------- /LIFX Menu/LIFX Bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFX Bulb.png -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/LIFXKit: -------------------------------------------------------------------------------- 1 | Versions/Current/LIFXKit -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXAllLightsCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXAllLightsCollection.h -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXClient.h -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXDevice.h -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXHSBKColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXHSBKColor.h -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXLight.h -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXLightCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXLightCollection.h -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXNetworkContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXNetworkContext.h -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXTaggedLightCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXTaggedLightCollection.h -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFXKit.framework/Versions/A/Headers/LFXTypes.h -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/A/Headers/LIFXKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFXKit.framework/Versions/A/Headers/LIFXKit.h -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/A/LIFXKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFXKit.framework/Versions/A/LIFXKit -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFXKit.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/A/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LIFXKit.framework/Versions/A/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /LIFX Menu/LIFXKit.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /LIFX Menu/LaunchAtLoginController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LaunchAtLoginController.h -------------------------------------------------------------------------------- /LIFX Menu/LaunchAtLoginController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/LaunchAtLoginController.m -------------------------------------------------------------------------------- /LIFX Menu/lifx-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/lifx-icon.png -------------------------------------------------------------------------------- /LIFX Menu/lifx-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/lifx-icon@2x.png -------------------------------------------------------------------------------- /LIFX Menu/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX Menu/main.m -------------------------------------------------------------------------------- /LIFX MenuTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX MenuTests/Info.plist -------------------------------------------------------------------------------- /LIFX MenuTests/LIFX_MenuTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/LIFX MenuTests/LIFX_MenuTests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/Screenshots/menu.png -------------------------------------------------------------------------------- /Screenshots/screnshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehowells/LIFX-Menu/HEAD/Screenshots/screnshot_1.png --------------------------------------------------------------------------------