├── .gitattributes ├── .github ├── FUNDING.yml ├── ReadmeGenerator.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── serhii-londar.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── ReadmeGenerator.xcscheme │ └── xcuserdata │ │ └── serhii-londar.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── deploy.sh ├── main.swift └── weekly-digest.yml ├── .travis.yml ├── CONTRIBUTING.md ├── Dangerfile ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── applications.json ├── categories.json └── icons ├── Lua-16.png ├── Lua.png ├── Objective-c-logo.png ├── app_store-16.png ├── app_store.png ├── c-16.png ├── c.png ├── clojure-16.png ├── clojure.png ├── coffeescript-16.png ├── coffeescript.png ├── cpp-16.png ├── cpp-256.png ├── csharp-16.png ├── csharp.png ├── css-16.png ├── css.png ├── elm-16.png ├── elm.png ├── golang-16.png ├── golang.png ├── haskell-16.png ├── haskell.png ├── icon.png ├── java-16.png ├── java-512.png ├── javascript-16.png ├── javascript-512.png ├── javascript.png ├── objective-c-16.png ├── objective-c.png ├── objective-c1.png ├── objective_c.png ├── python-16.png ├── python.png ├── ruby-16.png ├── ruby.png ├── rust-16.png ├── rust-512.png ├── swift-16.png ├── swift-1600.png ├── swift.png ├── typescript-16.png └── typescript.png /.gitattributes: -------------------------------------------------------------------------------- 1 | Dangerfile linguist-documentation 2 | README.md merge=union 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: serhiilondar 5 | open_collective: open-source-mac-os-apps # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.github/ReadmeGenerator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | E8FDFD7F226E769900FE80E7 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8FDFD7E226E769900FE80E7 /* main.swift */; }; 11 | /* End PBXBuildFile section */ 12 | 13 | /* Begin PBXCopyFilesBuildPhase section */ 14 | E8FDFD70226E74F400FE80E7 /* CopyFiles */ = { 15 | isa = PBXCopyFilesBuildPhase; 16 | buildActionMask = 2147483647; 17 | dstPath = /usr/share/man/man1/; 18 | dstSubfolderSpec = 0; 19 | files = ( 20 | ); 21 | runOnlyForDeploymentPostprocessing = 1; 22 | }; 23 | /* End PBXCopyFilesBuildPhase section */ 24 | 25 | /* Begin PBXFileReference section */ 26 | E8FDFD72226E74F400FE80E7 /* ReadmeGenerator */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ReadmeGenerator; sourceTree = BUILT_PRODUCTS_DIR; }; 27 | E8FDFD7E226E769900FE80E7 /* main.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = main.swift; sourceTree = SOURCE_ROOT; }; 28 | /* End PBXFileReference section */ 29 | 30 | /* Begin PBXFrameworksBuildPhase section */ 31 | E8FDFD6F226E74F400FE80E7 /* Frameworks */ = { 32 | isa = PBXFrameworksBuildPhase; 33 | buildActionMask = 2147483647; 34 | files = ( 35 | ); 36 | runOnlyForDeploymentPostprocessing = 0; 37 | }; 38 | /* End PBXFrameworksBuildPhase section */ 39 | 40 | /* Begin PBXGroup section */ 41 | E8FDFD69226E74F400FE80E7 = { 42 | isa = PBXGroup; 43 | children = ( 44 | E8FDFD74226E74F400FE80E7 /* ReadmeGenerator */, 45 | E8FDFD73226E74F400FE80E7 /* Products */, 46 | ); 47 | sourceTree = ""; 48 | }; 49 | E8FDFD73226E74F400FE80E7 /* Products */ = { 50 | isa = PBXGroup; 51 | children = ( 52 | E8FDFD72226E74F400FE80E7 /* ReadmeGenerator */, 53 | ); 54 | name = Products; 55 | sourceTree = ""; 56 | }; 57 | E8FDFD74226E74F400FE80E7 /* ReadmeGenerator */ = { 58 | isa = PBXGroup; 59 | children = ( 60 | E8FDFD7E226E769900FE80E7 /* main.swift */, 61 | ); 62 | path = ReadmeGenerator; 63 | sourceTree = ""; 64 | }; 65 | /* End PBXGroup section */ 66 | 67 | /* Begin PBXNativeTarget section */ 68 | E8FDFD71226E74F400FE80E7 /* ReadmeGenerator */ = { 69 | isa = PBXNativeTarget; 70 | buildConfigurationList = E8FDFD79226E74F400FE80E7 /* Build configuration list for PBXNativeTarget "ReadmeGenerator" */; 71 | buildPhases = ( 72 | E8FDFD6E226E74F400FE80E7 /* Sources */, 73 | E8FDFD6F226E74F400FE80E7 /* Frameworks */, 74 | E8FDFD70226E74F400FE80E7 /* CopyFiles */, 75 | ); 76 | buildRules = ( 77 | ); 78 | dependencies = ( 79 | ); 80 | name = ReadmeGenerator; 81 | productName = ReadmeGenerator; 82 | productReference = E8FDFD72226E74F400FE80E7 /* ReadmeGenerator */; 83 | productType = "com.apple.product-type.tool"; 84 | }; 85 | /* End PBXNativeTarget section */ 86 | 87 | /* Begin PBXProject section */ 88 | E8FDFD6A226E74F400FE80E7 /* Project object */ = { 89 | isa = PBXProject; 90 | attributes = { 91 | LastSwiftUpdateCheck = 1020; 92 | LastUpgradeCheck = 1130; 93 | ORGANIZATIONNAME = "Serhii Londar"; 94 | TargetAttributes = { 95 | E8FDFD71226E74F400FE80E7 = { 96 | CreatedOnToolsVersion = 10.2.1; 97 | LastSwiftMigration = 1020; 98 | }; 99 | }; 100 | }; 101 | buildConfigurationList = E8FDFD6D226E74F400FE80E7 /* Build configuration list for PBXProject "ReadmeGenerator" */; 102 | compatibilityVersion = "Xcode 9.3"; 103 | developmentRegion = en; 104 | hasScannedForEncodings = 0; 105 | knownRegions = ( 106 | en, 107 | Base, 108 | ); 109 | mainGroup = E8FDFD69226E74F400FE80E7; 110 | productRefGroup = E8FDFD73226E74F400FE80E7 /* Products */; 111 | projectDirPath = ""; 112 | projectRoot = ""; 113 | targets = ( 114 | E8FDFD71226E74F400FE80E7 /* ReadmeGenerator */, 115 | ); 116 | }; 117 | /* End PBXProject section */ 118 | 119 | /* Begin PBXSourcesBuildPhase section */ 120 | E8FDFD6E226E74F400FE80E7 /* Sources */ = { 121 | isa = PBXSourcesBuildPhase; 122 | buildActionMask = 2147483647; 123 | files = ( 124 | E8FDFD7F226E769900FE80E7 /* main.swift in Sources */, 125 | ); 126 | runOnlyForDeploymentPostprocessing = 0; 127 | }; 128 | /* End PBXSourcesBuildPhase section */ 129 | 130 | /* Begin XCBuildConfiguration section */ 131 | E8FDFD77226E74F400FE80E7 /* Debug */ = { 132 | isa = XCBuildConfiguration; 133 | buildSettings = { 134 | ALWAYS_SEARCH_USER_PATHS = NO; 135 | CLANG_ANALYZER_NONNULL = YES; 136 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 137 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 138 | CLANG_CXX_LIBRARY = "libc++"; 139 | CLANG_ENABLE_MODULES = YES; 140 | CLANG_ENABLE_OBJC_ARC = YES; 141 | CLANG_ENABLE_OBJC_WEAK = YES; 142 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 143 | CLANG_WARN_BOOL_CONVERSION = YES; 144 | CLANG_WARN_COMMA = YES; 145 | CLANG_WARN_CONSTANT_CONVERSION = YES; 146 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 147 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 148 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 149 | CLANG_WARN_EMPTY_BODY = YES; 150 | CLANG_WARN_ENUM_CONVERSION = YES; 151 | CLANG_WARN_INFINITE_RECURSION = YES; 152 | CLANG_WARN_INT_CONVERSION = YES; 153 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 154 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 155 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 156 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 157 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 158 | CLANG_WARN_STRICT_PROTOTYPES = YES; 159 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 160 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 161 | CLANG_WARN_UNREACHABLE_CODE = YES; 162 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 163 | CODE_SIGN_IDENTITY = "-"; 164 | COPY_PHASE_STRIP = NO; 165 | DEBUG_INFORMATION_FORMAT = dwarf; 166 | ENABLE_STRICT_OBJC_MSGSEND = YES; 167 | ENABLE_TESTABILITY = YES; 168 | GCC_C_LANGUAGE_STANDARD = gnu11; 169 | GCC_DYNAMIC_NO_PIC = NO; 170 | GCC_NO_COMMON_BLOCKS = YES; 171 | GCC_OPTIMIZATION_LEVEL = 0; 172 | GCC_PREPROCESSOR_DEFINITIONS = ( 173 | "DEBUG=1", 174 | "$(inherited)", 175 | ); 176 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 177 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 178 | GCC_WARN_UNDECLARED_SELECTOR = YES; 179 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 180 | GCC_WARN_UNUSED_FUNCTION = YES; 181 | GCC_WARN_UNUSED_VARIABLE = YES; 182 | MACOSX_DEPLOYMENT_TARGET = 10.14; 183 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 184 | MTL_FAST_MATH = YES; 185 | ONLY_ACTIVE_ARCH = YES; 186 | SDKROOT = macosx; 187 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 188 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 189 | }; 190 | name = Debug; 191 | }; 192 | E8FDFD78226E74F400FE80E7 /* Release */ = { 193 | isa = XCBuildConfiguration; 194 | buildSettings = { 195 | ALWAYS_SEARCH_USER_PATHS = NO; 196 | CLANG_ANALYZER_NONNULL = YES; 197 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 198 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 199 | CLANG_CXX_LIBRARY = "libc++"; 200 | CLANG_ENABLE_MODULES = YES; 201 | CLANG_ENABLE_OBJC_ARC = YES; 202 | CLANG_ENABLE_OBJC_WEAK = YES; 203 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 204 | CLANG_WARN_BOOL_CONVERSION = YES; 205 | CLANG_WARN_COMMA = YES; 206 | CLANG_WARN_CONSTANT_CONVERSION = YES; 207 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 208 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 209 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 210 | CLANG_WARN_EMPTY_BODY = YES; 211 | CLANG_WARN_ENUM_CONVERSION = YES; 212 | CLANG_WARN_INFINITE_RECURSION = YES; 213 | CLANG_WARN_INT_CONVERSION = YES; 214 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 215 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 216 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 217 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 218 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 219 | CLANG_WARN_STRICT_PROTOTYPES = YES; 220 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 221 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 222 | CLANG_WARN_UNREACHABLE_CODE = YES; 223 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 224 | CODE_SIGN_IDENTITY = "-"; 225 | COPY_PHASE_STRIP = NO; 226 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 227 | ENABLE_NS_ASSERTIONS = NO; 228 | ENABLE_STRICT_OBJC_MSGSEND = YES; 229 | GCC_C_LANGUAGE_STANDARD = gnu11; 230 | GCC_NO_COMMON_BLOCKS = YES; 231 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 232 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 233 | GCC_WARN_UNDECLARED_SELECTOR = YES; 234 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 235 | GCC_WARN_UNUSED_FUNCTION = YES; 236 | GCC_WARN_UNUSED_VARIABLE = YES; 237 | MACOSX_DEPLOYMENT_TARGET = 10.14; 238 | MTL_ENABLE_DEBUG_INFO = NO; 239 | MTL_FAST_MATH = YES; 240 | SDKROOT = macosx; 241 | SWIFT_COMPILATION_MODE = wholemodule; 242 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 243 | }; 244 | name = Release; 245 | }; 246 | E8FDFD7A226E74F400FE80E7 /* Debug */ = { 247 | isa = XCBuildConfiguration; 248 | buildSettings = { 249 | CLANG_ENABLE_MODULES = YES; 250 | CODE_SIGN_IDENTITY = "-"; 251 | CODE_SIGN_STYLE = Automatic; 252 | LD_RUNPATH_SEARCH_PATHS = ( 253 | "$(inherited)", 254 | "@executable_path/../Frameworks", 255 | "@loader_path/../Frameworks", 256 | ); 257 | PRODUCT_NAME = "$(TARGET_NAME)"; 258 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 259 | SWIFT_VERSION = 5.0; 260 | }; 261 | name = Debug; 262 | }; 263 | E8FDFD7B226E74F400FE80E7 /* Release */ = { 264 | isa = XCBuildConfiguration; 265 | buildSettings = { 266 | CLANG_ENABLE_MODULES = YES; 267 | CODE_SIGN_IDENTITY = "-"; 268 | CODE_SIGN_STYLE = Automatic; 269 | LD_RUNPATH_SEARCH_PATHS = ( 270 | "$(inherited)", 271 | "@executable_path/../Frameworks", 272 | "@loader_path/../Frameworks", 273 | ); 274 | PRODUCT_NAME = "$(TARGET_NAME)"; 275 | SWIFT_VERSION = 5.0; 276 | }; 277 | name = Release; 278 | }; 279 | /* End XCBuildConfiguration section */ 280 | 281 | /* Begin XCConfigurationList section */ 282 | E8FDFD6D226E74F400FE80E7 /* Build configuration list for PBXProject "ReadmeGenerator" */ = { 283 | isa = XCConfigurationList; 284 | buildConfigurations = ( 285 | E8FDFD77226E74F400FE80E7 /* Debug */, 286 | E8FDFD78226E74F400FE80E7 /* Release */, 287 | ); 288 | defaultConfigurationIsVisible = 0; 289 | defaultConfigurationName = Release; 290 | }; 291 | E8FDFD79226E74F400FE80E7 /* Build configuration list for PBXNativeTarget "ReadmeGenerator" */ = { 292 | isa = XCConfigurationList; 293 | buildConfigurations = ( 294 | E8FDFD7A226E74F400FE80E7 /* Debug */, 295 | E8FDFD7B226E74F400FE80E7 /* Release */, 296 | ); 297 | defaultConfigurationIsVisible = 0; 298 | defaultConfigurationName = Release; 299 | }; 300 | /* End XCConfigurationList section */ 301 | }; 302 | rootObject = E8FDFD6A226E74F400FE80E7 /* Project object */; 303 | } 304 | -------------------------------------------------------------------------------- /.github/ReadmeGenerator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.github/ReadmeGenerator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.github/ReadmeGenerator.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.github/ReadmeGenerator.xcodeproj/project.xcworkspace/xcuserdata/serhii-londar.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/.github/ReadmeGenerator.xcodeproj/project.xcworkspace/xcuserdata/serhii-londar.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /.github/ReadmeGenerator.xcodeproj/project.xcworkspace/xcuserdata/serhii-londar.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildLocationStyle 6 | UseAppPreferences 7 | CustomBuildIntermediatesPath 8 | Build/Intermediates.noindex 9 | CustomBuildLocationType 10 | RelativeToWorkspace 11 | CustomBuildProductsPath 12 | Build/Products 13 | CustomIndexStorePath 14 | Index/DataStore 15 | DerivedDataLocationStyle 16 | Default 17 | EnabledFullIndexStoreVisibility 18 | 19 | IssueFilterStyle 20 | ShowActiveSchemeOnly 21 | LiveSourceIssuesEnabled 22 | 23 | SharedBuildFolderName 24 | Build 25 | 26 | 27 | -------------------------------------------------------------------------------- /.github/ReadmeGenerator.xcodeproj/xcshareddata/xcschemes/ReadmeGenerator.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 41 | 42 | 53 | 55 | 61 | 62 | 63 | 64 | 70 | 72 | 78 | 79 | 80 | 81 | 83 | 84 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /.github/ReadmeGenerator.xcodeproj/xcuserdata/serhii-londar.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 8 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /.github/ReadmeGenerator.xcodeproj/xcuserdata/serhii-londar.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | ReadmeGenerator.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | E8FDFD71226E74F400FE80E7 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /.github/deploy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | echo ${TRAVIS_EVENT_TYPE} 6 | echo ${TRAVIS_BRANCH} 7 | 8 | if [[ ${TRAVIS_EVENT_TYPE} != 'push' ]] 9 | then 10 | exit 11 | fi 12 | 13 | if [[ ${TRAVIS_BRANCH} != 'master' ]] 14 | then 15 | exit 16 | fi 17 | 18 | git checkout master 19 | 20 | git config user.name "serhii-londar" 21 | git config user.email "serhii.londar@gmail.com" 22 | 23 | echo add readme 24 | git add README.md 25 | 26 | echo commit 27 | git commit -m "Generate README" 28 | 29 | echo push 30 | git push --quiet "https://${DANGER_GITHUB_API_TOKEN}@github.com/serhii-londar/open-source-mac-os-apps.git" master:master > /dev/null 2>&1 31 | -------------------------------------------------------------------------------- /.github/main.swift: -------------------------------------------------------------------------------- 1 | // 2 | // main.swift 3 | // ReadmeGenerator 4 | // 5 | // Created by Serhii Londar on 4/23/19. 6 | // Copyright © 2019 Serhii Londar. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | let header = """ 12 |

