├── .gitignore ├── CAKeyframeAnimation+dockBounce.h ├── CAKeyframeAnimation+dockBounce.m ├── HBPreferences.h ├── HBPreferences.m ├── Harbor.plist ├── LICENSE.md ├── Makefile ├── Preferences.def ├── README.md ├── SBIconView.xm ├── Tweak.xm ├── control ├── extensions ├── UIView+Origin.h └── UIView+Origin.m ├── harborprefs ├── Makefile ├── Resources │ ├── Info.plist │ ├── harborprefs@2x.png │ ├── twitter@2x.png │ └── twitter@3x.png ├── entry.plist ├── harborprefs.xm └── theos ├── include ├── BBBulletin.h ├── BBServer.h ├── CDStructures.h ├── SBApplication.h ├── SBApplicationController.h ├── SBApplicationIcon.h ├── SBCrossfadeIconZoomAnimator.h ├── SBDockIconListView.h ├── SBDockView.h ├── SBFolderController.h ├── SBFolderView.h ├── SBIcon.h ├── SBIconAccessoryView-Protocol.h ├── SBIconAnimator.h ├── SBIconAnimatorDelegate-Protocol.h ├── SBIconBadgeView.h ├── SBIconController.h ├── SBIconFadeAnimator.h ├── SBIconIndexNode-Protocol.h ├── SBIconIndexNodeObserver-Protocol.h ├── SBIconLabelView.h ├── SBIconListLayoutDelegate-Protocol.h ├── SBIconListModel.h ├── SBIconListView.h ├── SBIconModel.h ├── SBIconModelPropertyListFileStore.h ├── SBIconObserver-Protocol.h ├── SBIconScrollView.h ├── SBIconView.h ├── SBIconViewDelegate-Protocol.h ├── SBIconViewMap.h ├── SBIconViewMapDelegate-Protocol.h ├── SBIconViewObserver-Protocol.h ├── SBIconZoomAnimator.h ├── SBReusableView-Protocol.h ├── SBReusableViewMap.h ├── SBReusableViewMapDelegate-Protocol.h ├── SBRootFolderController.h ├── SBRootFolderView.h ├── SBRootIconListView.h ├── SBScaleIconZoomAnimator.h ├── SBUIAnimationController.h ├── SBUIAnimationControllerDelegate-Protocol.h ├── SBUIAnimationZoomUpApp.h ├── SBUIAnimationZoomUpAppFromHome.h ├── SBUIController.h ├── SBUIMainScreenAnimationController.h ├── SBWallpaperEffectView.h ├── SBZoomableCrossfadeView.h ├── SpringBoard.h ├── SpringBoard_Interfaces.h └── _UISettingsKeyObserver-Protocol.h ├── readme_resources └── icon.png └── theos /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | packages 3 | -------------------------------------------------------------------------------- /CAKeyframeAnimation+dockBounce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/CAKeyframeAnimation+dockBounce.h -------------------------------------------------------------------------------- /CAKeyframeAnimation+dockBounce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/CAKeyframeAnimation+dockBounce.m -------------------------------------------------------------------------------- /HBPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/HBPreferences.h -------------------------------------------------------------------------------- /HBPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/HBPreferences.m -------------------------------------------------------------------------------- /Harbor.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/Harbor.plist -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/Makefile -------------------------------------------------------------------------------- /Preferences.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/Preferences.def -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/README.md -------------------------------------------------------------------------------- /SBIconView.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/SBIconView.xm -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/control -------------------------------------------------------------------------------- /extensions/UIView+Origin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/extensions/UIView+Origin.h -------------------------------------------------------------------------------- /extensions/UIView+Origin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/extensions/UIView+Origin.m -------------------------------------------------------------------------------- /harborprefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/harborprefs/Makefile -------------------------------------------------------------------------------- /harborprefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/harborprefs/Resources/Info.plist -------------------------------------------------------------------------------- /harborprefs/Resources/harborprefs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/harborprefs/Resources/harborprefs@2x.png -------------------------------------------------------------------------------- /harborprefs/Resources/twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/harborprefs/Resources/twitter@2x.png -------------------------------------------------------------------------------- /harborprefs/Resources/twitter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/harborprefs/Resources/twitter@3x.png -------------------------------------------------------------------------------- /harborprefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/harborprefs/entry.plist -------------------------------------------------------------------------------- /harborprefs/harborprefs.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/harborprefs/harborprefs.xm -------------------------------------------------------------------------------- /harborprefs/theos: -------------------------------------------------------------------------------- 1 | /opt/theos -------------------------------------------------------------------------------- /include/BBBulletin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/BBBulletin.h -------------------------------------------------------------------------------- /include/BBServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/BBServer.h -------------------------------------------------------------------------------- /include/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/CDStructures.h -------------------------------------------------------------------------------- /include/SBApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBApplication.h -------------------------------------------------------------------------------- /include/SBApplicationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBApplicationController.h -------------------------------------------------------------------------------- /include/SBApplicationIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBApplicationIcon.h -------------------------------------------------------------------------------- /include/SBCrossfadeIconZoomAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBCrossfadeIconZoomAnimator.h -------------------------------------------------------------------------------- /include/SBDockIconListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBDockIconListView.h -------------------------------------------------------------------------------- /include/SBDockView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBDockView.h -------------------------------------------------------------------------------- /include/SBFolderController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBFolderController.h -------------------------------------------------------------------------------- /include/SBFolderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBFolderView.h -------------------------------------------------------------------------------- /include/SBIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIcon.h -------------------------------------------------------------------------------- /include/SBIconAccessoryView-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconAccessoryView-Protocol.h -------------------------------------------------------------------------------- /include/SBIconAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconAnimator.h -------------------------------------------------------------------------------- /include/SBIconAnimatorDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconAnimatorDelegate-Protocol.h -------------------------------------------------------------------------------- /include/SBIconBadgeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconBadgeView.h -------------------------------------------------------------------------------- /include/SBIconController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconController.h -------------------------------------------------------------------------------- /include/SBIconFadeAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconFadeAnimator.h -------------------------------------------------------------------------------- /include/SBIconIndexNode-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconIndexNode-Protocol.h -------------------------------------------------------------------------------- /include/SBIconIndexNodeObserver-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconIndexNodeObserver-Protocol.h -------------------------------------------------------------------------------- /include/SBIconLabelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconLabelView.h -------------------------------------------------------------------------------- /include/SBIconListLayoutDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconListLayoutDelegate-Protocol.h -------------------------------------------------------------------------------- /include/SBIconListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconListModel.h -------------------------------------------------------------------------------- /include/SBIconListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconListView.h -------------------------------------------------------------------------------- /include/SBIconModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconModel.h -------------------------------------------------------------------------------- /include/SBIconModelPropertyListFileStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconModelPropertyListFileStore.h -------------------------------------------------------------------------------- /include/SBIconObserver-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconObserver-Protocol.h -------------------------------------------------------------------------------- /include/SBIconScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconScrollView.h -------------------------------------------------------------------------------- /include/SBIconView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconView.h -------------------------------------------------------------------------------- /include/SBIconViewDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconViewDelegate-Protocol.h -------------------------------------------------------------------------------- /include/SBIconViewMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconViewMap.h -------------------------------------------------------------------------------- /include/SBIconViewMapDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconViewMapDelegate-Protocol.h -------------------------------------------------------------------------------- /include/SBIconViewObserver-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconViewObserver-Protocol.h -------------------------------------------------------------------------------- /include/SBIconZoomAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBIconZoomAnimator.h -------------------------------------------------------------------------------- /include/SBReusableView-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBReusableView-Protocol.h -------------------------------------------------------------------------------- /include/SBReusableViewMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBReusableViewMap.h -------------------------------------------------------------------------------- /include/SBReusableViewMapDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBReusableViewMapDelegate-Protocol.h -------------------------------------------------------------------------------- /include/SBRootFolderController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBRootFolderController.h -------------------------------------------------------------------------------- /include/SBRootFolderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBRootFolderView.h -------------------------------------------------------------------------------- /include/SBRootIconListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBRootIconListView.h -------------------------------------------------------------------------------- /include/SBScaleIconZoomAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBScaleIconZoomAnimator.h -------------------------------------------------------------------------------- /include/SBUIAnimationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBUIAnimationController.h -------------------------------------------------------------------------------- /include/SBUIAnimationControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBUIAnimationControllerDelegate-Protocol.h -------------------------------------------------------------------------------- /include/SBUIAnimationZoomUpApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBUIAnimationZoomUpApp.h -------------------------------------------------------------------------------- /include/SBUIAnimationZoomUpAppFromHome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBUIAnimationZoomUpAppFromHome.h -------------------------------------------------------------------------------- /include/SBUIController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBUIController.h -------------------------------------------------------------------------------- /include/SBUIMainScreenAnimationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBUIMainScreenAnimationController.h -------------------------------------------------------------------------------- /include/SBWallpaperEffectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBWallpaperEffectView.h -------------------------------------------------------------------------------- /include/SBZoomableCrossfadeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SBZoomableCrossfadeView.h -------------------------------------------------------------------------------- /include/SpringBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SpringBoard.h -------------------------------------------------------------------------------- /include/SpringBoard_Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/SpringBoard_Interfaces.h -------------------------------------------------------------------------------- /include/_UISettingsKeyObserver-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/include/_UISettingsKeyObserver-Protocol.h -------------------------------------------------------------------------------- /readme_resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eswick/harbor/HEAD/readme_resources/icon.png -------------------------------------------------------------------------------- /theos: -------------------------------------------------------------------------------- 1 | /opt/theos --------------------------------------------------------------------------------