├── .gitignore ├── LICENSE ├── Makefile ├── NoClipboardForYou.plist ├── README.md ├── Tweak.x ├── chfilter ├── Makefile ├── ent.xml └── main.m ├── control ├── layout └── DEBIAN │ ├── postinst │ └── preinst └── noclipboardforyoupreferences ├── Makefile ├── NCFYApp.h ├── NCFYApp.m ├── NCFYAppCell.h ├── NCFYAppCell.m ├── NCFYRootListController.h ├── NCFYRootListController.xm ├── Resources └── Info.plist └── entry.plist /.gitignore: -------------------------------------------------------------------------------- 1 | /.theos 2 | obj 3 | .DS_Store 4 | /*.xcodeproj 5 | /packages -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/Makefile -------------------------------------------------------------------------------- /NoClipboardForYou.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/NoClipboardForYou.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/Tweak.x -------------------------------------------------------------------------------- /chfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/chfilter/Makefile -------------------------------------------------------------------------------- /chfilter/ent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/chfilter/ent.xml -------------------------------------------------------------------------------- /chfilter/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/chfilter/main.m -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/control -------------------------------------------------------------------------------- /layout/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/layout/DEBIAN/postinst -------------------------------------------------------------------------------- /layout/DEBIAN/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/layout/DEBIAN/preinst -------------------------------------------------------------------------------- /noclipboardforyoupreferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/noclipboardforyoupreferences/Makefile -------------------------------------------------------------------------------- /noclipboardforyoupreferences/NCFYApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/noclipboardforyoupreferences/NCFYApp.h -------------------------------------------------------------------------------- /noclipboardforyoupreferences/NCFYApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/noclipboardforyoupreferences/NCFYApp.m -------------------------------------------------------------------------------- /noclipboardforyoupreferences/NCFYAppCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/noclipboardforyoupreferences/NCFYAppCell.h -------------------------------------------------------------------------------- /noclipboardforyoupreferences/NCFYAppCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/noclipboardforyoupreferences/NCFYAppCell.m -------------------------------------------------------------------------------- /noclipboardforyoupreferences/NCFYRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/noclipboardforyoupreferences/NCFYRootListController.h -------------------------------------------------------------------------------- /noclipboardforyoupreferences/NCFYRootListController.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/noclipboardforyoupreferences/NCFYRootListController.xm -------------------------------------------------------------------------------- /noclipboardforyoupreferences/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/noclipboardforyoupreferences/Resources/Info.plist -------------------------------------------------------------------------------- /noclipboardforyoupreferences/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiftcmdk/NoClipboardForYou/HEAD/noclipboardforyoupreferences/entry.plist --------------------------------------------------------------------------------