13 | 14 |

15 | 16 | # Awesome macOS open source applications 17 | 18 |

19 | Awesome 20 | Join the chat at gitter 21 |

22 | 23 | ## Support 24 | 25 | Hey friend! Help me out for a couple of :beers:! Patreon donate button 26 | 27 | 28 | List of awesome open source applications for macOS. This list contains a lot of native, and cross-platform apps. The main goal of this repository is to find free open source apps and start contributing. Feel free to [contribute](CONTRIBUTING.md) to the list, any suggestions are welcome! 29 | 30 | ## Languages 31 | 32 | You can see in which language an app is written. Currently there are following languages: 33 | 34 | - ![c_icon] - C language. 35 | - ![cpp_icon] - C++ language. 36 | - ![c_sharp_icon] - C# language. 37 | - ![clojure_icon] - Clojure language. 38 | - ![coffee_script_icon] - CoffeeScript language. 39 | - ![css_icon] - CSS language. 40 | - ![go_icon] - Go language. 41 | - ![elm_icon] - Elm language. 42 | - ![haskell_icon] - Haskell language. 43 | - ![javascript_icon] - JavaScript language. 44 | - ![lua_icon] - Lua language. 45 | - ![objective_c_icon] - Objective-C language. 46 | - ![python_icon] - Python language. 47 | - ![ruby_icon] - Ruby language. 48 | - ![rust_icon] - Rust language. 49 | - ![swift_icon] - Swift language. 50 | - ![type_script_icon] - TypeScript language. 51 | 52 | 53 | ## Contents 54 | - [Audio](#audio) 55 | - [Backup](#backup) 56 | - [Browser](#browser) 57 | - [Chat](#chat) 58 | - [Cryptocurrency](#cryptocurrency) 59 | - [Database](#database) 60 | - [Development](#development) 61 | - [Git](#git) 62 | - [iOS / macOS](#ios--macos) 63 | - [JSON Parsing](#json-parsing) 64 | - [Web development](#web-development) 65 | - [Other development](#other-development) 66 | - [Downloader](#downloader) 67 | - [Editors](#editors) 68 | - [CSV](#csv) 69 | - [JSON](#json) 70 | - [Markdown](#markdown) 71 | - [TeX](#tex) 72 | - [Text](#text) 73 | - [Extensions](#extensions) 74 | - [Finder](#finder) 75 | - [Games](#games) 76 | - [Graphics](#graphics) 77 | - [IDE](#ide) 78 | - [Images](#images) 79 | - [Keyboard](#keyboard) 80 | - [Mail](#mail) 81 | - [Menubar](#menubar) 82 | - [Music](#music) 83 | - [News](#news) 84 | - [Notes](#notes) 85 | - [Other](#other) 86 | - [Podcast](#podcast) 87 | - [Productivity](#productivity) 88 | - [Screensaver](#screensaver) 89 | - [Security](#security) 90 | - [Sharing Files](#sharing-files) 91 | - [Social Networking](#social-networking) 92 | - [Streaming](#streaming) 93 | - [System](#system) 94 | - [Terminal](#terminal) 95 | - [Touch Bar](#touch-bar) 96 | - [Utilities](#utilities) 97 | - [VPN & Proxy](#vpn--proxy) 98 | - [Video](#video) 99 | - [Wallpaper](#wallpaper) 100 | - [Window Management](#window-management) 101 | 102 | ## Applications 103 | 104 | """ 105 | 106 | let footer = """ 107 | 108 | ## Contributors 109 | 110 | Thanks to all the people who contribute: 111 | 112 | 113 | 114 | [app_store]: ./icons/app_store-16.png 'App Store.' 115 | [c_icon]: ./icons/c-16.png 'C language.' 116 | [cpp_icon]: ./icons/cpp-16.png 'C++ language.' 117 | [c_sharp_icon]: ./icons/csharp-16.png 'C# Language' 118 | [clojure_icon]: ./icons/clojure-16.png 'Clojure Language' 119 | [coffee_script_icon]: ./icons/coffeescript-16.png 'CoffeeScript language.' 120 | [css_icon]: ./icons/css-16.png 'CSS language.' 121 | [go_icon]: ./icons/golang-16.png 'Go language.' 122 | [elm_icon]: ./icons/elm-16.png 'Elm Language' 123 | [haskell_icon]: ./icons/haskell-16.png 'Haskell language.' 124 | [java_icon]: ./icons/java-16.png 'Java language.' 125 | [javascript_icon]: ./icons/javascript-16.png 'JavaScript language.' 126 | [lua_icon]: ./icons/Lua-16.png 'Lua language.' 127 | [objective_c_icon]: ./icons/objective-c-16.png 'Objective-C language.' 128 | [python_icon]: ./icons/python-16.png 'Python language.' 129 | [ruby_icon]: ./icons/ruby-16.png 'Ruby language.' 130 | [rust_icon]: ./icons/rust-16.png 'Rust language.' 131 | [swift_icon]: ./icons/swift-16.png 'Swift language.' 132 | [type_script_icon]: ./icons/typescript-16.png 'TypeScript language.' 133 | """ 134 | 135 | class JSONApplications: Codable { 136 | let applications: [JSONApplication] 137 | 138 | enum CodingKeys: String, CodingKey { 139 | case applications 140 | } 141 | 142 | init(applications: [JSONApplication]) { 143 | self.applications = applications 144 | } 145 | 146 | required public init(from decoder: Decoder) throws { 147 | let values = try decoder.container(keyedBy: CodingKeys.self) 148 | applications = try values.decodeIfPresent([JSONApplication].self, forKey: .applications) ?? [] 149 | } 150 | } 151 | 152 | class JSONApplication: Codable { 153 | var title: String 154 | var iconURL: String 155 | var repoURL: String 156 | var shortDescription: String 157 | var languages: [String] 158 | var screenshots: [String] 159 | var categories: [String] 160 | var officialSite: String 161 | 162 | enum CodingKeys: String, CodingKey { 163 | case title 164 | case iconURL = "icon_url" 165 | case repoURL = "repo_url" 166 | case shortDescription = "short_description" 167 | case languages 168 | case screenshots 169 | case categories 170 | case officialSite = "official_site" 171 | } 172 | 173 | init(title: String, iconURL: String, repoURL: String, shortDescription: String, languages: [String], screenshots: [String], categories: [String], officialSite: String) { 174 | self.title = title 175 | self.iconURL = iconURL 176 | self.repoURL = repoURL 177 | self.shortDescription = shortDescription 178 | self.languages = languages 179 | self.screenshots = screenshots 180 | self.categories = categories 181 | self.officialSite = officialSite 182 | } 183 | } 184 | 185 | class Categories: Codable { 186 | let categories: [Category] 187 | 188 | init(categories: [Category]) { 189 | self.categories = categories 190 | } 191 | 192 | required public init(from decoder: Decoder) throws { 193 | let values = try decoder.container(keyedBy: CodingKeys.self) 194 | categories = try values.decodeIfPresent([Category].self, forKey: .categories) ?? [] 195 | } 196 | } 197 | 198 | class Category: Codable { 199 | let title, id, description: String 200 | let parent: String? 201 | 202 | init(title: String, id: String, description: String, parent: String?) { 203 | self.title = title 204 | self.id = id 205 | self.description = description 206 | self.parent = parent 207 | } 208 | } 209 | 210 | class ReadmeGenerator { 211 | var readmeString = String.empty 212 | 213 | func generateReadme() { 214 | print("Start") 215 | do { 216 | // get current file path: 217 | let thisFilePath:String = #file 218 | var url = URL(fileURLWithPath: thisFilePath) 219 | 220 | //cd ../ to the root folder: (delete `.github/main.swift` 221 | url = url.deletingLastPathComponent().deletingLastPathComponent() 222 | 223 | let applicationsUrl = url.appendingPathComponent(FilePaths.applications.rawValue) 224 | let applicationsData = try Data(contentsOf: applicationsUrl) 225 | let categoriesData = try Data(contentsOf: url.appendingPathComponent(FilePaths.categories.rawValue)) 226 | let jsonDecoder = JSONDecoder() 227 | let applicationsObject = try jsonDecoder.decode(JSONApplications.self, from: applicationsData) 228 | let categoriesObject = try jsonDecoder.decode(Categories.self, from: categoriesData) 229 | 230 | var categories = categoriesObject.categories 231 | let subcategories = categories.filter({ $0.parent != nil && !$0.parent!.isEmpty }) 232 | let applications = applicationsObject.applications 233 | 234 | for subcategory in subcategories { 235 | if let index = categories.lastIndex(where: { $0.parent != subcategory.id }) { 236 | categories.remove(at: index) 237 | } 238 | } 239 | 240 | categories = categories.sorted(by: { $0.title < $1.title }) 241 | 242 | readmeString.append(header) 243 | print("Start iteration....") 244 | 245 | for category in categories { 246 | readmeString.append(String.enter + String.section + String.space + category.title + String.enter) 247 | var categoryApplications = applications.filter({ $0.categories.contains(category.id) }) 248 | categoryApplications = categoryApplications.sorted(by: { $0.title < $1.title }) 249 | 250 | for application in categoryApplications { 251 | readmeString.append(application.markdownDescription()) 252 | readmeString.append(String.enter) 253 | } 254 | 255 | var subcategories = subcategories.filter({ $0.parent == category.id }) 256 | guard subcategories.count > 0 else { continue } 257 | subcategories = subcategories.sorted(by: { $0.title < $1.title }) 258 | for subcategory in subcategories { 259 | readmeString.append(String.enter + String.subsection + String.space + subcategory.title + String.enter) 260 | var categoryApplications = applications.filter({ $0.categories.contains(subcategory.id) }) 261 | categoryApplications = categoryApplications.sorted(by: { $0.title < $1.title }) 262 | 263 | for application in categoryApplications { 264 | readmeString.append(application.markdownDescription()) 265 | readmeString.append(String.enter) 266 | } 267 | } 268 | } 269 | print("Finish iteration...") 270 | readmeString.append(footer) 271 | try readmeString.data(using: .utf8)?.write(to: url.appendingPathComponent(FilePaths.readme.rawValue)) 272 | print("Finish") 273 | } catch { 274 | print(error) 275 | } 276 | } 277 | } 278 | 279 | extension String { 280 | static let empty = "" 281 | static let space = " " 282 | static let enter = "\n" 283 | static let section = "###" 284 | static let subsection = "####" 285 | static let iconPrefix = "_icon" 286 | } 287 | 288 | extension JSONApplication { 289 | func markdownDescription() -> String { 290 | var markdownDescription = String.empty 291 | var languages: String = String.empty 292 | for lang in self.languages { 293 | languages.append("![\(lang)\(String.iconPrefix)] ") 294 | } 295 | 296 | markdownDescription.append("- [\(self.title)](\(self.repoURL)) - \(self.shortDescription) \(languages)") 297 | /* 298 | if self.screenshots.count > 0 { 299 | var screenshotsString = String.empty 300 | screenshotsString += (String.space + Constants.detailsBeginString + String.space) 301 | self.screenshots.forEach({ 302 | screenshotsString += (String.space + (NSString(format: Constants.srcLinePattern as NSString, $0 as CVarArg) as String) + String.space) 303 | }) 304 | screenshotsString += (String.space + Constants.detailsEndString + String.space) 305 | markdownDescription.append(screenshotsString) 306 | } 307 | */ 308 | return markdownDescription 309 | } 310 | } 311 | 312 | enum FilePaths: String { 313 | case readme = "./README.md" 314 | case applications = "./applications.json" 315 | case categories = "./categories.json" 316 | } 317 | 318 | struct Constants { 319 | static let detailsBeginString = "
Screenshots

" 320 | static let detailsEndString = "

