├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── Tweak.x ├── control └── oldlockscreen.plist /.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | packages/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/old-lockscreen/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/old-lockscreen/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/old-lockscreen/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/old-lockscreen/HEAD/Tweak.x -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/old-lockscreen/HEAD/control -------------------------------------------------------------------------------- /oldlockscreen.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/old-lockscreen/HEAD/oldlockscreen.plist --------------------------------------------------------------------------------