├── .gitignore ├── README.md ├── bundles ├── AfloatX_1.3.6.zip ├── Alcatraz_1.2.1.zip ├── BatteryExtra_1.2.zip ├── BatteryExtra_1.3.1.zip ├── BetterDictionary_0.992.zip ├── ChromeDimBackground_0.1.1.zip ├── CustomNC_1.5.zip ├── DarkDock_1.0.zip ├── FScriptLoader_1.1.zip ├── GlobalNoFullscreenButton_1.0.zip ├── GlobalNoWindowIcon_1.0.zip ├── GlobalNoWindowTitle_1.0.zip ├── GreaseKit_1.7.zip ├── Jello_0.0.2.zip ├── LiftOff_1.1.6.zip ├── MenuBarHider_1.0.zip ├── MouseTerm_plus-1.0a10.zip ├── PDFReaderPlugin_1.2.zip ├── PreviewNoSidebar_1.0.zip ├── RadonChrome_1.0.zip ├── SIMBL-FScript_1.0.zip ├── SafariStand_9.0.217Yosemite.zip ├── ScrollbarsOnTheLeft_1.0.zip ├── Spaytify_1.0.1.zip ├── TerminalCopyOnSelect_0.1.2.zip ├── Termite_1.0.42.zip ├── TypeStatus_1.0.zip ├── WriteReceipt_1.1.zip ├── cosyTabs_1.4.2.zip ├── lightWin_0.1.14.zip ├── message-indicator_1.1.0.zip ├── noTitleBar-Terminal_0.2.zip ├── spaces-renamer_1.4.1.zip ├── spaces-renamer_1.7.0.zip └── spaces-renamer_1.7.1.zip ├── icon.png ├── images ├── com.alexbeals.SpacesRenamer │ ├── 01.png │ ├── 02.png │ ├── 03.png │ └── icon.png ├── com.decode.JelloInject │ ├── 01.png │ └── icon.png ├── com.github.jslegendre.AfloatX │ ├── 01.png │ └── 02.png ├── com.github.jslegendre.LiftOff │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── banner.png │ └── icon.png └── com.github.jslegendre.Termite │ └── 01.png ├── packages_v2.plist ├── repoUpdate ├── resource.plist └── templates ├── Example Plugin ├── template.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── template │ ├── Info.plist │ ├── README.md │ ├── ZKSwizzle.h │ ├── ZKSwizzle.m │ └── bundle.m └── Xcode Template └── MacForge Plugin.xctemplate ├── Info.plist ├── PrefixHeader.pch ├── TemplateIcon.icns ├── TemplateInfo.plist ├── ZKSwizzle ├── ZKSwizzle.h └── ZKSwizzle.m ├── ___PACKAGENAME___.h └── ___PACKAGENAME___.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/README.md -------------------------------------------------------------------------------- /bundles/AfloatX_1.3.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/AfloatX_1.3.6.zip -------------------------------------------------------------------------------- /bundles/Alcatraz_1.2.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/Alcatraz_1.2.1.zip -------------------------------------------------------------------------------- /bundles/BatteryExtra_1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/BatteryExtra_1.2.zip -------------------------------------------------------------------------------- /bundles/BatteryExtra_1.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/BatteryExtra_1.3.1.zip -------------------------------------------------------------------------------- /bundles/BetterDictionary_0.992.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/BetterDictionary_0.992.zip -------------------------------------------------------------------------------- /bundles/ChromeDimBackground_0.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/ChromeDimBackground_0.1.1.zip -------------------------------------------------------------------------------- /bundles/CustomNC_1.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/CustomNC_1.5.zip -------------------------------------------------------------------------------- /bundles/DarkDock_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/DarkDock_1.0.zip -------------------------------------------------------------------------------- /bundles/FScriptLoader_1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/FScriptLoader_1.1.zip -------------------------------------------------------------------------------- /bundles/GlobalNoFullscreenButton_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/GlobalNoFullscreenButton_1.0.zip -------------------------------------------------------------------------------- /bundles/GlobalNoWindowIcon_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/GlobalNoWindowIcon_1.0.zip -------------------------------------------------------------------------------- /bundles/GlobalNoWindowTitle_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/GlobalNoWindowTitle_1.0.zip -------------------------------------------------------------------------------- /bundles/GreaseKit_1.7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/GreaseKit_1.7.zip -------------------------------------------------------------------------------- /bundles/Jello_0.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/Jello_0.0.2.zip -------------------------------------------------------------------------------- /bundles/LiftOff_1.1.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/LiftOff_1.1.6.zip -------------------------------------------------------------------------------- /bundles/MenuBarHider_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/MenuBarHider_1.0.zip -------------------------------------------------------------------------------- /bundles/MouseTerm_plus-1.0a10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/MouseTerm_plus-1.0a10.zip -------------------------------------------------------------------------------- /bundles/PDFReaderPlugin_1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/PDFReaderPlugin_1.2.zip -------------------------------------------------------------------------------- /bundles/PreviewNoSidebar_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/PreviewNoSidebar_1.0.zip -------------------------------------------------------------------------------- /bundles/RadonChrome_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/RadonChrome_1.0.zip -------------------------------------------------------------------------------- /bundles/SIMBL-FScript_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/SIMBL-FScript_1.0.zip -------------------------------------------------------------------------------- /bundles/SafariStand_9.0.217Yosemite.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/SafariStand_9.0.217Yosemite.zip -------------------------------------------------------------------------------- /bundles/ScrollbarsOnTheLeft_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/ScrollbarsOnTheLeft_1.0.zip -------------------------------------------------------------------------------- /bundles/Spaytify_1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/Spaytify_1.0.1.zip -------------------------------------------------------------------------------- /bundles/TerminalCopyOnSelect_0.1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/TerminalCopyOnSelect_0.1.2.zip -------------------------------------------------------------------------------- /bundles/Termite_1.0.42.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/Termite_1.0.42.zip -------------------------------------------------------------------------------- /bundles/TypeStatus_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/TypeStatus_1.0.zip -------------------------------------------------------------------------------- /bundles/WriteReceipt_1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/WriteReceipt_1.1.zip -------------------------------------------------------------------------------- /bundles/cosyTabs_1.4.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/cosyTabs_1.4.2.zip -------------------------------------------------------------------------------- /bundles/lightWin_0.1.14.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/lightWin_0.1.14.zip -------------------------------------------------------------------------------- /bundles/message-indicator_1.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/message-indicator_1.1.0.zip -------------------------------------------------------------------------------- /bundles/noTitleBar-Terminal_0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/noTitleBar-Terminal_0.2.zip -------------------------------------------------------------------------------- /bundles/spaces-renamer_1.4.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/spaces-renamer_1.4.1.zip -------------------------------------------------------------------------------- /bundles/spaces-renamer_1.7.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/spaces-renamer_1.7.0.zip -------------------------------------------------------------------------------- /bundles/spaces-renamer_1.7.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/bundles/spaces-renamer_1.7.1.zip -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/icon.png -------------------------------------------------------------------------------- /images/com.alexbeals.SpacesRenamer/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.alexbeals.SpacesRenamer/01.png -------------------------------------------------------------------------------- /images/com.alexbeals.SpacesRenamer/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.alexbeals.SpacesRenamer/02.png -------------------------------------------------------------------------------- /images/com.alexbeals.SpacesRenamer/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.alexbeals.SpacesRenamer/03.png -------------------------------------------------------------------------------- /images/com.alexbeals.SpacesRenamer/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.alexbeals.SpacesRenamer/icon.png -------------------------------------------------------------------------------- /images/com.decode.JelloInject/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.decode.JelloInject/01.png -------------------------------------------------------------------------------- /images/com.decode.JelloInject/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.decode.JelloInject/icon.png -------------------------------------------------------------------------------- /images/com.github.jslegendre.AfloatX/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.github.jslegendre.AfloatX/01.png -------------------------------------------------------------------------------- /images/com.github.jslegendre.AfloatX/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.github.jslegendre.AfloatX/02.png -------------------------------------------------------------------------------- /images/com.github.jslegendre.LiftOff/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.github.jslegendre.LiftOff/01.png -------------------------------------------------------------------------------- /images/com.github.jslegendre.LiftOff/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.github.jslegendre.LiftOff/02.png -------------------------------------------------------------------------------- /images/com.github.jslegendre.LiftOff/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.github.jslegendre.LiftOff/03.png -------------------------------------------------------------------------------- /images/com.github.jslegendre.LiftOff/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.github.jslegendre.LiftOff/04.png -------------------------------------------------------------------------------- /images/com.github.jslegendre.LiftOff/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.github.jslegendre.LiftOff/05.png -------------------------------------------------------------------------------- /images/com.github.jslegendre.LiftOff/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.github.jslegendre.LiftOff/06.png -------------------------------------------------------------------------------- /images/com.github.jslegendre.LiftOff/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.github.jslegendre.LiftOff/banner.png -------------------------------------------------------------------------------- /images/com.github.jslegendre.LiftOff/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.github.jslegendre.LiftOff/icon.png -------------------------------------------------------------------------------- /images/com.github.jslegendre.Termite/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/images/com.github.jslegendre.Termite/01.png -------------------------------------------------------------------------------- /packages_v2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/packages_v2.plist -------------------------------------------------------------------------------- /repoUpdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/repoUpdate -------------------------------------------------------------------------------- /resource.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/resource.plist -------------------------------------------------------------------------------- /templates/Example Plugin/template.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Example Plugin/template.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /templates/Example Plugin/template.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Example Plugin/template.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /templates/Example Plugin/template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Example Plugin/template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /templates/Example Plugin/template/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Example Plugin/template/Info.plist -------------------------------------------------------------------------------- /templates/Example Plugin/template/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/Example Plugin/template/ZKSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Example Plugin/template/ZKSwizzle.h -------------------------------------------------------------------------------- /templates/Example Plugin/template/ZKSwizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Example Plugin/template/ZKSwizzle.m -------------------------------------------------------------------------------- /templates/Example Plugin/template/bundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Example Plugin/template/bundle.m -------------------------------------------------------------------------------- /templates/Xcode Template/MacForge Plugin.xctemplate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Xcode Template/MacForge Plugin.xctemplate/Info.plist -------------------------------------------------------------------------------- /templates/Xcode Template/MacForge Plugin.xctemplate/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Xcode Template/MacForge Plugin.xctemplate/PrefixHeader.pch -------------------------------------------------------------------------------- /templates/Xcode Template/MacForge Plugin.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Xcode Template/MacForge Plugin.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /templates/Xcode Template/MacForge Plugin.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Xcode Template/MacForge Plugin.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/Xcode Template/MacForge Plugin.xctemplate/ZKSwizzle/ZKSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Xcode Template/MacForge Plugin.xctemplate/ZKSwizzle/ZKSwizzle.h -------------------------------------------------------------------------------- /templates/Xcode Template/MacForge Plugin.xctemplate/ZKSwizzle/ZKSwizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Xcode Template/MacForge Plugin.xctemplate/ZKSwizzle/ZKSwizzle.m -------------------------------------------------------------------------------- /templates/Xcode Template/MacForge Plugin.xctemplate/___PACKAGENAME___.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Xcode Template/MacForge Plugin.xctemplate/___PACKAGENAME___.h -------------------------------------------------------------------------------- /templates/Xcode Template/MacForge Plugin.xctemplate/___PACKAGENAME___.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/macplugins/HEAD/templates/Xcode Template/MacForge Plugin.xctemplate/___PACKAGENAME___.m --------------------------------------------------------------------------------