" 321 | static let srcLinePattern = "" 322 | 323 | static let startProcessString = "### Database" 324 | static let endProcessString = "### Development" 325 | 326 | static func regex(for type: String) -> String { 327 | return "\\((.+\\.\(type))" 328 | } 329 | static func regex1(for type: String) -> String { 330 | return "\\\"(.+\\.\(type))" 331 | } 332 | } 333 | 334 | ReadmeGenerator().generateReadme() 335 | 336 | -------------------------------------------------------------------------------- /.github/weekly-digest.yml: -------------------------------------------------------------------------------- 1 | # Configuration for weekly-digest - https://github.com/apps/weekly-digest 2 | publishDay: mon 3 | canPublishIssues: true 4 | canPublishPullRequests: true 5 | canPublishContributors: true 6 | canPublishStargazers: true 7 | canPublishCommits: true -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: required 2 | language: swift 3 | osx_image: xcode11 4 | rvm: 2.6.3 5 | before_script: 6 | - gem install awesome_bot 7 | - gem install bundler 8 | - gem install danger 9 | script: 10 | - awesome_bot applications.json -w https://matrix.org,https://camo.githubusercontent.com,http://joshparnham.com,https://pock.pigigaldi.com,https://docs.microsoft.com/powershell/scripting/install/installing-powershell-core-on-macos?view=powershell-6,https://adequate.systems/ 11 | - danger 12 | after_success: 13 | - swift ./.github/main.swift 14 | - chmod +x ./.github/deploy.sh 15 | - ./.github/deploy.sh 16 | notifications: 17 | email: true 18 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please ensure your pull request adheres to the following guidelines: 4 | 5 | - Search previous suggestions before making a new one, as yours may be a duplicate. 6 | - Make an individual pull request for each suggestion. 7 | - Edit [applications.json](https://github.com/serhii-londar/open-source-mac-os-apps/blob/master/applications.json) instead of [README.md](https://github.com/serhii-londar/open-source-mac-os-apps/blob/master/README.md). 8 | - Use the following format: 9 | ```json 10 | { 11 | "short_description": "Description of repository", 12 | "categories": [ 13 | "Application category 1", 14 | "Application category 2" 15 | ], 16 | "repo_url": "Link to repository", 17 | "title": "Name of application", 18 | "icon_url": "URL to application icon", 19 | "screenshots": [ 20 | "Screenshot url 1", 21 | "Screenshot url 2" 22 | ], 23 | "official_site": "Official site link", 24 | "languages": [ 25 | "Language name" 26 | ] 27 | } 28 | ``` 29 | - New categories, or improvements to the existing categorization are welcome. List of all categories can be found in [categories.json](https://github.com/serhii-londar/open-source-mac-os-apps/blob/master/categories.json). 30 | - Keep descriptions short and simple, but descriptive. 31 | - End all descriptions with a full stop/period. 32 | - Check your spelling and grammar. 33 | - Make sure your text editor is set to remove trailing whitespace. 34 | 35 | #### Deleting 36 | 37 | Typical reasons for deleting a project: 38 | 39 | - Doesn't build in the current Xcode 40 | - No updates / no longer works 41 | - Deprecated 42 | - Lacks license 43 | 44 | #### Projects are ineligible if: 45 | 46 | - Lack recent commit 47 | - README is not clear or not written in English 48 | 49 | Your contributions are always welcome! Thank you for your suggestions! :smiley: 50 | -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- 1 | # Ensure there is a summary for a pull request 2 | fail 'Please provide a summary in the Pull Request description' if github.pr_body.length < 5 3 | 4 | # Warn when there are merge commits in the diff 5 | warn 'Please rebase to get rid of the merge commits in this Pull Request' if git.commits.any? { |c| c.message =~ /^Merge branch 'master'/ } 6 | 7 | # Warn if pull request is not updated 8 | warn 'Please update the Pull Request title to contain the library name' if github.pr_title.include? 'Update README.md' 9 | 10 | # Check links 11 | require 'json' 12 | results = File.read 'ab-results-applications.json-markdown-table.json' 13 | j = JSON.parse results 14 | if j['error']==true 15 | m = j['title'] 16 | m << ', a project collaborator will take care of these, thanks :)' 17 | warn m 18 | markdown j['message'] 19 | end 20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CC0 1.0 Universal 2 | 3 | Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer 6 | exclusive Copyright and Related Rights (defined below) upon the creator and 7 | subsequent owner(s) (each and all, an "owner") of an original work of 8 | authorship and/or a database (each, a "Work"). 9 | 10 | Certain owners wish to permanently relinquish those rights to a Work for the 11 | purpose of contributing to a commons of creative, cultural and scientific 12 | works ("Commons") that the public can reliably and without fear of later 13 | claims of infringement build upon, modify, incorporate in other works, reuse 14 | and redistribute as freely as possible in any form whatsoever and for any 15 | purposes, including without limitation commercial purposes. These owners may 16 | contribute to the Commons to promote the ideal of a free culture and the 17 | further production of creative, cultural and scientific works, or to gain 18 | reputation or greater distribution for their Work in part through the use and 19 | efforts of others. 20 | 21 | For these and/or other purposes and motivations, and without any expectation 22 | of additional consideration or compensation, the person associating CC0 with a 23 | Work (the "Affirmer"), to the extent that he or she is an owner of Copyright 24 | and Related Rights in the Work, voluntarily elects to apply CC0 to the Work 25 | and publicly distribute the Work under its terms, with knowledge of his or her 26 | Copyright and Related Rights in the Work and the meaning and intended legal 27 | effect of CC0 on those rights. 28 | 29 | 1. Copyright and Related Rights. A Work made available under CC0 may be 30 | protected by copyright and related or neighboring rights ("Copyright and 31 | Related Rights"). Copyright and Related Rights include, but are not limited 32 | to, the following: 33 | 34 | i. the right to reproduce, adapt, distribute, perform, display, communicate, 35 | and translate a Work; 36 | 37 | ii. moral rights retained by the original author(s) and/or performer(s); 38 | 39 | iii. publicity and privacy rights pertaining to a person's image or likeness 40 | depicted in a Work; 41 | 42 | iv. rights protecting against unfair competition in regards to a Work, 43 | subject to the limitations in paragraph 4(a), below; 44 | 45 | v. rights protecting the extraction, dissemination, use and reuse of data in 46 | a Work; 47 | 48 | vi. database rights (such as those arising under Directive 96/9/EC of the 49 | European Parliament and of the Council of 11 March 1996 on the legal 50 | protection of databases, and under any national implementation thereof, 51 | including any amended or successor version of such directive); and 52 | 53 | vii. other similar, equivalent or corresponding rights throughout the world 54 | based on applicable law or treaty, and any national implementations thereof. 55 | 56 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, 57 | applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and 58 | unconditionally waives, abandons, and surrenders all of Affirmer's Copyright 59 | and Related Rights and associated claims and causes of action, whether now 60 | known or unknown (including existing as well as future claims and causes of 61 | action), in the Work (i) in all territories worldwide, (ii) for the maximum 62 | duration provided by applicable law or treaty (including future time 63 | extensions), (iii) in any current or future medium and for any number of 64 | copies, and (iv) for any purpose whatsoever, including without limitation 65 | commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes 66 | the Waiver for the benefit of each member of the public at large and to the 67 | detriment of Affirmer's heirs and successors, fully intending that such Waiver 68 | shall not be subject to revocation, rescission, cancellation, termination, or 69 | any other legal or equitable action to disrupt the quiet enjoyment of the Work 70 | by the public as contemplated by Affirmer's express Statement of Purpose. 71 | 72 | 3. Public License Fallback. Should any part of the Waiver for any reason be 73 | judged legally invalid or ineffective under applicable law, then the Waiver 74 | shall be preserved to the maximum extent permitted taking into account 75 | Affirmer's express Statement of Purpose. In addition, to the extent the Waiver 76 | is so judged Affirmer hereby grants to each affected person a royalty-free, 77 | non transferable, non sublicensable, non exclusive, irrevocable and 78 | unconditional license to exercise Affirmer's Copyright and Related Rights in 79 | the Work (i) in all territories worldwide, (ii) for the maximum duration 80 | provided by applicable law or treaty (including future time extensions), (iii) 81 | in any current or future medium and for any number of copies, and (iv) for any 82 | purpose whatsoever, including without limitation commercial, advertising or 83 | promotional purposes (the "License"). The License shall be deemed effective as 84 | of the date CC0 was applied by Affirmer to the Work. Should any part of the 85 | License for any reason be judged legally invalid or ineffective under 86 | applicable law, such partial invalidity or ineffectiveness shall not 87 | invalidate the remainder of the License, and in such case Affirmer hereby 88 | affirms that he or she will not (i) exercise any of his or her remaining 89 | Copyright and Related Rights in the Work or (ii) assert any associated claims 90 | and causes of action with respect to the Work, in either case contrary to 91 | Affirmer's express Statement of Purpose. 92 | 93 | 4. Limitations and Disclaimers. 94 | 95 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 96 | surrendered, licensed or otherwise affected by this document. 97 | 98 | b. Affirmer offers the Work as-is and makes no representations or warranties 99 | of any kind concerning the Work, express, implied, statutory or otherwise, 100 | including without limitation warranties of title, merchantability, fitness 101 | for a particular purpose, non infringement, or the absence of latent or 102 | other defects, accuracy, or the present or absence of errors, whether or not 103 | discoverable, all to the greatest extent permissible under applicable law. 104 | 105 | c. Affirmer disclaims responsibility for clearing rights of other persons 106 | that may apply to the Work or any use thereof, including without limitation 107 | any person's Copyright and Related Rights in the Work. Further, Affirmer 108 | disclaims responsibility for obtaining any necessary consents, permissions 109 | or other rights required for any use of the Work. 110 | 111 | d. Affirmer understands and acknowledges that Creative Commons is not a 112 | party to this document and has no duty or obligation with respect to this 113 | CC0 or use of the Work. 114 | 115 | For more information, please see 116 | 117 | -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Project URL 4 | 5 | 6 | ## Category 7 | 8 | 9 | ## Description 10 | 11 | 12 | ## Why it should be included to `Awesome macOS open source applications ` (optional) 13 | 14 | 15 | ## Checklist 16 | 17 | 18 | - [ ] Edit [applications.json](https://github.com/serhii-londar/open-source-mac-os-apps/blob/master/applications.json) instead of [README.md](https://github.com/serhii-londar/open-source-mac-os-apps/blob/master/README.md). 19 | - [ ] Only one project/change is in this pull request 20 | - [ ] Screenshots(s) added if any 21 | - [ ] Has a commit from less than 2 years ago 22 | - [ ] Has a **clear** README in English 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 | # Awesome macOS open source applications 6 | 7 |

8 | Awesome 9 | Join the chat at gitter 10 |

