├── .gitignore ├── Helpers ├── UIDevice+notchedDevice.h └── UIDevice+notchedDevice.m ├── LICENSE ├── Makefile ├── README.md ├── ReachInfo.plist ├── ReachInfoPrefs ├── Makefile ├── RICreditsSubListController.h ├── RICreditsSubListController.m ├── RIPreferencesSubListController.h ├── RIPreferencesSubListController.m ├── RIRootListController.h ├── RIRootListController.m ├── Resources │ ├── Astro.png │ ├── Clock.png │ ├── Info.plist │ ├── MediaPlayer.png │ ├── Reminders.png │ ├── Root.plist │ ├── Terminal.png │ ├── Weather.png │ ├── creditsSub.plist │ ├── icon.png │ ├── icon@2x.png │ ├── icon@3x.png │ └── prefsSub.plist ├── entry.plist └── libappearancecell │ ├── AppearanceSelectionTableCell.m │ ├── libappearancecell+UIColor.m │ ├── libappearancecell.h │ └── private │ ├── AppearanceSelectionTableCell.h │ └── libappearancecell-private.h ├── ReachInfoView.h ├── ReachInfoView.m ├── ScreenShots ├── 5e456f8cadb6b30af4f118e1744fb06b.jpeg ├── 9a8efe920acb8325d69433eed541fcbd.jpeg ├── cfb50ff536751ede1f8e7a507671c269.jpeg └── d3d5ae842b64a31cf7d08f8d96392748.jpeg ├── Tweak.h ├── Tweak.xm ├── Widgets ├── ClockView.h ├── ClockView.m ├── RIAstro.h ├── RIAstro.m ├── RIClock.h ├── RIClock.m ├── RIMediaPlayer.h ├── RIMediaPlayer.xm ├── RIReminders.h ├── RIReminders.m ├── RITerminal.h ├── RITerminal.m ├── RIWeather.h ├── RIWeather.m ├── WeatherDataView.h ├── WeatherDataView.m ├── getEvents.h └── getEvents.m ├── control └── layout └── Library └── Application Support └── ReachInfo.bundle ├── ClockFace-2.png ├── ClockFace.png ├── ClockFace_dark.png ├── ClockHour.png ├── ClockHour_dark.png ├── ClockMin.png ├── ClockMin_dark.png ├── ClockSec.png ├── Roboto.ttf ├── firstAstronaut.png └── secondAstronaut.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_store 2 | .theos 3 | packages 4 | -------------------------------------------------------------------------------- /Helpers/UIDevice+notchedDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Helpers/UIDevice+notchedDevice.h -------------------------------------------------------------------------------- /Helpers/UIDevice+notchedDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Helpers/UIDevice+notchedDevice.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/README.md -------------------------------------------------------------------------------- /ReachInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfo.plist -------------------------------------------------------------------------------- /ReachInfoPrefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Makefile -------------------------------------------------------------------------------- /ReachInfoPrefs/RICreditsSubListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/RICreditsSubListController.h -------------------------------------------------------------------------------- /ReachInfoPrefs/RICreditsSubListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/RICreditsSubListController.m -------------------------------------------------------------------------------- /ReachInfoPrefs/RIPreferencesSubListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/RIPreferencesSubListController.h -------------------------------------------------------------------------------- /ReachInfoPrefs/RIPreferencesSubListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/RIPreferencesSubListController.m -------------------------------------------------------------------------------- /ReachInfoPrefs/RIRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/RIRootListController.h -------------------------------------------------------------------------------- /ReachInfoPrefs/RIRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/RIRootListController.m -------------------------------------------------------------------------------- /ReachInfoPrefs/Resources/Astro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Resources/Astro.png -------------------------------------------------------------------------------- /ReachInfoPrefs/Resources/Clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Resources/Clock.png -------------------------------------------------------------------------------- /ReachInfoPrefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Resources/Info.plist -------------------------------------------------------------------------------- /ReachInfoPrefs/Resources/MediaPlayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Resources/MediaPlayer.png -------------------------------------------------------------------------------- /ReachInfoPrefs/Resources/Reminders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Resources/Reminders.png -------------------------------------------------------------------------------- /ReachInfoPrefs/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Resources/Root.plist -------------------------------------------------------------------------------- /ReachInfoPrefs/Resources/Terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Resources/Terminal.png -------------------------------------------------------------------------------- /ReachInfoPrefs/Resources/Weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Resources/Weather.png -------------------------------------------------------------------------------- /ReachInfoPrefs/Resources/creditsSub.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Resources/creditsSub.plist -------------------------------------------------------------------------------- /ReachInfoPrefs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Resources/icon.png -------------------------------------------------------------------------------- /ReachInfoPrefs/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Resources/icon@2x.png -------------------------------------------------------------------------------- /ReachInfoPrefs/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Resources/icon@3x.png -------------------------------------------------------------------------------- /ReachInfoPrefs/Resources/prefsSub.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/Resources/prefsSub.plist -------------------------------------------------------------------------------- /ReachInfoPrefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/entry.plist -------------------------------------------------------------------------------- /ReachInfoPrefs/libappearancecell/AppearanceSelectionTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/libappearancecell/AppearanceSelectionTableCell.m -------------------------------------------------------------------------------- /ReachInfoPrefs/libappearancecell/libappearancecell+UIColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/libappearancecell/libappearancecell+UIColor.m -------------------------------------------------------------------------------- /ReachInfoPrefs/libappearancecell/libappearancecell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/libappearancecell/libappearancecell.h -------------------------------------------------------------------------------- /ReachInfoPrefs/libappearancecell/private/AppearanceSelectionTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/libappearancecell/private/AppearanceSelectionTableCell.h -------------------------------------------------------------------------------- /ReachInfoPrefs/libappearancecell/private/libappearancecell-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoPrefs/libappearancecell/private/libappearancecell-private.h -------------------------------------------------------------------------------- /ReachInfoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoView.h -------------------------------------------------------------------------------- /ReachInfoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ReachInfoView.m -------------------------------------------------------------------------------- /ScreenShots/5e456f8cadb6b30af4f118e1744fb06b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ScreenShots/5e456f8cadb6b30af4f118e1744fb06b.jpeg -------------------------------------------------------------------------------- /ScreenShots/9a8efe920acb8325d69433eed541fcbd.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ScreenShots/9a8efe920acb8325d69433eed541fcbd.jpeg -------------------------------------------------------------------------------- /ScreenShots/cfb50ff536751ede1f8e7a507671c269.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ScreenShots/cfb50ff536751ede1f8e7a507671c269.jpeg -------------------------------------------------------------------------------- /ScreenShots/d3d5ae842b64a31cf7d08f8d96392748.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/ScreenShots/d3d5ae842b64a31cf7d08f8d96392748.jpeg -------------------------------------------------------------------------------- /Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Tweak.h -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Tweak.xm -------------------------------------------------------------------------------- /Widgets/ClockView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/ClockView.h -------------------------------------------------------------------------------- /Widgets/ClockView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/ClockView.m -------------------------------------------------------------------------------- /Widgets/RIAstro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/RIAstro.h -------------------------------------------------------------------------------- /Widgets/RIAstro.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/RIAstro.m -------------------------------------------------------------------------------- /Widgets/RIClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/RIClock.h -------------------------------------------------------------------------------- /Widgets/RIClock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/RIClock.m -------------------------------------------------------------------------------- /Widgets/RIMediaPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/RIMediaPlayer.h -------------------------------------------------------------------------------- /Widgets/RIMediaPlayer.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/RIMediaPlayer.xm -------------------------------------------------------------------------------- /Widgets/RIReminders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/RIReminders.h -------------------------------------------------------------------------------- /Widgets/RIReminders.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/RIReminders.m -------------------------------------------------------------------------------- /Widgets/RITerminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/RITerminal.h -------------------------------------------------------------------------------- /Widgets/RITerminal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/RITerminal.m -------------------------------------------------------------------------------- /Widgets/RIWeather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/RIWeather.h -------------------------------------------------------------------------------- /Widgets/RIWeather.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/RIWeather.m -------------------------------------------------------------------------------- /Widgets/WeatherDataView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/WeatherDataView.h -------------------------------------------------------------------------------- /Widgets/WeatherDataView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/WeatherDataView.m -------------------------------------------------------------------------------- /Widgets/getEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/getEvents.h -------------------------------------------------------------------------------- /Widgets/getEvents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/Widgets/getEvents.m -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/control -------------------------------------------------------------------------------- /layout/Library/Application Support/ReachInfo.bundle/ClockFace-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/layout/Library/Application Support/ReachInfo.bundle/ClockFace-2.png -------------------------------------------------------------------------------- /layout/Library/Application Support/ReachInfo.bundle/ClockFace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/layout/Library/Application Support/ReachInfo.bundle/ClockFace.png -------------------------------------------------------------------------------- /layout/Library/Application Support/ReachInfo.bundle/ClockFace_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/layout/Library/Application Support/ReachInfo.bundle/ClockFace_dark.png -------------------------------------------------------------------------------- /layout/Library/Application Support/ReachInfo.bundle/ClockHour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/layout/Library/Application Support/ReachInfo.bundle/ClockHour.png -------------------------------------------------------------------------------- /layout/Library/Application Support/ReachInfo.bundle/ClockHour_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/layout/Library/Application Support/ReachInfo.bundle/ClockHour_dark.png -------------------------------------------------------------------------------- /layout/Library/Application Support/ReachInfo.bundle/ClockMin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/layout/Library/Application Support/ReachInfo.bundle/ClockMin.png -------------------------------------------------------------------------------- /layout/Library/Application Support/ReachInfo.bundle/ClockMin_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/layout/Library/Application Support/ReachInfo.bundle/ClockMin_dark.png -------------------------------------------------------------------------------- /layout/Library/Application Support/ReachInfo.bundle/ClockSec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/layout/Library/Application Support/ReachInfo.bundle/ClockSec.png -------------------------------------------------------------------------------- /layout/Library/Application Support/ReachInfo.bundle/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/layout/Library/Application Support/ReachInfo.bundle/Roboto.ttf -------------------------------------------------------------------------------- /layout/Library/Application Support/ReachInfo.bundle/firstAstronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/layout/Library/Application Support/ReachInfo.bundle/firstAstronaut.png -------------------------------------------------------------------------------- /layout/Library/Application Support/ReachInfo.bundle/secondAstronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdbug/ReachInfo/HEAD/layout/Library/Application Support/ReachInfo.bundle/secondAstronaut.png --------------------------------------------------------------------------------