├── .gitignore ├── CustomNCUI.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── CustomNCUI.xcscheme ├── CustomNCUI ├── CNCAppDelegate.h ├── CNCAppDelegate.m ├── CustomNC-Info.plist ├── CustomNC-Prefix.pch ├── CustomNC │ ├── CustomNC.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── CustomNC.xcscheme │ └── CustomNC │ │ ├── CustomNC-Info.plist │ │ ├── CustomNC-Prefix.pch │ │ ├── CustomNC.h │ │ ├── CustomNC.m │ │ ├── NCAlertDelegate-Protocol.h │ │ ├── NCAppInfo.h │ │ ├── NCAppInfoDelegate-Protocol.h │ │ ├── NCBannerAnimation.h │ │ ├── NCBannerAnimationFadeIn.h │ │ ├── NCBannerAnimationFadeOut.h │ │ ├── NCBannerAnimationHorizontalOut.h │ │ ├── NCBannerAnimationPoofOut.h │ │ ├── NCBannerAnimationVerticalIn.h │ │ ├── NCBannerAnimationVerticalOut.h │ │ ├── NCBannerDelegate-Protocol.h │ │ ├── NCBannerWindowController.h │ │ ├── NCModel.h │ │ ├── NCNotificationWindow.h │ │ ├── NCNotificationWindowDelegate-Protocol.h │ │ ├── NCRoundedWindowContentDelegate-Protocol.h │ │ ├── NCRoundedWindowContentView.h │ │ ├── NCWindowLayoutController.h │ │ ├── NCWindowLayoutDelegate-Protocol.h │ │ ├── QLPreviewItem-Protocol.h │ │ └── en.lproj │ │ └── InfoPlist.strings ├── CustomNCLauncher.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── Application Stub │ │ ├── Resources │ │ ├── English.lproj │ │ │ └── ApplicationStub.nib │ │ └── icon.icns │ │ └── document.wflow ├── LoginItem.h ├── LoginItem.m ├── MBSlider.h ├── MBSlider.m ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib └── main.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/.gitignore -------------------------------------------------------------------------------- /CustomNCUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CustomNCUI.xcodeproj/xcshareddata/xcschemes/CustomNCUI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI.xcodeproj/xcshareddata/xcschemes/CustomNCUI.xcscheme -------------------------------------------------------------------------------- /CustomNCUI/CNCAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CNCAppDelegate.h -------------------------------------------------------------------------------- /CustomNCUI/CNCAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CNCAppDelegate.m -------------------------------------------------------------------------------- /CustomNCUI/CustomNC-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC-Info.plist -------------------------------------------------------------------------------- /CustomNCUI/CustomNC-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC-Prefix.pch -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC.xcodeproj/xcshareddata/xcschemes/CustomNC.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC.xcodeproj/xcshareddata/xcschemes/CustomNC.xcscheme -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/CustomNC-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/CustomNC-Info.plist -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/CustomNC-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/CustomNC-Prefix.pch -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/CustomNC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/CustomNC.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/CustomNC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/CustomNC.m -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCAlertDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCAlertDelegate-Protocol.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCAppInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCAppInfo.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCAppInfoDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCAppInfoDelegate-Protocol.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCBannerAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCBannerAnimation.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCBannerAnimationFadeIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCBannerAnimationFadeIn.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCBannerAnimationFadeOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCBannerAnimationFadeOut.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCBannerAnimationHorizontalOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCBannerAnimationHorizontalOut.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCBannerAnimationPoofOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCBannerAnimationPoofOut.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCBannerAnimationVerticalIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCBannerAnimationVerticalIn.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCBannerAnimationVerticalOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCBannerAnimationVerticalOut.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCBannerDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCBannerDelegate-Protocol.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCBannerWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCBannerWindowController.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCModel.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCNotificationWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCNotificationWindow.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCNotificationWindowDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCNotificationWindowDelegate-Protocol.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCRoundedWindowContentDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCRoundedWindowContentDelegate-Protocol.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCRoundedWindowContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCRoundedWindowContentView.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCWindowLayoutController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCWindowLayoutController.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/NCWindowLayoutDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/NCWindowLayoutDelegate-Protocol.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/QLPreviewItem-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNC/CustomNC/QLPreviewItem-Protocol.h -------------------------------------------------------------------------------- /CustomNCUI/CustomNC/CustomNC/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CustomNCUI/CustomNCLauncher.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNCLauncher.app/Contents/Info.plist -------------------------------------------------------------------------------- /CustomNCUI/CustomNCLauncher.app/Contents/MacOS/Application Stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNCLauncher.app/Contents/MacOS/Application Stub -------------------------------------------------------------------------------- /CustomNCUI/CustomNCLauncher.app/Contents/Resources/English.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNCLauncher.app/Contents/Resources/English.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /CustomNCUI/CustomNCLauncher.app/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNCLauncher.app/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /CustomNCUI/CustomNCLauncher.app/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/CustomNCLauncher.app/Contents/document.wflow -------------------------------------------------------------------------------- /CustomNCUI/LoginItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/LoginItem.h -------------------------------------------------------------------------------- /CustomNCUI/LoginItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/LoginItem.m -------------------------------------------------------------------------------- /CustomNCUI/MBSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/MBSlider.h -------------------------------------------------------------------------------- /CustomNCUI/MBSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/MBSlider.m -------------------------------------------------------------------------------- /CustomNCUI/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /CustomNCUI/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CustomNCUI/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /CustomNCUI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/CustomNCUI/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inket/CustomNC/HEAD/README.md --------------------------------------------------------------------------------