11 | 12 | ## Support 13 | 14 | Hey friend! Help me out for a couple of :beers:! Patreon donate button 15 | 16 | 17 | List of awesome open source applications for macOS. This list contains a lot of native, and cross-platform apps. The main goal of this repository is to find free open source apps and start contributing. Feel free to [contribute](CONTRIBUTING.md) to the list, any suggestions are welcome! 18 | 19 | ## Languages 20 | 21 | You can see in which language an app is written. Currently there are following languages: 22 | 23 | - ![c_icon] - C language. 24 | - ![cpp_icon] - C++ language. 25 | - ![c_sharp_icon] - C# language. 26 | - ![clojure_icon] - Clojure language. 27 | - ![coffee_script_icon] - CoffeeScript language. 28 | - ![css_icon] - CSS language. 29 | - ![go_icon] - Go language. 30 | - ![elm_icon] - Elm language. 31 | - ![haskell_icon] - Haskell language. 32 | - ![javascript_icon] - JavaScript language. 33 | - ![lua_icon] - Lua language. 34 | - ![objective_c_icon] - Objective-C language. 35 | - ![python_icon] - Python language. 36 | - ![ruby_icon] - Ruby language. 37 | - ![rust_icon] - Rust language. 38 | - ![swift_icon] - Swift language. 39 | - ![type_script_icon] - TypeScript language. 40 | 41 | 42 | ## Contents 43 | - [Audio](#audio) 44 | - [Backup](#backup) 45 | - [Browser](#browser) 46 | - [Chat](#chat) 47 | - [Cryptocurrency](#cryptocurrency) 48 | - [Database](#database) 49 | - [Development](#development) 50 | - [Git](#git) 51 | - [iOS / macOS](#ios--macos) 52 | - [JSON Parsing](#json-parsing) 53 | - [Web development](#web-development) 54 | - [Other development](#other-development) 55 | - [Downloader](#downloader) 56 | - [Editors](#editors) 57 | - [CSV](#csv) 58 | - [JSON](#json) 59 | - [Markdown](#markdown) 60 | - [TeX](#tex) 61 | - [Text](#text) 62 | - [Extensions](#extensions) 63 | - [Finder](#finder) 64 | - [Games](#games) 65 | - [Graphics](#graphics) 66 | - [IDE](#ide) 67 | - [Images](#images) 68 | - [Keyboard](#keyboard) 69 | - [Mail](#mail) 70 | - [Menubar](#menubar) 71 | - [Music](#music) 72 | - [News](#news) 73 | - [Notes](#notes) 74 | - [Other](#other) 75 | - [Podcast](#podcast) 76 | - [Productivity](#productivity) 77 | - [Screensaver](#screensaver) 78 | - [Security](#security) 79 | - [Sharing Files](#sharing-files) 80 | - [Social Networking](#social-networking) 81 | - [Streaming](#streaming) 82 | - [System](#system) 83 | - [Terminal](#terminal) 84 | - [Touch Bar](#touch-bar) 85 | - [Utilities](#utilities) 86 | - [VPN & Proxy](#vpn--proxy) 87 | - [Video](#video) 88 | - [Wallpaper](#wallpaper) 89 | - [Window Management](#window-management) 90 | 91 | ## Applications 92 | 93 | ### Audio 94 | - [AUHost](https://github.com/vgorloff/AUHost) - Application which hosts AudioUnits v3 using AVFoundation API. ![swift_icon] 95 | - [Aural Player](https://github.com/maculateConception/aural-player) - Aural Player is a audio player application for the macOS platform. Inspired by the classic Winamp player for Windows, it is designed to be to-the-point and easy to use. ![swift_icon] 96 | - [AutoMute](https://github.com/yonilevy/automute) - Automatically mute the sound when headphones disconnect / Mac awake from sleep. ![objective_c_icon] 97 | - [Background Music](https://github.com/kyleneideck/BackgroundMusic) - Background Music, a macOS audio utility: automatically pause your music, set individual apps' volumes and record system audio. ![cpp_icon] 98 | - [BlackHole](https://github.com/ExistentialAudio/BlackHole) - BlackHole is a modern macOS virtual audio driver that allows applications to pass audio to other applications with zero additional latency. ![c_icon] 99 | - [CAM](https://github.com/hanayik/CAM) - macOS camera recording using ffmpeg ![javascript_icon] 100 | - [Clementine](https://github.com/clementine-player/Clementine) - Clementine is a modern music player and library organizer for Windows, Linux and macOS. ![cpp_icon] 101 | - [Cog](https://bitbucket.org/losnoco/cog/src) - Cog is an open source audio player for macOS. The basic layout is a single-paned playlist interface with two retractable drawers, one for navigating the user's music folders and another for viewing audio file properties, like bitrate. ![objective_c_icon] 102 | - [LocalRadio](https://github.com/dsward2/LocalRadio) - LocalRadio is software for listening to "Software-Defined Radio" on your Mac and mobile devices. ![objective_c_icon] 103 | - [Lyricism](https://github.com/lyc2345/Lyricism) - macOS app to show you lyric what currently iTunes or Spotify is playing. ![objective_c_icon] ![swift_icon] 104 | - [LyricsX](https://github.com/ddddxxx/LyricsX) - Lyrics for iTunes, Spotify and Vox. ![swift_icon] 105 | - [Mous Player](https://github.com/bsdelf/mous) - Simple yet powerful audio player for BSD/Linux/macOS. ![cpp_icon] 106 | - [Music Bar](https://github.com/musa11971/Music-Bar/) - Music Bar is macOS application that places music controls right in your menu bar. ![swift_icon] 107 | - [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. ![swift_icon] 108 | - [ShazamScrobbler](https://github.com/ShazamScrobbler/shazamscrobbler-macos) - Scrobble vinyl, radios, movies to Last.fm. ![objective_c_icon] 109 | - [Sonora](https://github.com/sonoramac/Sonora) - Minimal, beautifully designed music player for macOS. ![objective_c_icon] 110 | - [SpotMenu](https://github.com/kmikiy/SpotMenu) - Spotify and iTunes in your menu bar. ![objective_c_icon] ![swift_icon] 111 | - [SpotSpot](https://github.com/will-stone/SpotSpot) - Spotify mini-player for macOS. ![javascript_icon] 112 | - [Suohai](https://github.com/Sunnyyoung/Suohai) - Audio input/output source lock for macOS. ![swift_icon] 113 | - [Tickeys](https://github.com/yingDev/Tickeys) - Instant audio feedback for typing. macOS version. ![rust_icon] 114 | - [[Un]MuteMic](https://github.com/CocoaHeadsBrasil/MuteUnmuteMic) - macOS app to mute & unmute the input volume of your microphone. Perfect for podcasters. ![objective_c_icon] ![c_icon] 115 | - [eqMac2](https://github.com/nodeful/eqMac2) - System-Wide Equalizer for the Mac. ![cpp_icon] 116 | - [fre:ac](https://github.com/enzo1982/freac) - The fre:ac audio converter project. ![cpp_icon] 117 | - [iTunes-Volume-Control](https://github.com/alberti42/iTunes-Volume-Control) - This app allows you to control the iTunes volume using volume up and volume down hotkeys. ![objective_c_icon] 118 | - [jmc](https://github.com/jcm93/jmc) - jmc is new macOS media organizer. ![swift_icon] 119 | - [shairport-sync](https://github.com/mikebrady/shairport-sync) - macOS/Linux/FreeBSD/OpenBSD Airplay audio receiver. ![c_icon] ![cpp_icon] 120 | - [waveSDR](https://github.com/getoffmyhack/waveSDR) - macOS native desktop Software Defined Radio application using the RTL-SDR USB device. ![swift_icon] 121 | 122 | ### Backup 123 | - [Mackup](https://github.com/lra/mackup) - Keep your application settings in sync (macOS/Linux). ![python_icon] 124 | - [UrBackup](https://github.com/uroni/urbackup_backend) - UrBackup is Client/Server network backup for Windows, macOS and Linux. ![cpp_icon] ![c_icon] 125 | - [shallow-backup](https://github.com/alichtman/shallow-backup) - Easily create lightweight documentation of installed applications, dotfiles, and more. ![python_icon] 126 | 127 | ### Browser 128 | - [Beaker Browser](https://github.com/beakerbrowser/beaker) - Beaker is an experimental peer-to-peer Web browser. ![javascript_icon] 129 | - [Brave Browser](https://github.com/brave/brave-browser) - Brave browser for Desktop and Laptop computers running Windows, macOS, and Linux. ![javascript_icon] 130 | - [Finicky](https://github.com/johnste/finicky) - Always opens the right browser. ![swift_icon] 131 | - [Helium](https://github.com/JadenGeller/Helium) - Floating browser window for macOS. ![objective_c_icon] ![swift_icon] 132 | - [Kaktus Browser](https://github.com/kaktus/kaktus) - Experimental web browser with minimalistic design. Running Windows, macOS and Linux. ![javascript_icon] 133 | - [Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium. ![javascript_icon] 134 | - [Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper. ![swift_icon] 135 | - [browserosaurus](https://github.com/will-stone/browserosaurus) - macOS tool that prompts you to choose a browser when opening a link. ![javascript_icon] 136 | - [otter-browser](https://github.com/OtterBrowser/otter-browser) - Otter Browser aims to recreate the best aspects of the classic Opera (12.x) UI using Qt5. ![cpp_icon] 137 | - [seb-mac](https://github.com/SafeExamBrowser/seb-mac) - Safe Exam Browser for macOS and iOS. ![c_icon] 138 | 139 | ### Chat 140 | - [Beagle IM](https://github.com/tigase/beagle-im) - Powerful XMPP client with support for file transfer, VoIP and end-to-end encryption. ![swift_icon] 141 | - [ChitChat](https://github.com/stonesam92/ChitChat) - Native Mac app wrapper for WhatsApp Web. ![objective_c_icon] 142 | - [Electronic WeChat](https://github.com/geeeeeeeeek/electronic-wechat) - Better WeChat on macOS and Linux. ![javascript_icon] 143 | - [Franz](https://github.com/meetfranz/franz) - Franz is messaging application for services like WhatsApp, Slack, Messenger and many more. ![javascript_icon] 144 | - [Google Allo for Desktop](https://github.com/kelyvin/Google-Allo-For-Desktop) - Native macOS & Windows desktop app for Google Allo. ![javascript_icon] 145 | - [GroupMe](https://github.com/dcrousso/GroupMe) - Unofficial GroupMe App. ![javascript_icon] ![css_icon] 146 | - [MessagesHistoryBrowser](https://github.com/glaurent/MessagesHistoryBrowser) - macOS application to comfortably browse and search through your Messages.app history. ![swift_icon] 147 | - [Riot.im](https://github.com/vector-im/riot-web) - Riot.im is a collaboration app (currently Electron) for the [Matrix](https://matrix.org/blog/home/) protocol. ![javascript_icon] 148 | - [Seaglass](https://github.com/neilalexander/seaglass) - A truly native [Matrix](https://matrix.org/blog/home/) client for macOS. ![swift_icon] 149 | - [Signal Desktop](https://github.com/signalapp/Signal-Desktop) - Electron app that links with your Signal Android or Signal iOS app. ![javascript_icon] 150 | - [Telegram](https://github.com/overtake/TelegramSwift) - Source code of Telegram for macOS on Swift. ![swift_icon] 151 | - [Telegram Desktop](https://github.com/telegramdesktop/tdesktop) - Telegram Desktop messaging app. ![cpp_icon] 152 | - [Textual](https://github.com/Codeux-Software/Textual) - Textual is an IRC client for macOS. ![objective_c_icon] 153 | - [Torchat-Mac](https://github.com/javerous/TorChat-Mac) - TorChat for Mac is a macOS native and unofficial port of torchat. ![objective_c_icon] 154 | - [WhatsAppBar](https://github.com/aldychris/WhatsAppBar) - Send WhatsApp message from menu bar. ![swift_icon] 155 | - [Wire Desktop](https://github.com/wireapp/wire-desktop) - Standalone Electron app for the chatapp Wire. ![javascript_icon] 156 | 157 | ### Cryptocurrency 158 | - [Balance Open](https://github.com/balance-io/balance-open) - App for all the world’s currencies. ![swift_icon] 159 | - [CoinBar](https://github.com/adamwaite/CoinBar) - macOS menu bar application for tracking crypto coin prices. ![swift_icon] 160 | - [Copay](https://github.com/bitpay/copay) - A secure bitcoin wallet platform for both desktop and mobile devices. ![type_script_icon] 161 | - [Crypto Bar](https://github.com/geraldoramos/crypto-bar) - macOS menu bar application built with Electron. ![javascript_icon] 162 | - [Float coin](https://github.com/kaunteya/FloatCoin) - Native menu bar app with floating window and support for many Exchanges. ![swift_icon] 163 | 164 | ### Database 165 | - [DB Browser for SQLite](https://github.com/sqlitebrowser/sqlitebrowser) - SQLite database management GUI. ![cpp_icon] 166 | - [DBeaver](https://github.com/dbeaver/dbeaver) - Universal database tool and SQL client. ![java_icon] 167 | - [Medis](https://github.com/luin/medis) - 💻 Medis is a beautiful, easy-to-use Mac database management application for Redis. ![javascript_icon] 168 | - [MongoHub](https://github.com/jeromelebel/MongoHub-Mac) - Add another lightweight Mac Native MongoDB client. ![objective_c_icon] ![c_icon] 169 | - [Postbird](https://github.com/Paxa/postbird) - PostgreSQL GUI client for macOS. ![javascript_icon] 170 | - [Postgres.app](https://github.com/PostgresApp/PostgresApp) - The easiest way to get started with PostgreSQL on the Mac. ![swift_icon] 171 | - [Redis.app](https://github.com/jpadilla/redisapp) - The easiest way to get started with Redis on the Mac. ![swift_icon] 172 | - [Robo 3T](https://github.com/Studio3T/robomongo) - Robo 3T (formerly Robomongo) is the free lightweight GUI for MongoDB enthusiasts. ![cpp_icon] 173 | - [Sequel Pro](https://github.com/sequelpro/sequelpro) - MySQL/MariaDB database management for macOS. ![objective_c_icon] 174 | - [mongoDB.app](https://github.com/gcollazo/mongodbapp) - The easiest way to get started with mongoDB on the Mac. ![swift_icon] 175 | 176 | ### Development 177 | 178 | #### Git 179 | - [Cashew](https://github.com/jensteichert/OpenCashew) - Cashew macOS Github Issue Tracker. ![objective_c_icon] ![c_icon] 180 | - [GPM](https://github.com/mtgto/GPM) - macOS application for easily operating GitHub Projects. ![swift_icon] 181 | - [Git Interactive Rebase Tool](https://github.com/MitMaro/git-interactive-rebase-tool) - Full feature terminal based sequence editor for interactive rebase. ![rust_icon] 182 | - [GitHub Desktop](https://github.com/desktop/desktop) - Simple collaboration from your desktop. ![type_script_icon] 183 | - [GitSync](https://github.com/eonist/GitSync) - Minimalistic Git client for Mac. ![swift_icon] 184 | - [GitUp](https://github.com/git-up/GitUp) - The Git interface you've been missing all your life has finally arrived. ![objective_c_icon] 185 | - [GitX](https://github.com/gitx/gitx) - Graphical client for the git version control system. ![objective_c_icon] 186 | - [Gitee](https://github.com/Nightonke/Gitee) - Gitee, macOS status bar application for Github. ![objective_c_icon] ![swift_icon] 187 | - [Github contributions](https://github.com/remirobert/Github-contributions) - GitHub contributions app, for iOS, WatchOS, and macOS. ![swift_icon] 188 | - [GithubListener](https://github.com/ad/GithubListener) - Simple app that will notify about new commits to watched repositories. ![swift_icon] 189 | - [GithubNotify](https://github.com/erik/github-notify) - Simple macOS app to alert you when you have unread GitHub notifications. ![swift_icon] 190 | - [Streaker](https://github.com/jamieweavis/streaker) - GitHub contribution streak tracking menubar app. ![javascript_icon] 191 | - [TeamStatus-for-GitHub](https://github.com/marcinreliga/TeamStatus-for-GitHub) - macOS status bar application for tracking code review process within the team. ![swift_icon] 192 | - [Trailer](https://github.com/ptsochantaris/trailer) - Managing Pull Requests and Issues For GitHub & GitHub Enterprise. ![swift_icon] 193 | - [Xit](https://github.com/Uncommon/Xit) - Xit is a graphical tool for working with git repositories. ![swift_icon] 194 | 195 | #### JSON Parsing 196 | - [JSON Mapper](https://github.com/AppCraft-LLC/json-mapper) - Simple macOS app to generate Swift Object Mapper classes from JSON. ![swift_icon] 197 | - [JSONExport](https://github.com/Ahmed-Ali/JSONExport) - Desktop application for macOS which enables you to export JSON objects as model classes with their associated constructors, utility methods, setters and getters in your favorite language. ![swift_icon] 198 | - [j2s](https://github.com/zadr/j2s) - macOS app to convert JSON objects into Swift structs (currently targets Swift 4 and Codable). ![swift_icon] 199 | 200 | #### Other Development 201 | - [ChefInspector](https://github.com/Yasumoto/ChefInspector) - Node and Attribute viewer for Chef ![swift_icon] 202 | - [MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client. ![javascript_icon] ![type_script_icon] 203 | - [macho-browser](https://github.com/dcsch/macho-browser) - Browser for macOS Mach-O binaries. ![objective_c_icon] 204 | - [vegvisir](https://github.com/ant4g0nist/vegvisir) - Browser based GUI for **LLDB** Debugger. ![javascript_icon] 205 | 206 | #### Web Development 207 | - [CoreOS VM](https://github.com/TheNewNormal/coreos-osx) - CoreOS VM is macOS status bar app which allows in an easy way to control CoreOS VM on your Mac. ![objective_c_icon] 208 | - [Corectl App for macOS](https://github.com/TheNewNormal/corectl.app) - Corectl App is a macOS Status bar App which works like a wrapper around the corectl command line tool corectld to control the server runtime process. ![swift_icon] 209 | - [HTTP Toolkit](https://github.com/httptoolkit/httptoolkit-desktop) - HTTP Toolkit is a cross-platform tool to intercept, debug & mock HTTP. ![type_script_icon] 210 | - [Insomnia](https://github.com/Kong/insomnia) - Insomnia is a cross-platform REST client, built on top of Electron. ![javascript_icon] 211 | - [KubeMonitor](https://github.com/DanSanche/KubeMonitor) - KubeMonitor is a macOS app that displays information about your active Kubernetes cluster in your menu bar. ![swift_icon] 212 | - [KubeSwitch](https://github.com/nsriram/KubeSwitch) - KubeSwitch lists the available kubernetes cluster contexts on the mac, in Mac's Menu bar. ![swift_icon] 213 | - [Lantern](https://github.com/RoyalIcing/Lantern) - Dedicated Mac app for website auditing and crawling. ![swift_icon] 214 | - [LocalSites](https://github.com/plan44/localSites) - Simple Menu Bar (Status Bar) App for macOS listing local Bonjour websites (as Safari 11 no longer has Bonjour Bookmarks). ![swift_icon] 215 | - [Mockup Generator](https://github.com/andypotts/mockup-generator) - Mockup Generator is a macOS app built with AngularJS/Electron that sits in your menu bar allowing you to capture screenshots of your favourite websites and wrap them in device mock-ups. ![javascript_icon] 216 | - [Now Desktop](https://github.com/zeit/now-desktop) - Create deployments right from the tray menu. ![javascript_icon] 217 | - [aws-s3-uploader](https://github.com/RafalWilinski/s3-uploader) - Simple macOS app for uploading files to Amazon Web Services. ![javascript_icon] 218 | - [iTunesConnect](https://github.com/ronakdev/itunesconnect) - macOS app to let you access iTunesConnect. ![swift_icon] 219 | - [ndm](https://github.com/720kb/ndm) - Npm desktop GUI. ![javascript_icon] 220 | - [nodeScratchpad](https://github.com/vsaravind007/nodeScratchpad) - Evaluate Nodejs/JS code snippets from Menubar. ![swift_icon] 221 | - [stts](https://github.com/inket/stts) - macOS app for monitoring the status of cloud services. ![swift_icon] 222 | 223 | #### iOS / macOS 224 | - [AVXCAssets Generator](https://github.com/angelvasa/AVXCAssets-Generator) - Takes path for your assets images and creates appiconset and imageset for you in just one click. ![swift_icon] 225 | - [AppBox](https://github.com/vineetchoudhary/AppBox-iOSAppsWirelessInstallation) - Tool for iOS developers to build and deploy Development, Ad-Hoc and In-house (Enterprise) applications directly to the devices from your Dropbox account. ![objective_c_icon] 226 | - [AppIcons](https://github.com/kuyawa/AppIcons) - Tool for generating icons in all sizes as required by macOS and iOS apps. ![swift_icon] 227 | - [AppStoreReviewTimes](https://github.com/arbel03/AppStoreReviewTimes) - Gives you indication about the average iOS / macOS app stores review times. ![swift_icon] 228 | - [AppleTrace](https://github.com/everettjf/AppleTrace) - Trace tool for iOS/macOS. ![objective_c_icon] 229 | - [Asset Catalog Tinkerer](https://github.com/insidegui/AssetCatalogTinkerer) - App that lets you open .car files and browse/extract their images. ![objective_c_icon] ![swift_icon] 230 | - [Assets](https://github.com/e7711bbear/Assets) - Assets is a macOS app that manages assets for your development projects (Xcode, web, etc). ![swift_icon] 231 | - [Attabench](https://github.com/attaswift/Attabench) - Attabench is a microbenchmarking app for macOS, designed to measure and visualize the performance of Swift code. ![swift_icon] 232 | - [Board For GitHub](https://github.com/JustinFincher/BoardForGitHub) - Small application to monitor your GitHub project web page in a native macOS app :octocat:! ![objective_c_icon] 233 | - [Brisk](https://github.com/br1sk/brisk) - macOS app for submitting radars. ![swift_icon] 234 | - [Cleaner for Xcode](https://github.com/waylybaye/XcodeCleaner) - Cleaner for Xcode.app built with react-native-macOS. ![objective_c_icon] 235 | - [CocoaRestClient](https://github.com/mmattozzi/cocoa-rest-client) - Native Apple macOS app for testing HTTP/REST endpoints. ![objective_c_icon] 236 | - [FilterShop](https://github.com/KrisYu/FilterShop) - macOS App to explore CoreImage Filters. ![swift_icon] 237 | - [IconGenerator](https://github.com/onmyway133/IconGenerator) - macOS app to generate app icons. ![javascript_icon] 238 | - [Iconizer](https://github.com/raphaelhanneken/iconizer) - Create Xcode image catalogs (xcassets) on the fly. ![swift_icon] 239 | - [Icons.app](https://github.com/SAP/macos-icon-generator) - App for macOS which is designed to generate consistent sized icons of an existing application in various states, jiggling (shaking) etc. ![objective_c_icon] 240 | - [InjectionIII](https://github.com/johnno1962/InjectionIII) - overdue Swift rewrite of Injection. ![objective_c_icon] ![swift_icon] 241 | - [Knuff](https://github.com/KnuffApp/Knuff) - The debug application for Apple Push Notification Service (APNs). ![objective_c_icon] 242 | - [LayerX](https://github.com/yuhua-chen/LayerX) - Intuitive app to display transparent images on screen. ![swift_icon] 243 | - [Localizable.strings](https://github.com/ralcr/Localizable.strings) - Mac app to localize your iOS and macOS projects. ![swift_icon] 244 | - [Localization Editor](https://github.com/igorkulman/iOSLocalizationEditor) - Simple macOS editor app to help you manage iOS app localizations by allowing you to edit all the translations side by side. ![swift_icon] 245 | - [Localizations](https://github.com/e7711bbear/Localizations) - Localizations is an macOS app that manages your Xcode project localization files (.strings). ![swift_icon] 246 | - [Menubar Colors](https://github.com/nvzqz/Menubar-Colors) - macOS app for convenient access to the system color panel. ![swift_icon] 247 | - [Notarize](https://github.com/macmade/Notarize) - Notarization status monitoring tool for macOS, supporting multiple developer accounts ![swift_icon] 248 | - [PodsUpdater](https://github.com/kizitonwose/PodsUpdater) - macOS app which helps you manage dependency releases in your Podfile. ![swift_icon] 249 | - [ProfilesManager](https://github.com/shaojiankui/ProfilesManager) - Apple iOS/macOS Provisioning Profiles management,.provisionprofile, .mobileprovision files manager tool for mac. ![objective_c_icon] 250 | - [PushNotifications](https://github.com/onmyway133/PushNotifications) - macOS app to test push notifications on iOS and Android. ![javascript_icon] 251 | - [ResignTool](https://github.com/InjoyDeng/ResignTool) - This is an app for macOS that can (re)sign apps and bundle them into ipa files that are ready to be installed on an iOS device. ![objective_c_icon] 252 | - [Resizr](https://github.com/onurgenes/Resizr) - MacOS application for creating AppIcon for iOS and Android apps. ![swift_icon] 253 | - [SmartPush](https://github.com/shaojiankui/SmartPush) - iOS Push Notification Debug App. ![objective_c_icon] 254 | - [TransporterPad](https://github.com/iseebi/TransporterPad) - iOS/Android app deployment tool for macOS. ![swift_icon] 255 | - [WWDC](https://github.com/insidegui/WWDC) - Unofficial WWDC app for macOS. ![swift_icon] 256 | - [WWDC.srt](https://github.com/ssamadgh/WWDCsrt) - Powerful app for downloading subtitle for each WWDC session video since 2013 in (srt) format. ![swift_icon] 257 | - [calabash-launcher](https://github.com/xing/calabash-launcher) - iOS Calabash Launcher is a macOS app that helps you run and manage Calabash tests on your Mac. ![swift_icon] 258 | - [iOS Images Extractor](https://github.com/devcxm/iOS-Images-Extractor) - iOS Images Extractor is a Mac app to normalize, decode, and extract images from iOS apps. ![objective_c_icon] 259 | - [iSimulator](https://github.com/wigl/iSimulator) - iSimulator is a GUI utility to control the Simulator and manage the app installed on the simulator. ![objective_c_icon] 260 | - [xib2Storyboard](https://github.com/novemberfiveco/xib2Storyboard) - Tool to convert Xcode .xib to .storyboard files. ![objective_c_icon] 261 | 262 | ### Downloader 263 | - [App Downloader](https://github.com/yep/app-downloader) - Easily search and download macOS apps from the huge `homebrew cask` app catalog. ![swift_icon] 264 | - [Get It](https://github.com/Kevin-De-Koninck/Get-It) - Native macOS video/audio downloader. Think of it as a youtube downloader that works on many sites. ![swift_icon] 265 | - [Motrix](https://github.com/agalwood/Motrix) - A full-featured download manager. ![javascript_icon] 266 | - [Pillager](https://github.com/Pjirlip/Pillager) - macOS Video Downloader written in Swift and Objective-C. ![objective_c_icon] ![swift_icon] 267 | - [YouTube Downloader for macOS](https://github.com/DenBeke/YouTube-Downloader-for-macOS) - Simple menu bar app to download YouTube movies on your Mac. I wrote this as a test project to learn more about app development on macOS. ![swift_icon] 268 | - [udemy-downloader-gui](https://github.com/FaisalUmair/udemy-downloader-gui) - desktop application for downloading Udemy Courses. ![javascript_icon] 269 | 270 | ### Editors 271 | 272 | #### CSV 273 | - [TableTool](https://github.com/jakob/TableTool) - simple CSV editor for the macOS. ![objective_c_icon] 274 | 275 | #### JSON 276 | - [JSON-Splora](https://github.com/wellsjo/JSON-Splora) - GUI for editing, visualizing, and manipulating JSON data. ![javascript_icon] 277 | 278 | #### Markdown 279 | - [Gingko](https://github.com/gingko/client) - Tree-structured markdown editor for macOS, Windows, and Linux. ![elm_icon] 280 | - [MacDown](https://github.com/MacDownApp/macdown) - Markdown editor for macOS. ![objective_c_icon] 281 | - [Mark Text](https://github.com/marktext/marktext/) - Realtime preview markdown editor for macOS Windows and Linux. ![javascript_icon] 282 | - [Pine](https://github.com/lukakerr/Pine) - A modern MacOS markdown editor. ![swift_icon] 283 | - [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. ![cpp_icon] 284 | 285 | #### TeX 286 | - [Qilin Editor](https://github.com/qilin-editor/qilin-app) - Text editor for exact sciences with built-in KaTeX/AsciiMath support. ![javascript_icon] 287 | 288 | #### Text 289 | - [CotEditor](https://github.com/coteditor/CotEditor) - Lightweight Plain-Text Editor for macOS. ![swift_icon] 290 | - [MacVim](https://github.com/macvim-dev/macvim) - Text editor for macOS. ![c_icon] 291 | - [Noto](https://github.com/brunophilipe/noto) - Plain text editor for macOS with customizable themes. ![swift_icon] 292 | - [SubEthaEdit](https://github.com/subethaedit/SubEthaEdit) - General purpose plain text editor for macOS. Widely known for its live collaboration feature. ![objective_c_icon] 293 | - [TextMate](https://github.com/textmate/textmate) - TextMate is a graphical text editor for macOS. ![objective_c_icon] 294 | - [VimR](https://github.com/qvacua/vimr) - Refined Neovim experience for macOS. ![swift_icon] 295 | 296 | ### Extensions 297 | - [BetterPiP](https://github.com/Capevace/BetterPiP) - Use native picture-in-picture with browsers such as Google Chrome for HTML5 videos. ![swift_icon] 298 | - [Middleclick](https://github.com/DaFuqtor/MiddleClick-Catalina) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse ![c_icon] 299 | - [PageExtender](https://github.com/fphilipe/PageExtender.app) - Extend pages with your own CSS and JS files. ![swift_icon] ![javascript_icon] 300 | - [PiPTool](https://github.com/bfmatei/PiPTool) - Add the Picture-in-Picture Functionality to YouTube, Netflix, Plex and other video broadcasting services in macOS. ![javascript_icon] 301 | - [PiPifier](https://github.com/arnoappenzeller/PiPifier) - PiPifier is a native macOS 10.12 Safari extension that lets you use every HTML5 video in Picture in Picture mode. ![swift_icon] 302 | - [Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions ![swift_icon] 303 | - [nef](https://github.com/bow-swift/nef-plugin) - This Xcode extension enables you to make a code selection and export it to a snippets. Available on Mac AppStore. ![swift_icon] 304 | 305 | ### Finder 306 | - [Clipy](https://github.com/Clipy/Clipy) - Clipy is a Clipboard extension app for macOS. ![swift_icon] 307 | - [CopyQ](https://github.com/hluk/CopyQ) - Clipboard manager with advanced features ![cpp_icon] 308 | - [FiScript](https://github.com/Mortennn/FiScript) - Execute custom scripts from the MacOS context menu (CTRL+click) in Finder. ![swift_icon] 309 | - [Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder. ![swift_icon] 310 | - [OpenInCode](https://github.com/sozercan/OpenInCode) - Finder toolbar app to open current folder in Visual Studio Code. ![objective_c_icon] 311 | - [OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - ✨ Finder Toolbar app for macOS to open the current directory in Terminal, iTerm or Hyper. ![swift_icon] 312 | - [Quick Look plugins](https://github.com/sindresorhus/quick-look-plugins) - List of useful Quick Look plugins for developers. ![objective_c_icon] ![c_icon] 313 | - [cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal ![objective_c_icon] 314 | 315 | ### Games 316 | - [Battle for Wesnoth](https://github.com/wesnoth/wesnoth) - Turn-based tactical strategy game, featuring both single-player and online multiplayer combat. ![cpp_icon] 317 | - [Boxer](https://github.com/alunbestor/Boxer) - The DOS game emulator that’s fit for your Mac. ![cpp_icon] ![objective_c_icon] 318 | - [Dolphin](https://github.com/dolphin-emu/dolphin) - Powerful emulator for Nintendo GameCube and Wii games. ![cpp_icon] 319 | - [OpenEmu](https://github.com/OpenEmu/OpenEmu) - Retro video game emulation for macOS. ![objective_c_icon] 320 | - [OpenRCT2](https://github.com/OpenRCT2/OpenRCT2) - Re-implementation of RollerCoaster Tycoon 2. ![cpp_icon] 321 | - [Screentendo](https://github.com/AaronRandall/Screentendo) - Turn your screen into a playable level of Mario. ![objective_c_icon] 322 | - [Stockfish](https://github.com/daylen/stockfish-mac) - Beautiful, powerful chess application. ![cpp_icon] ![objective_c_icon] 323 | 324 | ### Graphics 325 | - [Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux). ![cpp_icon] ![c_icon] 326 | - [CaptuocrToy](https://github.com/gragrance/CaptuocrToy) - Tool to capture screenshot and recognize text by online ocr apis. ![swift_icon] 327 | - [GifCapture](https://github.com/onmyway133/GifCapture) - Gif capture app for macOS. ![swift_icon] 328 | - [Gifcurry](https://github.com/lettier/gifcurry) - Video to GIF maker with a graphical interface capable of cropping, adding text, seeking, and trimming. ![haskell_icon] 329 | - [Gifski](https://github.com/sindresorhus/Gifski) - Convert videos to high-quality GIFs. ![swift_icon] 330 | - [InfiniteCanvas](https://github.com/CleanCocoa/InfiniteCanvas) - Proof of concept Mac drawing application. ![swift_icon] 331 | - [Material Colors Native](https://github.com/BafS/Material-Colors-native) - Choose your Material colours and copy the hex code. ![objective_c_icon] 332 | - [Pencil2D Animation](https://github.com/pencil2d/pencil) - Pencil2D is an animation/drawing software for macOS, Windows, and Linux. It lets you create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics. ![cpp_icon] 333 | - [ScreenToLayers for macOS](https://github.com/duyquoc/ScreenToLayers) - ScreenToLayers is a macOS application to easily capture your screen as a layered PSD file. ![objective_c_icon] ![css_icon] 334 | - [macSVG](https://github.com/dsward2/macSVG) - macOS application for designing HTML5 SVG (Scalable Vector Graphics) art and animation with a WebKit web view. ![objective_c_icon] 335 | 336 | ### IDE 337 | - [Atom](https://github.com/atom/atom) - The hackable text editor. ![javascript_icon] 338 | - [LiveCode](https://github.com/livecode/livecode) - Cross-platform development IDE. ![c_icon] 339 | - [Oni](https://github.com/onivim/oni) - Oni is a modern take on modal editing code editor focused on developer productivity. ![javascript_icon] ![type_script_icon] 340 | - [Visual Studio Code](https://github.com/Microsoft/vscode) - Code editor developed by Microsoft. ![type_script_icon] 341 | - [ZeroBraneStudio](https://github.com/pkulchenko/ZeroBraneStudio) - ZeroBrane Studio is a lightweight cross-platform Lua IDE with code completion, syntax highlighting, remote debugger, code analyzer, live coding, and debugging support for various Lua engines. ![lua_icon] 342 | 343 | ### Images 344 | - [APNGb](https://github.com/shgodoroja/APNGb) - macOS app which assembles and disassembles animated png files. ![swift_icon] 345 | - [Crunch](https://github.com/chrissimpkins/Crunch) - Insane(ly slow but wicked good) PNG image optimization. ![python_icon] 346 | - [ExifCleaner](https://github.com/szTheory/exifcleaner) - Remove image metadata with drag and drop, multi-core batch processing, and dark mode. ![javascript_icon] 347 | - [Freehand](https://github.com/wddwycc/Freehand) - macOS Status Bar App for quick sketch. ![swift_icon] 348 | - [Gimp](https://github.com/GNOME/gimp) - Gimp is GNU Image Manipulation Program. ![c_icon] 349 | - [Iconology](https://github.com/liamrosenfeld/Iconology) - Edit Icons and then Export to Xcode, Icns, Ico, Favicon, Mac Iconset, or a Custom List of Sizes. ![swift_icon] 350 | - [ImageAlpha](https://github.com/kornelski/ImageAlpha) - Mac GUI for pngquant, pngnq and posterizer. ![objective_c_icon] ![python_icon] 351 | - [Imagine](https://github.com/meowtec/Imagine) - Imagine is a desktop app for compression of PNG and JPEG, with a modern and friendly UI. ![type_script_icon] 352 | - [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software ![python_icon] 353 | - [Katana](https://github.com/bluegill/katana) - Katana is a simple screenshot utility for macOS that lives in your menubar. ![javascript_icon] ![css_icon] 354 | - [PhotoMiner](https://github.com/gergelysanta/photominer) - macOS app for finding and lost forgotten photos on your disks. ![swift_icon] 355 | - [Screenbar](https://github.com/crilleengvall/Screenbar) - macOS menubar app for automating screenshots. ![swift_icon] 356 | - [WebPonize](https://github.com/1000ch/WebPonize) - WebPonize is a macOS App for converting PNG, JPEG, animated (or not) GIF images into WebP. ![swift_icon] ![c_icon] 357 | 358 | ### Keyboard 359 | - [AnnePro-mac](https://github.com/msvisser/AnnePro-mac) - macOS application for controlling AnnePro keyboard over bluetooth. ![swift_icon] 360 | - [Fluor](https://github.com/Pyroh/Fluor) - Handy tool for macOS allowing you to switch Fn keys' mode based on active application. ![swift_icon] 361 | - [GokuRakuJoudo](https://github.com/yqrashawn/GokuRakuJoudo) - Karabiner-Elements configuration manager, rescue to bloated karabiner.json ![clojure_icon] 362 | - [Karabiner](https://github.com/tekezo/Karabiner) - Karabiner (KeyRemap4MacBook) is a powerful utility for keyboard customization. ![cpp_icon] ![objective_c_icon] 363 | - [Karabiner-Elements](https://github.com/pqrs-org/Karabiner-Elements) - Karabiner-Elements is a powerful utility for keyboard customization on macOS Sierra (10.12) or later. ![cpp_icon] ![objective_c_icon] 364 | - [Kawa](https://github.com/utatti/kawa) - Better input source switcher for macOS. ![swift_icon] 365 | - [Thor](https://github.com/gbammc/Thor) - Switch the right application ASAP. ![swift_icon] 366 | - [Unshaky](https://github.com/aahung/Unshaky) - A software attempt to address the "double key press" issue on Apple's butterfly keyboard ![swift_icon] 367 | 368 | ### Mail 369 | - [Correo](https://github.com/amitmerchant1990/correo) - Menubar/taskbar Gmail App for Windows and macOS. ![javascript_icon] 370 | - [ElectronMail](https://github.com/vladimiry/ElectronMail) - Unofficial desktop app for ProtonMail and Tutanota end-to-end encrypted email providers. ![type_script_icon] 371 | - [Mailspring](https://github.com/Foundry376/Mailspring) - 💌 A beautiful, fast and maintained fork of @nylas Mail by one of the original authors ![javascript_icon] 372 | - [Rambox](https://github.com/ramboxapp/community-edition) - Cross Platform messaging and emailing app that combines common web applications into one. ![javascript_icon] ![css_icon] 373 | - [dejalu](https://github.com/dinhviethoa/dejalu) - Fast and Simple Email Client. ![cpp_icon] ![objective_c_icon] 374 | 375 | ### Medical 376 | - [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software ![python_icon] 377 | 378 | ### Menubar 379 | - [Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks. ![javascript_icon] 380 | - [AnyBar](https://github.com/tonsky/AnyBar) - macOS menubar status indicator. ![objective_c_icon] 381 | - [BitBar](https://github.com/matryer/bitbar) - Put the output from any script or program in your macOS Menu Bar. ![objective_c_icon] 382 | - [CloudyTabs](https://github.com/josh-/CloudyTabs) - Simple menu bar macOS application for displaying lists of your iCloud Tabs and Reading List. ![swift_icon] 383 | - [DatWeatherDoe](https://github.com/inderdhir/DatWeatherDoe) - Simple menu bar weather app for macOS written in Swift. ![swift_icon] 384 | - [DisplayMenu](https://github.com/Kwpolska/DisplayMenu) - Simple (bare-bones) macOS menubar extra to apply display presets. ![swift_icon] 385 | - [Dozer](https://github.com/Mortennn/Dozer) - Hide MacOS menubar items. ![swift_icon] 386 | - [KubeContext](https://github.com/turkenh/KubeContext) - import, manage and switch between your Kubernetes contexts on Mac. ![swift_icon] 387 | - [MenuMeters](https://github.com/yujitach/MenuMeters) - CPU, memory, disk, and network monitoring tools for macOS. ![objective_c_icon] 388 | - [Menubar Brightness](https://github.com/lucasbento/menubar-brightness) - macOS app to change the screen brightness on the menubar. ![javascript_icon] 389 | - [Music Bar](https://github.com/musa11971/Music-Bar/) - Music Bar is macOS application that places music controls right in your menu bar. ![swift_icon] 390 | - [Night Shift Control](https://github.com/isaiasmatewos/night-shift-control) - Night Shift Control is a simple macOS menubar app for controlling Night Shift. It's aim is to bring features from f.lux which are missing from Night Shift such as disabling Night Shift for certain apps. ![swift_icon] 391 | - [PSIBar](https://github.com/nikhilsh/PSIBar) - Quickly hacked up PSI macOS status bar app. ![swift_icon] 392 | - [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. ![swift_icon] 393 | - [Quickeys](https://github.com/alexrosenfeld10/Quickeys) - A mac menu bar app that provides note taking functionality though a quick dropdown menu. ![swift_icon] 394 | - [SensibleSideButtons](https://github.com/archagon/sensible-side-buttons) - Small menu bar utility that lets you use your third-party mouse's side buttons for navigation across a variety of apps. ![objective_c_icon] ![c_icon] 395 | - [Shifty](https://github.com/thompsonate/Shifty) - macOS menu bar app that gives you more control over Night Shift. ![swift_icon] 396 | - [gSwitch](https://github.com/CodySchrank/gSwitch) - macOS status bar app that allows control over the gpu on dual gpu macbooks. ![swift_icon] 397 | - [iGlance](https://github.com/iglance/iGlance) - macOS System Monitor (cpu, memory, network, fan and battery) for the Status Bar. ![swift_icon] 398 | 399 | ### Music 400 | - [Audacity](https://github.com/audacity/audacity) - Free, open source, cross-platform audio software ![c_icon] 401 | - [Carol](https://github.com/AnaghSharma/Carol) - A minimal and beautiful lyrics app that stays in the menu bar of macOS. ![c_sharp_icon] 402 | - [ChordDetector](https://github.com/cemolcay/ChordDetector) - Tiny menu bar app that listens iTunes and Spotify to detect chords of songs! ![swift_icon] 403 | - [DeezPlayer](https://github.com/imanel/deezplayer) - Deezer Desktop app for Windows, Linux and macOS. ![coffee_script_icon] 404 | - [Lilypond UI]() - Create beautiful musical scores with LilyPond. ![javascript_icon] 405 | - [Music Bar](https://github.com/musa11971/Music-Bar/) - Music Bar is macOS application that places music controls right in your menu bar. ![swift_icon] 406 | - [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. ![swift_icon] 407 | - [SoundCleod](https://github.com/salomvary/soundcleod) - SoundCloud for macOS and Windows. ![javascript_icon] 408 | - [Spotify-Cli-Mac](https://github.com/ersel/spotify-cli-mac) - Control Spotify without leaving your terminal. :notes: ![javascript_icon] 409 | - [YouTube-Music](https://github.com/steve228uk/YouTube-Music) - macOS wrapper for music.youtube.com. ![swift_icon] 410 | - [iTunes Graphs](https://github.com/Zac-Garby/iTunes-Graphs) - macOS app to visualise your iTunes library as graphs. ![swift_icon] 411 | - [lyricsify](https://github.com/mamal72/lyricsify-mac) - Simple Spotify lyrics viewer menu bar app for macOS in Swift. ![swift_icon] 412 | 413 | ### News 414 | - [Diurna](https://github.com/ngquerol/Diurna) - Basic/Classic Hacker News app, used as a Cocoa & Swift learning platform. ![swift_icon] 415 | - [NetNewsWire](https://github.com/Ranchero-Software/NetNewsWire) - Feed reader for macOS. ![swift_icon] 416 | - [Vienna](https://github.com/ViennaRSS/vienna-rss) - Vienna is a RSS/Atom newsreader for macOS. ![objective_c_icon] 417 | - [hacker-menu](https://github.com/jingweno/hacker-menu) - Hacker News Delivered to Desktop. ![javascript_icon] 418 | 419 | ### Notes 420 | - [Boostnote](https://github.com/BoostIO/Boostnote) - Note-taking application made for programmers just like you. ![javascript_icon] 421 | - [Dnote](https://github.com/dnote/dnote) - A simple command line notebook with multi-device sync and web interface. ![go_icon] ![type_script_icon] 422 | - [FSNotes](https://github.com/glushchenko/fsnotes) - Notes manager for macOS/iOS: modern notational velocity (nvALT) on steroids. ![swift_icon] 423 | - [FromScratch](https://github.com/Kilian/fromscratch) - Little app that you can use as a quick note taking or todo app. ![javascript_icon] ![css_icon] 424 | - [Jupyter Notebook Viewer](https://github.com/tuxu/nbviewer-app) - Notebook viewer for macOS. ![swift_icon] 425 | - [NoteTaker](https://github.com/insidegui/NoteTaker) - Simple note taking app for macOS and iOS which uses Realm and CloudKit for syncing. ![swift_icon] 426 | - [Notes](https://github.com/SauvageP/Notes) - Notes is a macOS application built to create notes, using text amongst other formats: images, videos, contacts, and etc. ![swift_icon] 427 | - [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. ![cpp_icon] 428 | - [Simplenote](https://github.com/Automattic/simplenote-macos) - Simplest way to keep notes. ![objective_c_icon] 429 | - [Standard Notes](https://github.com/standardnotes/web) - Safe place for your notes, thoughts, and life's work. ![javascript_icon] ![css_icon] 430 | - [Tusk](https://github.com/klaussinani/tusk) - Unofficial, third-party, community driven Evernote app with a handful of useful features. ![javascript_icon] ![css_icon] 431 | - [joplin](https://github.com/laurent22/joplin) - Note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS. ![javascript_icon] 432 | - [notable](https://github.com/jmcfarlane/notable) - Simple note taking application. ![javascript_icon] 433 | - [tmpNote](https://github.com/buddax2/tmpNote) - Very simple macOS app to make temporary notes. ![swift_icon] 434 | 435 | ### Other 436 | - [Cakebrew](https://github.com/brunophilipe/Cakebrew) - Manage your Homebrew formulas with style using Cakebrew. ![objective_c_icon] 437 | - [DevDocs for macOS](https://github.com/dteoh/devdocs-macos) - An unofficial DevDocs API documentation viewer. ![swift_icon] 438 | - [Gas Mask](https://github.com/2ndalpha/gasmask) - Hosts file manager for macOS. ![objective_c_icon] 439 | - [Hosts](https://github.com/specialunderwear/Hosts.prefpane) - Cocoa GUI for /etc/hosts. ![objective_c_icon] 440 | - [ImageOptim](https://github.com/ImageOptim/ImageOptim) - GUI image optimizer for Mac. ![objective_c_icon] 441 | - [Keyframes Player](https://github.com/insidegui/KeyframesPlayer) - Simple macOS app to preview animations created with Facebook's keyframes framework. ![swift_icon] 442 | - [Lepton](https://github.com/hackjutsu/Lepton) - Democratizing Code Snippets Management (macOS/Win/Linux). ![javascript_icon] 443 | - [Letters](https://github.com/klaaspieter/letters) - Teach your kids the alphabet and how to type. ![swift_icon] 444 | - [Platypus](https://github.com/sveinbjornt/Platypus) - Mac developer tool that creates application bundles from command line scripts. ![objective_c_icon] 445 | - [QorumLogs](https://github.com/goktugyil/QorumLogs) - Swift Logging Utility for Xcode & Google Docs. ![swift_icon] 446 | - [React Native Debugger](https://github.com/jhen0409/react-native-debugger) - Desktop app for inspecting your React Native projects. macOS, Linux, and Windows. ![javascript_icon] 447 | - [Reactotron](https://github.com/infinitered/reactotron) - Desktop app for inspecting your React JS and React Native projects. macOS, Linux, and Windows. ![javascript_icon] 448 | - [RktMachine](https://github.com/woofwoofinc/rktmachine) - Menu bar macOS app for running rkt in a macOS hypervisor CoreOS VM. ![swift_icon] 449 | - [Ruby.app](https://github.com/gosu/ruby-app) - macOS app that contains a full Ruby installation (for use with Ruby/Gosu). ![ruby_icon] 450 | - [Shuttle](https://github.com/fitztrev/shuttle) - Simple SSH shortcut menu for macOS. ![objective_c_icon] 451 | - [SwiftyBeaver](https://github.com/SwiftyBeaver/SwiftyBeaver) - Convenient logging during development & release in Swift. ![swift_icon] 452 | - [Unused](https://github.com/jeffhodnett/Unused) - Mac app for checking Xcode projects for unused resources. ![objective_c_icon] 453 | - [Vagrant Manager](https://github.com/lanayotech/vagrant-manager) - Manage your vagrant machines in one place with Vagrant Manager for macOS. ![objective_c_icon] 454 | - [macGist](https://github.com/Bunn/macGist) - Simple app to send pasteboard items to GitHub's Gist. ![swift_icon] 455 | - [syncthing-macosx](https://github.com/syncthing/syncthing-macos) - Frugal nativemacOS macOS Syncthing application bundle. ![objective_c_icon] 456 | 457 | ### Player 458 | - [IINA](https://github.com/iina/iina) - The modern video player for macOS. ![swift_icon] 459 | - [MPlayerX](https://github.com/niltsh/MPlayerX) - Media player on macOS. ![objective_c_icon] 460 | - [MacMorpheus](https://github.com/emoRaivis/MacMorpheus) - 3D 180/360 video player for macOS for PSVR with head tracking. ![objective_c_icon] 461 | - [Movie Monad](https://github.com/lettier/movie-monad) - Desktop video player built with Haskell that uses GStreamer and GTK+. ![haskell_icon] 462 | - [mpv](https://github.com/mpv-player/mpv) - Video player based on MPlayer/mplayer2. ![c_icon] 463 | 464 | ### Podcast 465 | - [Cumulonimbus](https://github.com/z-------------/CPod) - Simple, beautiful podcast app. ![javascript_icon] 466 | - [Doughnut](https://github.com/dyerc/Doughnut) - Podcast player and library for mac ![swift_icon] 467 | - [PodcastMenu](https://github.com/insidegui/PodcastMenu) - PodcastMenu is a simple app which puts [Overcast](https://overcast.fm/) on your Mac's menu bar so you can listen to your favorite podcasts while you work. ![swift_icon] 468 | - [Podlive for macOS](https://github.com/phranck/podlive-macos) - macOS client to listen to live streaming podcasts (only). It currently supports all livestreams broadcasting via Ultraschall with [Studio Link On Air](https://studio-link.de). ![objective_c_icon] 469 | - [mkchromecast](https://github.com/muammar/mkchromecast) - Cast macOS and Linux Audio/Video to your Google Cast and Sonos Devices. ![python_icon] 470 | 471 | ### Productivity 472 | - [Ao](https://github.com/klaussinani/ao) - Elegant Microsoft To-Do desktop app. ![javascript_icon] ![css_icon] 473 | - [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. ![swift_icon] 474 | - [Cerebro](https://github.com/KELiON/cerebro) - Cross-platform launcher app. ![javascript_icon] 475 | - [ClipMenu](https://github.com/naotaka/ClipMenu) - Clipboard manager for macOS. ![objective_c_icon] 476 | - [Clocker](https://github.com/n0shake/Clocker) - macOS app to plan and organize through timezones. ![objective_c_icon] 477 | - [ControlPlane](https://github.com/dustinrue/ControlPlane) - Automate running tasks based on where you are or what you do. ![objective_c_icon] 478 | - [Flycut](https://github.com/TermiT/flycut) - Clean and simple clipboard manager for developers. ![objective_c_icon] 479 | - [KeyHolder](https://github.com/Clipy/KeyHolder) - Record shortcuts in macOS, like Alfred.app. ![swift_icon] 480 | - [Kiwix](https://github.com/kiwix/apple) - Kiwix for iOS and macOS, build on Swift. ![swift_icon] 481 | - [Linked Ideas](https://github.com/fespinoza/LinkedIdeas) - macOS application to write down and connect ideas. ![swift_icon] 482 | - [Maccy](https://github.com/p0deje/Maccy) - Lightweight search-as-you-type clipboard manager. ![swift_icon] 483 | - [Manta](https://github.com/hql287/Manta) - Flexible invoicing desktop app with beautiful & customizable templates. ![javascript_icon] 484 | - [Middleclick](https://github.com/DaFuqtor/MiddleClick-Catalina) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse ![c_icon] 485 | - [PDF Archiver](https://github.com/PDF-Archiver/PDF-Archiver) - Nice tool for tagging and archiving tasks. ![swift_icon] 486 | - [Paperless Desktop](https://github.com/thomasbrueggemann/paperless-desktop) - Desktop app that uses the paperless API to manage your document scans. ![javascript_icon] 487 | - [Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium. ![javascript_icon] 488 | - [Pomodoro Cycle](https://github.com/jet8a/pomodoro-cycle-app) - Pomodoro Cycle for macOS ![type_script_icon] 489 | - [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. ![cpp_icon] 490 | - [Quicksilver](https://github.com/quicksilver/Quicksilver) - Quicksilver is a fast macOS productivity application that gives you the power to control your Mac quickly and elegantly. ![objective_c_icon] 491 | - [Quickwords](https://github.com/quickwords/quickwords) - Write anything in a matter of seconds. Create snippets that can substitute text, execute tedious tasks and more. ![javascript_icon] ![css_icon] 492 | - [SelfControl](https://github.com/SelfControlApp/selfcontrol) - macOS app to block your own access to distracting websites etc for a predetermined period of time. It can not be undone by the app or by a restart – you must wait for the timer to run out. ![objective_c_icon] 493 | - [Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions ![swift_icon] 494 | - [Speed Reader](https://github.com/LumingYin/SpeedReader) - Read faster with the power of silencing vocalization with SpeedReader. ![swift_icon] 495 | - [StickyNotes](https://github.com/LumingYin/StickyNotes) - A Windows 10-esque Sticky Notes app implemented in AppKit. ![swift_icon] 496 | - [Strategr](https://github.com/khrykin/StrategrDesktop) - No-fuss time management. ![cpp_icon] ![objective_c_icon] 497 | - [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. ![type_script_icon] ![javascript_icon] 498 | - [Thyme](https://github.com/joaomoreno/thyme) - The task timer for OS X. ![objective_c_icon] 499 | - [Timer](https://github.com/michaelvillar/timer-app) - Simple Timer app for Mac. ![swift_icon] 500 | - [Toggl Desktop]() - Toggl Desktop app for Windows, Mac and Linux. ![cpp_icon] 501 | - [TomatoBar](https://github.com/ivoronin/TomatoBar) - Pomodoro Technique Timer for macOS with Touch Bar support. ![swift_icon] 502 | - [TrelloApp](https://github.com/jlong/TrelloApp) - Unofficial wrapper application for Trello.com written in Swift. This is almost a "Hello World" for a site specific browser. ![swift_icon] 503 | - [Watson](https://github.com/TailorDev/Watson) - A CLI application for time tracking. ![python_icon] 504 | - [Whale](https://github.com/1000ch/whale) - Unofficial Trello app. ![javascript_icon] 505 | - [Yomu](https://github.com/sendyhalim/Yomu) - Manga reader app for macOS. ![swift_icon] 506 | - [espanso](https://github.com/federico-terzi/espanso) - Cross-platform Text Expander, a powerful replacement for Alfred Snippets ![rust_icon] 507 | - [macOrganizer](https://github.com/shubhambatra3019/macOrganizer) - macOS app for organizing files or removing unnecessary files. ![swift_icon] 508 | - [status-bar-todo](https://github.com/Onix-Systems/osx-status-bar-todo) - Simple macOS app to keep TODO-list in status bar. ![swift_icon] 509 | - [stretchly](https://github.com/hovancik/stretchly) - Cross-platform electron app that reminds you to take breaks when working with computer. ![javascript_icon] 510 | 511 | ### Screensaver 512 | - [Aerial](https://github.com/JohnCoates/Aerial) - Apple TV Aerial Screensaver for macOS. ![swift_icon] 513 | - [Image-As-Wallpaper](https://github.com/ved62/Image-As-Wallpaper) - Utility application helps with selection of images for using as desktop wallpaper or in screensaver on Mac computers. ![swift_icon] 514 | - [Irvue](https://github.com/leonspok/Irvue-Screensaver) - Screensaver for macOS. ![objective_c_icon] 515 | - [Life Saver](https://github.com/amiantos/lifesaver) - An abstract screensaver based on Conway's Game of Life implemented with SpriteKit ![swift_icon] 516 | - [MusaicFM](https://github.com/docterd/MusaicFM) - iTunes Screensaver Clone for Spotify and Last.fm ![objective_c_icon] 517 | - [Predator](https://github.com/vpeschenkov/Predator) - A predator-inspired clock screensaver for macOS ![swift_icon] 518 | - [The GitHub Matrix Screensaver](https://github.com/winterbe/github-matrix-screensaver) - The GitHub Matrix Screensaver for macOS. ![javascript_icon] 519 | 520 | ### Security 521 | - [Cloaker](https://github.com/spieglt/cloaker) - simple drag-and-drop, password-based file encryption. ![rust_icon] 522 | - [Cryptomator](https://github.com/cryptomator/cryptomator) - Multi-platform transparent client-side encryption of your files in the cloud. ![java_icon] 523 | - [LuLu](https://github.com/objective-see/LuLu) - LuLu is macOS firewall application that aims to block unauthorized (outgoing) network traffic. ![objective_c_icon] 524 | - [Swifty](https://github.com/swiftyapp/swifty) - Free and offline password manager. ![javascript_icon] 525 | - [stronghold](https://github.com/alichtman/stronghold) - Easily configure macOS security settings from the terminal. ![python_icon] 526 | 527 | ### Sharing Files 528 | - [Deluge](https://git.deluge-torrent.org/deluge) - Lightweight cross-platform BitTorrent client. ![python_icon] 529 | - [NitroShare](https://github.com/nitroshare/nitroshare-desktop) - Transferring files from one device to another ![cpp_icon] 530 | - [Rhea](https://github.com/timonus/Rhea) - macOS status bar app for quickly sharing files and URLs. ![objective_c_icon] 531 | - [Transmission](https://github.com/transmission/transmission) - Official Transmission BitTorrent client repository. ![objective_c_icon] ![c_icon] 532 | - [Tribler](https://github.com/Tribler/tribler) - Privacy enhanced BitTorrent client with P2P content discovery. ![python_icon] 533 | - [mac2imgur](https://github.com/mileswd/mac2imgur) - Simple Mac app designed to make uploading images and screenshots to Imgur quick and effortless. ![swift_icon] 534 | - [qBittorrent](https://github.com/qbittorrent/qBittorrent) - BitTorrent client in Qt. ![cpp_icon] 535 | 536 | ### Social Networking 537 | - [Caprine](https://github.com/sindresorhus/caprine#features) - Elegant Facebook Messenger desktop app. ![javascript_icon] ![css_icon] 538 | - [Goofy](https://github.com/danielbuechele/goofy) - Unofficial Facebook Messenger client. ![javascript_icon] 539 | - [Leviathan](https://github.com/Swiftodon/Leviathan) - Leviathan is a iOS and macOS client application for the Mastodon social network. ![swift_icon] 540 | - [Messenger](https://github.com/rsms/fb-mac-messenger) - macOS app wrapping Facebook's Messenger for desktop. ![objective_c_icon] 541 | - [Product Hunt](https://github.com/producthunt/producthunt-osx) - share and discover your favorite new products and applications. ![swift_icon] 542 | - [Quail](https://github.com/1000ch/quail) - Unofficial [esa](https://esa.io) app. ![javascript_icon] 543 | - [Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram Desktop App. ![javascript_icon] ![css_icon] 544 | - [Simpo](https://github.com/KeliCheng/Simpo) - macOS menubar app to post status quickly. ![ruby_icon] 545 | - [appear.in](https://github.com/vitorgalvao/appear.in) - Unofficial appear.in app. ![javascript_icon] 546 | 547 | ### Streaming 548 | - [Galeri](https://github.com/michealparks/galeri) - Perpetual artwork streaming app. ![javascript_icon] 549 | - [OBS Studio](https://github.com/obsproject/obs-studio) - Free and open source software for live streaming and screen recording. ![cpp_icon] 550 | 551 | ### System 552 | - [AppPolice](https://github.com/AppPolice/AppPolice) - App for macOS with a minimalistic UI which lets you quickly throttle down the CPU usage of any running process. ![objective_c_icon] 553 | - [Apple Juice](https://github.com/raphaelhanneken/apple-juice) - Advanced battery gauge for macOS. ![swift_icon] 554 | - [Clean-Me](https://github.com/Kevin-De-Koninck/Clean-Me) - Small macOS app that acts as a system cleaner (logs, cache, ...). ![swift_icon] 555 | - [Diagnostics](https://github.com/macmade/Diagnostics) - Diagnostics is an application displaying the diagnostic reports from applications on macOS. ![swift_icon] 556 | - [DisableMonitor](https://github.com/Eun/DisableMonitor) - Easily disable or enable a monitor on your Mac. ![objective_c_icon] 557 | - [EtreCheck](https://github.com/etresoft/EtreCheck) - EtreCheck is an easy-to-use macOS app to display important details of your system configuration and allow you to copy that information to the Clipboard. ![objective_c_icon] 558 | - [Fanny](https://github.com/DanielStormApps/Fanny) - Monitor your Mac's fan speed and CPU temperature from your Notification Center. ![objective_c_icon] 559 | - [HoRNDIS](https://github.com/jwise/HoRNDIS) - Android USB tethering driver for macOS. ![cpp_icon] 560 | - [Juice](https://github.com/brianmichel/Juice) - Make your battery information a bit more interesting. ![swift_icon] 561 | - [KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevents your Mac from going to sleep. ![objective_c_icon] 562 | - [Latest](https://github.com/mangerlahn/Latest) - Small utility app for macOS that makes sure you know about all the latest updates to the apps you use. ![swift_icon] 563 | - [Loading](https://github.com/BonzaiThePenguin/Loading) - Simple network activity monitor for macOS. ![objective_c_icon] 564 | - [Overkill](https://github.com/KrauseFx/overkill-for-mac) - Stop iTunes from opening when you connect your iPhone. ![swift_icon] 565 | - [ProfileCreator](https://github.com/ProfileCreator/ProfileCreator) - macOS Application to create standard or customized configuration profiles. ![objective_c_icon] 566 | - [Sloth](https://github.com/sveinbjornt/Sloth) - Sloth is an macOS application that displays a list of all open files and sockets in use by all running applications on your system. ![objective_c_icon] 567 | - [Turbo Boost Switcher](https://github.com/rugarciap/Turbo-Boost-Switcher) - Turbo Boost Switcher is a little application for Mac computers that allows to enable and/or disable the Turbo Boost feature. ![objective_c_icon] 568 | - [VerticalBar](https://github.com/DeromirNeves/VerticalBar) - macOS application to add a vertical bar to Dock. ![swift_icon] 569 | - [macOSLucidaGrande](https://github.com/LumingYin/macOSLucidaGrande) - A small utility to set Lucida Grande as your Mac's system UI font. ![objective_c_icon] 570 | 571 | ### Terminal 572 | - [Alacritty](https://github.com/alacritty/alacritty) - Cross-platform, GPU-accelerated terminal emulator. ![rust_icon] 573 | - [Bifrost](https://github.com/ishuah/bifrost) - A tiny terminal emulator for serial port communication (macOS/Linux). ![go_icon] 574 | - [Console](https://github.com/macmade/Console) - macOS console application. ![swift_icon] 575 | - [Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder. ![swift_icon] 576 | - [Hyper](https://github.com/zeit/hyper) - Terminal built on web technologies. ![javascript_icon] ![css_icon] 577 | - [Kitty](https://github.com/kovidgoyal/kitty) - Cross-platform, fast, feature full, GPU based terminal emulator. ![python_icon] ![c_icon] 578 | - [OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - ✨ Finder Toolbar app for macOS to open the current directory in Terminal, iTerm or Hyper. ![swift_icon] 579 | - [OpenTerminal](https://github.com/es-kumagai/OpenTerminal) - App for macOS that opens a new Finder window and changes the current directory to the folder launched by the app. ![swift_icon] 580 | - [Upterm](https://github.com/railsware/upterm) - A terminal emulator for the 21st century (formerly Black Screen). ![javascript_icon] 581 | - [cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal ![objective_c_icon] 582 | - [iTerm 2](https://github.com/gnachman/iTerm2) - Terminal emulator for macOS that does amazing things. ![objective_c_icon] 583 | - [wallpapper](https://github.com/mczachurski/wallpapper) - wallpapper is a console application for creating dynamic wallpapers for Mojave. ![swift_icon] 584 | 585 | ### Touch Bar 586 | - [Muse](https://github.com/xzzz9097/Muse) - Spotify controller with TouchBar support. ![swift_icon] 587 | - [MyTouchbarMyRules](https://github.com/toxblh/MTMR) - App to customize your Touch Bar as you want. ![swift_icon] 588 | - [Pock](https://github.com/pigigaldi/Pock) - Display macOS Dock in Touch Bar. ![swift_icon] 589 | - [Touch Bar Preview](https://github.com/touchbar/Touch-Bar-Preview) - Small application to display your designs on the Touch Bar of the new MacBook Pro. ![swift_icon] 590 | - [Touch Bar Simulator](https://github.com/sindresorhus/touch-bar-simulator) - Use the Touch Bar on any Mac. ![swift_icon] 591 | - [Touch Emoji](https://github.com/lessmess-dev/touch-emoji) - Emoji picker for MacBook Pro Touch Bar. ![swift_icon] 592 | 593 | ### Utilities 594 | - [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android ![swift_icon] 595 | - [ArchiveMounter](https://github.com/ivoronin/ArchiveMounter) - Mounts archives like disk images. ![swift_icon] 596 | - [BeardedSpice](https://github.com/beardedspice/beardedspice) - Control web based media players with the media keys found on Mac keyboards. ![objective_c_icon] 597 | - [Bitwarden](https://github.com/bitwarden/desktop) - Cross-platform password management solutions for individuals, teams, and business organizations. ![type_script_icon] 598 | - [Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Secure password manager for mac and other platforms. ![javascript_icon] 599 | - [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. ![swift_icon] 600 | - [Catch](https://github.com/mipstian/catch/) - Catch: Broadcatching made easy. ![swift_icon] 601 | - [Clear Clipboard Text Format](https://github.com/LumingYin/ClipboardClear) - Easily clear the format of your clipboard text with Clear Clipboard Text Format. ![objective_c_icon] 602 | - [CornerCal](https://github.com/ekreutz/CornerCal) - Simple, clean calendar and clock app for macOS. ![swift_icon] 603 | - [Crypter](https://github.com/HR/Crypter) - Crypter is an innovative, convenient and secure cross-platform crypto app that simplifies secure password generation and management by requiring you to only remember one bit, the MasterPass. ![javascript_icon] 604 | - [ECheck](https://github.com/josejuanqm/ECheck) - Small tool to validate epub files for macOS. ![swift_icon] 605 | - [Flying Carpet](https://github.com/spieglt/flyingcarpet) - cross-platform file transfer over ad-hoc wifi, like AirDrop but for Mac/Windows/Linux. ![go_icon] 606 | - [Funky](https://github.com/thecatalinstan/Funky) - Easily toggle the function key on your Mac on a per app basis. ![objective_c_icon] 607 | - [Gray](https://github.com/zenangst/Gray) - Pick between the light appearance and the dark appearance on a per-app basis with the click of a button ![swift_icon] 608 | - [Kap](https://github.com/wulkano/kap) - Screen recorder application built with web technology. ![javascript_icon] 609 | - [KeePassXC](https://github.com/keepassxreboot/keepassxc) - Cross-platform community-driven port of the Windows application "Keepass Password Safe" ![cpp_icon] 610 | - [KeeWeb](https://github.com/keeweb/keeweb) - Cross-platform password manager compatible with KeePass. ![javascript_icon] 611 | - [Kyapchar](https://github.com/vishaltelangre/Kyapchar) - Simple screen and microphone audio recorder for macOS. ![swift_icon] 612 | - [Life-Calendar](https://github.com/wvdk/Life-Calendar) - Life Calendar. ![swift_icon] 613 | - [Lunar](https://github.com/alin23/lunar) - Intelligent adaptive brightness for your external displays. ![swift_icon] 614 | - [MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client. ![javascript_icon] ![type_script_icon] 615 | - [MacPass](https://github.com/MacPass/MacPass) - Native macOS KeePass client. ![objective_c_icon] 616 | - [Maria](https://github.com/shincurry/Maria) - macOS native app/widget for aria2 download tool. ![swift_icon] 617 | - [Meme Maker](https://github.com/MemeMaker/Meme-Maker-Mac) - Meme Maker macOS application for meme creation. ![swift_icon] 618 | - [Middleclick](https://github.com/DaFuqtor/MiddleClick-Catalina) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse ![c_icon] 619 | - [Monolingual](https://github.com/IngmarStein/Monolingual) - Remove unnecessary language resources from macOS ![swift_icon] 620 | - [Mos](https://github.com/Caldis/Mos) - Smooth your mouse's scrolling and reverse the mouse scroll direction ![swift_icon] 621 | - [Music Bar](https://github.com/musa11971/Music-Bar/) - Music Bar is macOS application that places music controls right in your menu bar. ![swift_icon] 622 | - [Noti](https://github.com/jariz/Noti/) - Receive Android notifications on your mac (with PushBullet). ![swift_icon] 623 | - [Numi](https://github.com/nikolaeu/Numi) - A handy calculator with natural language parsing. ![javascript_icon] 624 | - [PB for Desktop](https://github.com/sidneys/pb-for-desktop) - Receive native push notifications on macOS, Windows and Linux. ![javascript_icon] 625 | - [Padlock](https://github.com/padloc/padloc) - A minimal, open source password manager for macOS. ![javascript_icon] 626 | - [PercentCalculator](https://github.com/cemolcay/PercentCalculator) - A menu bar application that calculates parcents. ![swift_icon] 627 | - [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. ![swift_icon] 628 | - [PowerShell](https://github.com/powershell/powershell) - PowerShell is a cross-platform automation and configuration tool/framework that works well with your existing tools. ![c_sharp_icon] 629 | - [ScreenCat](https://github.com/maxogden/screencat) - ScreenCat is a screen sharing + remote collaboration application. ![javascript_icon] ![css_icon] 630 | - [SlowQuitApps](https://github.com/dteoh/SlowQuitApps) - Add a global delay to Command-Q to stop accidental app quits. ![objective_c_icon] 631 | - [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. ![type_script_icon] ![javascript_icon] 632 | - [Telephone](https://github.com/64characters/Telephone) - SIP softphone for macOS. ![objective_c_icon] ![swift_icon] 633 | - [The Blockstack Browser](https://github.com/blockstack/blockstack-browser) - Blockstack is an internet for decentralized apps where users own their data. The Blockstack Browser allows you to explore the Blockstack internet. ![javascript_icon] 634 | - [The Unarchiver](https://bitbucket.org/kosovan/theunarchiver/src ) - The Unarchiver is an Objective-C application for uncompressing archive files. ![objective_c_icon] 635 | - [ToTheTop](https://github.com/zenangst/ToTheTop) - Small macOS application to help you scroll to the top. ![swift_icon] 636 | - [calibre](https://github.com/kovidgoyal/calibre) - cross platform e-book manager. ![python_icon] 637 | - [fselect](https://github.com/jhspetersson/fselect) - Command-line tool to search files with SQL syntax. ![rust_icon] 638 | - [homebrew-cask](https://github.com/Homebrew/homebrew-cask) - A CLI workflow for the administration of macOS applications distributed as binaries ![ruby_icon] 639 | - [iOScanX](https://github.com/alessiomaffeis/iOScanX) - Cocoa application for semi-automated iOS app analysis and evaluation. ![objective_c_icon] ![c_icon] 640 | - [mac-sound-fix](https://github.com/dragstor/mac-sound-fix) - Mac Sound Re-Enabler. ![swift_icon] 641 | - [wechsel](https://github.com/friedrichweise/wechsel) - manage bluetooth connections with your keyboard. ![swift_icon] 642 | - [Übersicht](https://github.com/felixhageloh/uebersicht) - Keep an eye on what's happening on your machine and in the world. ![objective_c_icon] 643 | 644 | ### VPN & Proxy 645 | - [ShadowsocksX-NG](https://github.com/shadowsocks/ShadowsocksX-NG) - Next Generation of ShadowsocksX. ![swift_icon] 646 | - [Specht](https://github.com/zhuhaow/Specht) - Rule-based proxy app built with Network Extension for macOS. ![swift_icon] 647 | - [SpechtLite](https://github.com/zhuhaow/SpechtLite) - Rule-based proxy app for macOS. ![swift_icon] 648 | - [Tunnelblick](https://github.com/Tunnelblick/Tunnelblick) - Tunnelblick is a graphic user interface for OpenVPN on macOS. ![objective_c_icon] 649 | - [clashX](https://github.com/yichengchen/clashX) - A rule based custom proxy with GUI for Mac base on clash. ![swift_icon] 650 | - [rvc-mac](https://github.com/riboseinc/cryptode-mac) - Ribose VPN Client macOS Menu App. ![swift_icon] 651 | 652 | ### Video 653 | - [Acid.Cam.v2.OSX](https://github.com/lostjared/Acid.Cam.v2.OSX) - Acid Cam v2 for macOS distorts video to create art. ![cpp_icon] 654 | - [AppleEvents](https://github.com/insidegui/AppleEvents) - Unofficial Apple Events app for macOS. ![objective_c_icon] 655 | - [Conferences.digital](https://github.com/zagahr/Conferences.digital) - Best way to watch the latest and greatest videos from your favourite developer conferences for free on your Mac. ![swift_icon] 656 | - [Datamosh](https://github.com/maelswarm/Datamosh) - Datamosh your videos on macOS. ![swift_icon] 657 | - [Face Data](https://github.com/xiaohk/FaceData) - macOS application used to auto-annotate landmarks from a video. ![swift_icon] 658 | - [GNU Gatekeeper](https://github.com/willamowius/gnugk) - Video conferencing server for H.323 terminals. ![cpp_icon] 659 | - [Gifted](https://github.com/vdel26/gifted) - Turn any short video into an animated GIF quickly and easily. ![objective_c_icon] 660 | - [HandBrake](https://github.com/HandBrake/HandBrake) - HandBrake is a video transcoder available for Linux, Mac, and Windows. ![c_icon] 661 | - [MenuTube](https://github.com/edanchenkov/MenuTube) - Catch YouTube into your macOS menu bar! ![javascript_icon] 662 | - [OpenShot](https://github.com/OpenShot/openshot-qt) - Easy to use, quick to learn, and surprisingly powerful video editor. ![python_icon] 663 | - [Quick Caption](https://github.com/LumingYin/Caption) - Transcribe and generate caption files (SRT, ASS and FCPXML) without manually entering time codes. ![swift_icon] 664 | - [QuickLook Video](https://github.com/Marginal/QLVideo) - This package allows macOS Finder to display thumbnails, static QuickLook previews, cover art and metadata for most types of video files. ![objective_c_icon] 665 | - [Subler](https://bitbucket.org/galad87/subler/src) - Subler is an macOS app created to mux and tag mp4 files. ![objective_c_icon] 666 | - [VLC](https://github.com/videolan/vlc) - VLC is a free and open source cross-platform multimedia player ![c_icon] 667 | - [Vid Quiz Creator](https://github.com/sahil-a/vidquizcreator) - macOS application to insert quizzes within video playback and play those videos to receiving devices using the LISNR API. ![swift_icon] 668 | - [WebTorrent Desktop](https://github.com/webtorrent/webtorrent-desktop) - Streaming torrent app. For Mac, Windows, and Linux. ![javascript_icon] 669 | - [Yoda](https://github.com/whoisandy/yoda) - Nifty macOS application which enables you to browse and download videos from YouTube. ![javascript_icon] 670 | 671 | ### Wallpaper 672 | - [500-mac-wallpaper](https://github.com/cuddlecheek/500-mac-wallpaper) - Simple macOS app for the status bar to automatically download photos from 500px.com to a local folder that can be set as a source of wallpapers. ![swift_icon] 673 | - [ArtWall](https://github.com/JustinFincher/ASWP-for-macOS) - ArtStation set as wallpapers from [artwork.rss](https://www.artstation.com). ![objective_c_icon] 674 | - [Artify](https://github.com/NghiaTranUIT/artify-macos) - A macOS application for bringing dedicatedly 18th century Arts to everyone ![swift_icon] 675 | - [BingPaper](https://github.com/pengsrc/BingPaper) - Use Bing daily photo as your wallpaper on macOS. ![swift_icon] 676 | - [Desktop Wallpaper Switcher](https://github.com/VioletGiraffe/desktop-wallpaper-switcher) - Win / Linux / macOS tool for managing and cycling desktop wallpapers. ![cpp_icon] 677 | - [Muzei](https://github.com/naman14/Muzei-macOS) - Muzei wallpaper app for macOS. ![swift_icon] 678 | - [Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper. ![swift_icon] 679 | - [Satellite Eyes](https://github.com/tomtaylor/satellite-eyes) - macOS app to automatically set your desktop wallpaper to the satellite view overhead. ![objective_c_icon] 680 | - [Sunscreen](https://github.com/davidcelis/Sunscreen) - Sunscreen is a fun, lightweight application that changes your desktop wallpaper based on sunrise and sunset. ![swift_icon] 681 | - [WallpaperMenu](https://github.com/diogosantos/WallpaperMenu) - macOS menubar application for navigation through beautiful pictures on the web and set them up as your desktop image. ![ruby_icon] 682 | - [earth-wallpapers](https://github.com/viatsko/earth-wallpapers) - Simple macOS menubar app which fetches latest photos from a subreddit. ![javascript_icon] 683 | - [pyDailyChanger](https://github.com/IngoHeimbach/pyDailyChanger) - pyDailyChanger is a program that changes your wallpaper daily. ![python_icon] 684 | 685 | ### Window Management 686 | - [Amethyst](https://github.com/ianyh/Amethyst) - Automatic tiling window manager for macOS. ![swift_icon] 687 | - [AppGrid](https://github.com/mjolnirapp/AppGrid) - Grid-based keyboard window manager for macOS. ![objective_c_icon] 688 | - [Desktop Profiles](https://github.com/mamiksik/Desktop-Profiles) - An innovative desktop/window manager for macOS ![swift_icon] 689 | - [Hammerspoon](https://github.com/Hammerspoon/hammerspoon) - Staggeringly powerful macOS desktop automation with Lua. ![lua_icon] ![objective_c_icon] 690 | - [Phoenix](https://github.com/kasper/phoenix) - Lightweight macOS window and app manager scriptable with JavaScript. ![objective_c_icon] 691 | - [Rectangle](https://github.com/rxhanson/Rectangle) - Rectangle is a window manager heavily based on Spectacle, written in Swift. ![swift_icon] 692 | - [ShiftIt](https://github.com/fikovnik/ShiftIt) - Managing windows size and position. ![objective_c_icon] 693 | - [Slate](https://github.com/jigish/slate) - Window management application (replacement for Divvy/SizeUp/ShiftIt). ![objective_c_icon] 694 | - [Spectacle](https://github.com/eczarny/spectacle) - Spectacle allows you to organize your windows without using a mouse. ![objective_c_icon] 695 | - [chunkwm](https://github.com/koekeishiya/chunkwm) - Tiling window manager for macOS that uses a plugin architecture. ![cpp_icon] 696 | 697 | ## Contributors 698 | 699 | Thanks to all the people who contribute: 700 | 701 | 702 | 703 | [app_store]: ./icons/app_store-16.png 'App Store.' 704 | [c_icon]: ./icons/c-16.png 'C language.' 705 | [cpp_icon]: ./icons/cpp-16.png 'C++ language.' 706 | [c_sharp_icon]: ./icons/csharp-16.png 'C# Language' 707 | [clojure_icon]: ./icons/clojure-16.png 'Clojure Language' 708 | [coffee_script_icon]: ./icons/coffeescript-16.png 'CoffeeScript language.' 709 | [css_icon]: ./icons/css-16.png 'CSS language.' 710 | [go_icon]: ./icons/golang-16.png 'Go language.' 711 | [elm_icon]: ./icons/elm-16.png 'Elm Language' 712 | [haskell_icon]: ./icons/haskell-16.png 'Haskell language.' 713 | [java_icon]: ./icons/java-16.png 'Java language.' 714 | [javascript_icon]: ./icons/javascript-16.png 'JavaScript language.' 715 | [lua_icon]: ./icons/Lua-16.png 'Lua language.' 716 | [objective_c_icon]: ./icons/objective-c-16.png 'Objective-C language.' 717 | [python_icon]: ./icons/python-16.png 'Python language.' 718 | [ruby_icon]: ./icons/ruby-16.png 'Ruby language.' 719 | [rust_icon]: ./icons/rust-16.png 'Rust language.' 720 | [swift_icon]: ./icons/swift-16.png 'Swift language.' 721 | [type_script_icon]: ./icons/typescript-16.png 'TypeScript language.' -------------------------------------------------------------------------------- /categories.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories": 3 | [ 4 | { 5 | "title": "Audio", 6 | "id": "audio", 7 | "description": "" 8 | }, { 9 | "title": "Backup", 10 | "id": "backup", 11 | "description": "" 12 | }, { 13 | "title": "Browser", 14 | "id": "browser", 15 | "description": "" 16 | }, { 17 | "title": "Chat", 18 | "id": "chat", 19 | "description": "" 20 | }, { 21 | "title": "Cryptocurrency", 22 | "id": "cryptocurrency", 23 | "description": "" 24 | }, { 25 | "title": "Database", 26 | "id": "database", 27 | "description": "" 28 | }, { 29 | "title": "Development", 30 | "id": "development", 31 | "description": "" 32 | }, { 33 | "title": "Downloader", 34 | "id": "downloader", 35 | "description": "" 36 | }, { 37 | "title": "Editors", 38 | "id": "editors", 39 | "description": "" 40 | }, { 41 | "title": "Extensions", 42 | "id": "extensions", 43 | "description": "" 44 | }, { 45 | "title": "Finder", 46 | "id": "finder", 47 | "description": "" 48 | }, { 49 | "title": "Games", 50 | "id": "games", 51 | "description": "" 52 | }, { 53 | "title": "Graphics", 54 | "id": "graphics", 55 | "description": "" 56 | }, { 57 | "title": "IDE", 58 | "id": "ide", 59 | "description": "" 60 | }, { 61 | "title": "Images", 62 | "id": "images", 63 | "description": "" 64 | }, { 65 | "title": "Keyboard", 66 | "id": "keyboard", 67 | "description": "" 68 | }, { 69 | "title": "Mail", 70 | "id": "mail", 71 | "description": "" 72 | }, { 73 | "title": "Medical", 74 | "id": "medical", 75 | "description": "" 76 | }, { 77 | "title": "Menubar", 78 | "id": "menubar", 79 | "description": "" 80 | }, { 81 | "title": "Music", 82 | "id": "music", 83 | "description": "" 84 | }, { 85 | "title": "News", 86 | "id": "news", 87 | "description": "" 88 | }, { 89 | "title": "Notes", 90 | "id": "notes", 91 | "description": "" 92 | }, { 93 | "title": "Other", 94 | "id": "other", 95 | "description": "" 96 | }, { 97 | "title": "Player", 98 | "id": "player", 99 | "description": "" 100 | }, { 101 | "title": "Podcast", 102 | "id": "podcast", 103 | "description": "" 104 | }, { 105 | "title": "Productivity", 106 | "id": "productivity", 107 | "description": "" 108 | }, { 109 | "title": "Screensaver", 110 | "id": "screensaver", 111 | "description": "" 112 | }, { 113 | "title": "Security", 114 | "id": "security", 115 | "description": "" 116 | }, { 117 | "title": "Sharing Files", 118 | "id": "sharing-files", 119 | "description": "" 120 | }, { 121 | "title": "Social Networking", 122 | "id": "social-networking", 123 | "description": "" 124 | }, { 125 | "title": "Streaming", 126 | "id": "streaming", 127 | "description": "" 128 | }, { 129 | "title": "System", 130 | "id": "system", 131 | "description": "" 132 | }, { 133 | "title": "Terminal", 134 | "id": "terminal", 135 | "description": "" 136 | }, { 137 | "title": "Touch Bar", 138 | "id": "touch-bar", 139 | "description": "" 140 | }, { 141 | "title": "Utilities", 142 | "id": "utilities", 143 | "description": "" 144 | }, { 145 | "title": "VPN & Proxy", 146 | "id": "vpn--proxy", 147 | "description": "" 148 | }, { 149 | "title": "Video", 150 | "id": "video", 151 | "description": "" 152 | }, { 153 | "title": "Wallpaper", 154 | "id": "wallpaper", 155 | "description": "" 156 | }, { 157 | "title": "Window Management", 158 | "id": "window-management", 159 | "description": "" 160 | }, { 161 | "title": "Git", 162 | "id": "git", 163 | "parent": "development", 164 | "description": "" 165 | }, { 166 | "title": "iOS / macOS", 167 | "id": "ios--macos", 168 | "parent": "development", 169 | "description": "" 170 | }, { 171 | "title": "JSON Parsing", 172 | "id": "json-parsing", 173 | "parent": "development", 174 | "description": "" 175 | }, { 176 | "title": "Web Development", 177 | "id": "web-development", 178 | "parent": "development", 179 | "description": "" 180 | }, { 181 | "title": "Other Development", 182 | "id": "other-development", 183 | "parent": "development", 184 | "description": "" 185 | }, { 186 | "title": "CSV", 187 | "id": "csv", 188 | "parent": "editors", 189 | "description": "" 190 | }, { 191 | "title": "JSON", 192 | "id": "json", 193 | "parent": "editors", 194 | "description": "" 195 | }, { 196 | "title": "Markdown", 197 | "id": "markdown", 198 | "parent": "editors", 199 | "description": "" 200 | }, { 201 | "title": "TeX", 202 | "id": "tex", 203 | "parent": "editors", 204 | "description": "" 205 | }, { 206 | "title": "Text", 207 | "id": "text", 208 | "parent": "editors", 209 | "description": "" 210 | } 211 | ] 212 | } 213 | -------------------------------------------------------------------------------- /icons/Lua-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/Lua-16.png -------------------------------------------------------------------------------- /icons/Lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/Lua.png -------------------------------------------------------------------------------- /icons/Objective-c-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/Objective-c-logo.png -------------------------------------------------------------------------------- /icons/app_store-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/app_store-16.png -------------------------------------------------------------------------------- /icons/app_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/app_store.png -------------------------------------------------------------------------------- /icons/c-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/c-16.png -------------------------------------------------------------------------------- /icons/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/c.png -------------------------------------------------------------------------------- /icons/clojure-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/clojure-16.png -------------------------------------------------------------------------------- /icons/clojure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/clojure.png -------------------------------------------------------------------------------- /icons/coffeescript-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/coffeescript-16.png -------------------------------------------------------------------------------- /icons/coffeescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/coffeescript.png -------------------------------------------------------------------------------- /icons/cpp-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/cpp-16.png -------------------------------------------------------------------------------- /icons/cpp-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/cpp-256.png -------------------------------------------------------------------------------- /icons/csharp-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/csharp-16.png -------------------------------------------------------------------------------- /icons/csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/csharp.png -------------------------------------------------------------------------------- /icons/css-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/css-16.png -------------------------------------------------------------------------------- /icons/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/css.png -------------------------------------------------------------------------------- /icons/elm-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/elm-16.png -------------------------------------------------------------------------------- /icons/elm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/elm.png -------------------------------------------------------------------------------- /icons/golang-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/golang-16.png -------------------------------------------------------------------------------- /icons/golang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/golang.png -------------------------------------------------------------------------------- /icons/haskell-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/haskell-16.png -------------------------------------------------------------------------------- /icons/haskell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/haskell.png -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/icon.png -------------------------------------------------------------------------------- /icons/java-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/java-16.png -------------------------------------------------------------------------------- /icons/java-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/java-512.png -------------------------------------------------------------------------------- /icons/javascript-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/javascript-16.png -------------------------------------------------------------------------------- /icons/javascript-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/javascript-512.png -------------------------------------------------------------------------------- /icons/javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/javascript.png -------------------------------------------------------------------------------- /icons/objective-c-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/objective-c-16.png -------------------------------------------------------------------------------- /icons/objective-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/objective-c.png -------------------------------------------------------------------------------- /icons/objective-c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/objective-c1.png -------------------------------------------------------------------------------- /icons/objective_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/objective_c.png -------------------------------------------------------------------------------- /icons/python-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/python-16.png -------------------------------------------------------------------------------- /icons/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/python.png -------------------------------------------------------------------------------- /icons/ruby-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/ruby-16.png -------------------------------------------------------------------------------- /icons/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/ruby.png -------------------------------------------------------------------------------- /icons/rust-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/rust-16.png -------------------------------------------------------------------------------- /icons/rust-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/rust-512.png -------------------------------------------------------------------------------- /icons/swift-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/swift-16.png -------------------------------------------------------------------------------- /icons/swift-1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/swift-1600.png -------------------------------------------------------------------------------- /icons/swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/swift.png -------------------------------------------------------------------------------- /icons/typescript-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/typescript-16.png -------------------------------------------------------------------------------- /icons/typescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywinder/open-source-mac-os-apps/615ef202ab637a39cb4296ff0e746fd37f3c61fb/icons/typescript.png --------------------------------------------------------------------------------