├── .gitignore ├── English.lproj ├── InfoPlist.strings └── MainMenu.nib │ ├── designable.nib │ └── keyedobjects.nib ├── Info.plist ├── MyController.h ├── MyController.m ├── README.md ├── ScreenFuck.h ├── ScreenFuck.m ├── ScreenFuck.xcodeproj ├── kimasendorf.mode1v3 ├── kimasendorf.pbxuser └── project.pbxproj ├── ScreenFuck_Prefix.pch ├── main.m └── screenfuck.icns /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /English.lproj/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/English.lproj/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/Info.plist -------------------------------------------------------------------------------- /MyController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/MyController.h -------------------------------------------------------------------------------- /MyController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/MyController.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/README.md -------------------------------------------------------------------------------- /ScreenFuck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/ScreenFuck.h -------------------------------------------------------------------------------- /ScreenFuck.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/ScreenFuck.m -------------------------------------------------------------------------------- /ScreenFuck.xcodeproj/kimasendorf.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/ScreenFuck.xcodeproj/kimasendorf.mode1v3 -------------------------------------------------------------------------------- /ScreenFuck.xcodeproj/kimasendorf.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/ScreenFuck.xcodeproj/kimasendorf.pbxuser -------------------------------------------------------------------------------- /ScreenFuck.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/ScreenFuck.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ScreenFuck_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/ScreenFuck_Prefix.pch -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/main.m -------------------------------------------------------------------------------- /screenfuck.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimasendorf/ScreenFuck/HEAD/screenfuck.icns --------------------------------------------------------------------------------