├── .github └── workflows │ └── cli.yml ├── .gitignore ├── .gitmodules ├── AndSoAreYou ├── AndSoAreYou.m ├── Makefile ├── control ├── entitlements.plist └── postinst │ ├── Makefile │ └── postinst.c ├── App ├── IALAppDelegate.h ├── IALAppDelegate.m ├── Makefile ├── Resources │ ├── AppIcon60x60@2x.png │ ├── AppIcon60x60@3x.png │ ├── AppIcon76x76@2x.png │ ├── AppIcon83.5x83.5@2x.png │ ├── Assets │ │ ├── AppIcon250-Clear@2x.png │ │ └── AppIcon250-Clear@3x.png │ └── Info.plist ├── UI │ ├── IALBackupsViewController.h │ ├── IALBackupsViewController.m │ ├── IALCreditsViewController.h │ ├── IALCreditsViewController.m │ ├── IALHeaderView.h │ ├── IALHeaderView.m │ ├── IALProgressViewController.h │ ├── IALProgressViewController.m │ ├── IALRootViewController.h │ └── IALRootViewController.m ├── entitlements.plist └── main.m ├── CLI ├── Makefile ├── entitlements.plist ├── main.m ├── util.h └── util.m ├── LICENSE ├── Makefile ├── README.md ├── Shared ├── Compression │ ├── libarchive.c │ └── libarchive.h ├── Headers │ ├── Common.h │ ├── Log.h │ ├── Shared.h │ ├── Task.h │ ├── archive.h │ └── archive_entry.h ├── Managers │ ├── IALBackupManager.h │ ├── IALBackupManager.m │ ├── IALGeneralManager.h │ ├── IALGeneralManager.m │ ├── IALRestoreManager.h │ └── IALRestoreManager.m ├── Reachability │ ├── LICENSE.txt │ ├── Reachability.h │ ├── Reachability.m │ └── ReadMe.md ├── Shared.m └── Task.c └── control /.github/workflows/cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/.github/workflows/cli.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | .theos/ 3 | packages/ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/.gitmodules -------------------------------------------------------------------------------- /AndSoAreYou/AndSoAreYou.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/AndSoAreYou/AndSoAreYou.m -------------------------------------------------------------------------------- /AndSoAreYou/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/AndSoAreYou/Makefile -------------------------------------------------------------------------------- /AndSoAreYou/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/AndSoAreYou/control -------------------------------------------------------------------------------- /AndSoAreYou/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/AndSoAreYou/entitlements.plist -------------------------------------------------------------------------------- /AndSoAreYou/postinst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/AndSoAreYou/postinst/Makefile -------------------------------------------------------------------------------- /AndSoAreYou/postinst/postinst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/AndSoAreYou/postinst/postinst.c -------------------------------------------------------------------------------- /App/IALAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/IALAppDelegate.h -------------------------------------------------------------------------------- /App/IALAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/IALAppDelegate.m -------------------------------------------------------------------------------- /App/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/Makefile -------------------------------------------------------------------------------- /App/Resources/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/Resources/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /App/Resources/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/Resources/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /App/Resources/AppIcon76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/Resources/AppIcon76x76@2x.png -------------------------------------------------------------------------------- /App/Resources/AppIcon83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/Resources/AppIcon83.5x83.5@2x.png -------------------------------------------------------------------------------- /App/Resources/Assets/AppIcon250-Clear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/Resources/Assets/AppIcon250-Clear@2x.png -------------------------------------------------------------------------------- /App/Resources/Assets/AppIcon250-Clear@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/Resources/Assets/AppIcon250-Clear@3x.png -------------------------------------------------------------------------------- /App/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/Resources/Info.plist -------------------------------------------------------------------------------- /App/UI/IALBackupsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/UI/IALBackupsViewController.h -------------------------------------------------------------------------------- /App/UI/IALBackupsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/UI/IALBackupsViewController.m -------------------------------------------------------------------------------- /App/UI/IALCreditsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/UI/IALCreditsViewController.h -------------------------------------------------------------------------------- /App/UI/IALCreditsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/UI/IALCreditsViewController.m -------------------------------------------------------------------------------- /App/UI/IALHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/UI/IALHeaderView.h -------------------------------------------------------------------------------- /App/UI/IALHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/UI/IALHeaderView.m -------------------------------------------------------------------------------- /App/UI/IALProgressViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/UI/IALProgressViewController.h -------------------------------------------------------------------------------- /App/UI/IALProgressViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/UI/IALProgressViewController.m -------------------------------------------------------------------------------- /App/UI/IALRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/UI/IALRootViewController.h -------------------------------------------------------------------------------- /App/UI/IALRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/UI/IALRootViewController.m -------------------------------------------------------------------------------- /App/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/entitlements.plist -------------------------------------------------------------------------------- /App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/App/main.m -------------------------------------------------------------------------------- /CLI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/CLI/Makefile -------------------------------------------------------------------------------- /CLI/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/CLI/entitlements.plist -------------------------------------------------------------------------------- /CLI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/CLI/main.m -------------------------------------------------------------------------------- /CLI/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/CLI/util.h -------------------------------------------------------------------------------- /CLI/util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/CLI/util.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/README.md -------------------------------------------------------------------------------- /Shared/Compression/libarchive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Compression/libarchive.c -------------------------------------------------------------------------------- /Shared/Compression/libarchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Compression/libarchive.h -------------------------------------------------------------------------------- /Shared/Headers/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Headers/Common.h -------------------------------------------------------------------------------- /Shared/Headers/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Headers/Log.h -------------------------------------------------------------------------------- /Shared/Headers/Shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Headers/Shared.h -------------------------------------------------------------------------------- /Shared/Headers/Task.h: -------------------------------------------------------------------------------- 1 | int task(const char *args[]); 2 | -------------------------------------------------------------------------------- /Shared/Headers/archive.h: -------------------------------------------------------------------------------- 1 | /usr/include/archive.h -------------------------------------------------------------------------------- /Shared/Headers/archive_entry.h: -------------------------------------------------------------------------------- 1 | /usr/include/archive_entry.h -------------------------------------------------------------------------------- /Shared/Managers/IALBackupManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Managers/IALBackupManager.h -------------------------------------------------------------------------------- /Shared/Managers/IALBackupManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Managers/IALBackupManager.m -------------------------------------------------------------------------------- /Shared/Managers/IALGeneralManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Managers/IALGeneralManager.h -------------------------------------------------------------------------------- /Shared/Managers/IALGeneralManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Managers/IALGeneralManager.m -------------------------------------------------------------------------------- /Shared/Managers/IALRestoreManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Managers/IALRestoreManager.h -------------------------------------------------------------------------------- /Shared/Managers/IALRestoreManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Managers/IALRestoreManager.m -------------------------------------------------------------------------------- /Shared/Reachability/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Reachability/LICENSE.txt -------------------------------------------------------------------------------- /Shared/Reachability/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Reachability/Reachability.h -------------------------------------------------------------------------------- /Shared/Reachability/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Reachability/Reachability.m -------------------------------------------------------------------------------- /Shared/Reachability/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Reachability/ReadMe.md -------------------------------------------------------------------------------- /Shared/Shared.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Shared.m -------------------------------------------------------------------------------- /Shared/Task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/Shared/Task.c -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1ghtmann/IAmLazy/HEAD/control --------------------------------------------------------------------------------