├── MacLight.xcodeproj └── project.pbxproj ├── MacLight ├── MacLight-Info.plist ├── MacLight-Prefix.pch ├── MacLightAppDelegate.h ├── MacLightAppDelegate.m ├── OpenGLScreenReader.h ├── OpenGLScreenReader.m ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib └── main.m └── readme.md /MacLight.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeincontext/MacLight/HEAD/MacLight.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MacLight/MacLight-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeincontext/MacLight/HEAD/MacLight/MacLight-Info.plist -------------------------------------------------------------------------------- /MacLight/MacLight-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeincontext/MacLight/HEAD/MacLight/MacLight-Prefix.pch -------------------------------------------------------------------------------- /MacLight/MacLightAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeincontext/MacLight/HEAD/MacLight/MacLightAppDelegate.h -------------------------------------------------------------------------------- /MacLight/MacLightAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeincontext/MacLight/HEAD/MacLight/MacLightAppDelegate.m -------------------------------------------------------------------------------- /MacLight/OpenGLScreenReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeincontext/MacLight/HEAD/MacLight/OpenGLScreenReader.h -------------------------------------------------------------------------------- /MacLight/OpenGLScreenReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeincontext/MacLight/HEAD/MacLight/OpenGLScreenReader.m -------------------------------------------------------------------------------- /MacLight/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeincontext/MacLight/HEAD/MacLight/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /MacLight/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MacLight/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeincontext/MacLight/HEAD/MacLight/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /MacLight/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeincontext/MacLight/HEAD/MacLight/main.m -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeincontext/MacLight/HEAD/readme.md --------------------------------------------------------------------------------