Repository: serhii-londar/open-source-mac-os-apps Branch: master Commit: 3e827081c0a7 Files: 23 Total size: 1.3 MB Directory structure: gitextract_g1_1gsix/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ReadmeGenerator.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata/ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata/ │ │ │ └── serhii-londar.xcuserdatad/ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── ReadmeGenerator.xcscheme │ │ └── xcuserdata/ │ │ └── serhii-londar.xcuserdatad/ │ │ └── xcschemes/ │ │ └── xcschememanagement.plist │ ├── main.swift │ └── workflows/ │ ├── main.yml │ └── pr.yml ├── .gitignore ├── .vscode/ │ └── settings.json ├── CONTRIBUTING.md ├── Dangerfile ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── api.json ├── applications.json ├── buildServer.json └── categories.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitattributes ================================================ Dangerfile linguist-documentation README.md merge=union ================================================ FILE: .github/FUNDING.yml ================================================ # These are supported funding model platforms # github: serhii-londar patreon: serhiilondar open_collective: open-source-mac-os-apps # Replace with a single Open Collective username ko_fi: # Replace with a single Ko-fi username tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry liberapay: # Replace with a single Liberapay username issuehunt: serhii-londar otechie: # Replace with a single Otechie username custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] ================================================ FILE: .github/ReadmeGenerator.xcodeproj/project.pbxproj ================================================ // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 50; objects = { /* Begin PBXBuildFile section */ E8FDFD7F226E769900FE80E7 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8FDFD7E226E769900FE80E7 /* main.swift */; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ E8FDFD70226E74F400FE80E7 /* CopyFiles */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = /usr/share/man/man1/; dstSubfolderSpec = 0; files = ( ); runOnlyForDeploymentPostprocessing = 1; }; /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ E8FDFD72226E74F400FE80E7 /* ReadmeGenerator */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ReadmeGenerator; sourceTree = BUILT_PRODUCTS_DIR; }; E8FDFD7E226E769900FE80E7 /* main.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = main.swift; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ E8FDFD6F226E74F400FE80E7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ E8FDFD69226E74F400FE80E7 = { isa = PBXGroup; children = ( E8FDFD74226E74F400FE80E7 /* ReadmeGenerator */, E8FDFD73226E74F400FE80E7 /* Products */, ); sourceTree = ""; }; E8FDFD73226E74F400FE80E7 /* Products */ = { isa = PBXGroup; children = ( E8FDFD72226E74F400FE80E7 /* ReadmeGenerator */, ); name = Products; sourceTree = ""; }; E8FDFD74226E74F400FE80E7 /* ReadmeGenerator */ = { isa = PBXGroup; children = ( E8FDFD7E226E769900FE80E7 /* main.swift */, ); path = ReadmeGenerator; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ E8FDFD71226E74F400FE80E7 /* ReadmeGenerator */ = { isa = PBXNativeTarget; buildConfigurationList = E8FDFD79226E74F400FE80E7 /* Build configuration list for PBXNativeTarget "ReadmeGenerator" */; buildPhases = ( E8FDFD6E226E74F400FE80E7 /* Sources */, E8FDFD6F226E74F400FE80E7 /* Frameworks */, E8FDFD70226E74F400FE80E7 /* CopyFiles */, ); buildRules = ( ); dependencies = ( ); name = ReadmeGenerator; productName = ReadmeGenerator; productReference = E8FDFD72226E74F400FE80E7 /* ReadmeGenerator */; productType = "com.apple.product-type.tool"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ E8FDFD6A226E74F400FE80E7 /* Project object */ = { isa = PBXProject; attributes = { LastSwiftUpdateCheck = 1020; LastUpgradeCheck = 1130; ORGANIZATIONNAME = "Serhii Londar"; TargetAttributes = { E8FDFD71226E74F400FE80E7 = { CreatedOnToolsVersion = 10.2.1; LastSwiftMigration = 1020; }; }; }; buildConfigurationList = E8FDFD6D226E74F400FE80E7 /* Build configuration list for PBXProject "ReadmeGenerator" */; compatibilityVersion = "Xcode 9.3"; developmentRegion = en; hasScannedForEncodings = 0; knownRegions = ( en, Base, ); mainGroup = E8FDFD69226E74F400FE80E7; productRefGroup = E8FDFD73226E74F400FE80E7 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( E8FDFD71226E74F400FE80E7 /* ReadmeGenerator */, ); }; /* End PBXProject section */ /* Begin PBXSourcesBuildPhase section */ E8FDFD6E226E74F400FE80E7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( E8FDFD7F226E769900FE80E7 /* main.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin XCBuildConfiguration section */ E8FDFD77226E74F400FE80E7 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_ENABLE_OBJC_WEAK = YES; CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_STRICT_PROTOTYPES = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGN_IDENTITY = "-"; COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; GCC_C_LANGUAGE_STANDARD = gnu11; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.14; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = macosx; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; }; name = Debug; }; E8FDFD78226E74F400FE80E7 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_ENABLE_OBJC_WEAK = YES; CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_STRICT_PROTOTYPES = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGN_IDENTITY = "-"; COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_C_LANGUAGE_STANDARD = gnu11; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.14; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; SDKROOT = macosx; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_OPTIMIZATION_LEVEL = "-O"; }; name = Release; }; E8FDFD7A226E74F400FE80E7 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", "@loader_path/../Frameworks", ); PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; }; name = Debug; }; E8FDFD7B226E74F400FE80E7 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", "@loader_path/../Frameworks", ); PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; }; name = Release; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ E8FDFD6D226E74F400FE80E7 /* Build configuration list for PBXProject "ReadmeGenerator" */ = { isa = XCConfigurationList; buildConfigurations = ( E8FDFD77226E74F400FE80E7 /* Debug */, E8FDFD78226E74F400FE80E7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; E8FDFD79226E74F400FE80E7 /* Build configuration list for PBXNativeTarget "ReadmeGenerator" */ = { isa = XCConfigurationList; buildConfigurations = ( E8FDFD7A226E74F400FE80E7 /* Debug */, E8FDFD7B226E74F400FE80E7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; rootObject = E8FDFD6A226E74F400FE80E7 /* Project object */; } ================================================ FILE: .github/ReadmeGenerator.xcodeproj/project.xcworkspace/contents.xcworkspacedata ================================================ ================================================ FILE: .github/ReadmeGenerator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist ================================================ IDEDidComputeMac32BitWarning ================================================ FILE: .github/ReadmeGenerator.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings ================================================ ================================================ FILE: .github/ReadmeGenerator.xcodeproj/project.xcworkspace/xcuserdata/serhii-londar.xcuserdatad/WorkspaceSettings.xcsettings ================================================ BuildLocationStyle UseAppPreferences CustomBuildIntermediatesPath Build/Intermediates.noindex CustomBuildLocationType RelativeToWorkspace CustomBuildProductsPath Build/Products CustomIndexStorePath Index/DataStore DerivedDataLocationStyle Default EnabledFullIndexStoreVisibility IssueFilterStyle ShowActiveSchemeOnly LiveSourceIssuesEnabled SharedBuildFolderName Build ================================================ FILE: .github/ReadmeGenerator.xcodeproj/xcshareddata/xcschemes/ReadmeGenerator.xcscheme ================================================ ================================================ FILE: .github/ReadmeGenerator.xcodeproj/xcuserdata/serhii-londar.xcuserdatad/xcschemes/xcschememanagement.plist ================================================ SchemeUserState ReadmeGenerator.xcscheme_^#shared#^_ orderHint 0 SuppressBuildableAutocreation E8FDFD71226E74F400FE80E7 primary ================================================ FILE: .github/main.swift ================================================ // // main.swift // ReadmeGenerator // // Created by Serhii Londar on 4/23/19. // Copyright © 2019 Serhii Londar. All rights reserved. // import Foundation // MARK: - Dynamic Header Generator func generateHeader(totalApps: Int, categoriesCount: Int, languageStats: [String: Int]) -> String { let dateFormatter = DateFormatter() dateFormatter.dateFormat = "MMMM d, yyyy" let lastUpdated = dateFormatter.string(from: Date()) // Get top 5 languages let topLanguages = languageStats.sorted { $0.value > $1.value }.prefix(5) let languagesSummary = topLanguages.map { "\($0.key): \($0.value)" }.joined(separator: " • ") return """
Stand With Ukraine

Awesome macOS Open Source Applications

A curated list of open source applications for macOS

Awesome Join the chat at gitter Telegram Channel

Total Apps Categories Last Updated

AudioBackupBrowserChatCryptoDatabaseDevEditorsGraphicsProductivityUtilities

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! To receive all new or popular applications you can join our [telegram channel](https://t.me/opensourcemacosapps). ## Support Hey friend! Help me out for a couple of :beers:! Patreon donate button ## 📊 Statistics | Metric | Count | |--------|-------| | 📱 Total Applications | \(totalApps) | | 📂 Categories | \(categoriesCount) | | 🔝 Top Languages | \(languagesSummary) | ## Languages You can see in which language an app is written. Currently there are following languages: | Language | Icon | |----------|------| | C | C | | C++ | C++ | | C# | C# | | Clojure | Clojure | | CoffeeScript | CoffeeScript | | CSS | CSS | | Elm | Elm | | Go | Go | | Haskell | Haskell | | Java | Java | | JavaScript | JavaScript | | Lua | Lua | | Objective-C | Objective-C | | Python | Python | | Ruby | Ruby | | Rust | Rust | | Shell | Shell | | Swift | Swift | | TypeScript | TypeScript | | Metal | Metal | ## Contents - [Audio](#audio) - [Backup](#backup) - [Browser](#browser) - [Chat](#chat) - [Cryptocurrency](#cryptocurrency) - [Database](#database) - [Development](#development) - [Git](#git) - [iOS / macOS](#ios--macos) - [JSON Parsing](#json-parsing) - [Web development](#web-development) - [Other development](#other-development) - [Downloader](#downloader) - [Editors](#editors) - [CSV](#csv) - [JSON](#json) - [Markdown](#markdown) - [TeX](#tex) - [Text](#text) - [Extensions](#extensions) - [Finder](#finder) - [Games](#games) - [Graphics](#graphics) - [IDE](#ide) - [Images](#images) - [Keyboard](#keyboard) - [Mail](#mail) - [Menubar](#menubar) - [Music](#music) - [News](#news) - [Notes](#notes) - [Other](#other) - [Podcast](#podcast) - [Productivity](#productivity) - [Screensaver](#screensaver) - [Security](#security) - [Sharing Files](#sharing-files) - [Social Networking](#social-networking) - [Streaming](#streaming) - [System](#system) - [Terminal](#terminal) - [Touch Bar](#touch-bar) - [Utilities](#utilities) - [VPN & Proxy](#vpn--proxy) - [Video](#video) - [Wallpaper](#wallpaper) - [Window Management](#window-management) ## Applications """ } let footer = """
⬆️ Back to Top
## Contributors Thanks to all the people who contribute: [app_store]: ./icons/app_store-64.png 'App Store.' [c_icon]: ./icons/c-64.png 'C language.' [cpp_icon]: ./icons/cpp-64.png 'C++ language.' [c_sharp_icon]: ./icons/csharp-64.png 'C# Language' [clojure_icon]: ./icons/clojure-64.png 'Clojure Language' [coffee_script_icon]: ./icons/coffeescript-64.png 'CoffeeScript language.' [css_icon]: ./icons/css-64.png 'CSS language.' [go_icon]: ./icons/golang-64.png 'Go language.' [elm_icon]: ./icons/elm-64.png 'Elm Language' [haskell_icon]: ./icons/haskell-64.png 'Haskell language.' [java_icon]: ./icons/java-64.png 'Java language.' [javascript_icon]: ./icons/javascript-64.png 'JavaScript language.' [lua_icon]: ./icons/Lua-64.png 'Lua language.' [metal_icon]: ./icons/metal-64.png 'Metal language.' [objective_c_icon]: ./icons/objective-c-64.png 'Objective-C language.' [python_icon]: ./icons/python-64.png 'Python language.' [ruby_icon]: ./icons/ruby-64.png 'Ruby language.' [rust_icon]: ./icons/rust-64.png 'Rust language.' [shell_icon]: ./icons/shell-64.png 'Shell language.' [swift_icon]: ./icons/swift-64.png 'Swift language.' [typescript_icon]: ./icons/typescript-64.png 'TypeScript language.' """ class JSONApplications: Codable { let applications: [JSONApplication] enum CodingKeys: String, CodingKey { case applications } init(applications: [JSONApplication]) { self.applications = applications } required public init(from decoder: Decoder) throws { let values = try decoder.container(keyedBy: CodingKeys.self) applications = try values.decodeIfPresent([JSONApplication].self, forKey: .applications) ?? [] } } class JSONApplication: Codable { var title: String var iconURL: String var repoURL: String var shortDescription: String var languages: [String] var screenshots: [String] var categories: [String] var officialSite: String // Optional metadata for richer README rendering var homebrewCask: String? var macOSVersion: String? // Minimum macOS version required var appStoreID: String? // Mac App Store ID for direct linking var deprecated: Bool? // Mark if app is no longer maintained enum CodingKeys: String, CodingKey { case title case iconURL = "icon_url" case repoURL = "repo_url" case shortDescription = "short_description" case languages case screenshots case categories case officialSite = "official_site" case homebrewCask = "homebrew_cask" case macOSVersion = "macos_version" case appStoreID = "app_store_id" case deprecated } init(title: String, iconURL: String, repoURL: String, shortDescription: String, languages: [String], screenshots: [String], categories: [String], officialSite: String, homebrewCask: String? = nil, macOSVersion: String? = nil, appStoreID: String? = nil, deprecated: Bool? = nil) { self.title = title self.iconURL = iconURL self.repoURL = repoURL self.shortDescription = shortDescription self.languages = languages self.screenshots = screenshots self.categories = categories self.officialSite = officialSite self.homebrewCask = homebrewCask self.macOSVersion = macOSVersion self.appStoreID = appStoreID self.deprecated = deprecated } } class Categories: Codable { let categories: [Category] init(categories: [Category]) { self.categories = categories } required public init(from decoder: Decoder) throws { let values = try decoder.container(keyedBy: CodingKeys.self) categories = try values.decodeIfPresent([Category].self, forKey: .categories) ?? [] } } class Category: Codable { let title, id, description: String let parent: String? init(title: String, id: String, description: String, parent: String?) { self.title = title self.id = id self.description = description self.parent = parent } } class ReadmeGenerator { var readmeString = String.empty func generateReadme() { print("Start") do { // get current file path: let thisFilePath:String = #file var url = URL(fileURLWithPath: thisFilePath) //cd ../ to the root folder: (delete `.github/main.swift` url = url.deletingLastPathComponent().deletingLastPathComponent() let applicationsUrl = url.appendingPathComponent(FilePaths.applications.rawValue) let applicationsData = try Data(contentsOf: applicationsUrl) let categoriesData = try Data(contentsOf: url.appendingPathComponent(FilePaths.categories.rawValue)) let jsonDecoder = JSONDecoder() let applicationsObject = try jsonDecoder.decode(JSONApplications.self, from: applicationsData) let categoriesObject = try jsonDecoder.decode(Categories.self, from: categoriesData) var categories = categoriesObject.categories let subcategories = categories.filter({ $0.parent != nil && !$0.parent!.isEmpty }) let applications = applicationsObject.applications // Validate applications let validApplications = applications.filter { app in let isValid = !app.title.isEmpty && !app.repoURL.isEmpty if !isValid { print("⚠️ Warning: Skipping invalid app - Title: '\(app.title)', URL: '\(app.repoURL)'") } return isValid } print("📊 Total apps: \(validApplications.count), Invalid/skipped: \(applications.count - validApplications.count)") // Calculate language statistics var languageStats: [String: Int] = [:] for app in validApplications { for lang in app.languages { let normalizedLang = normalizeLanguageName(lang) languageStats[normalizedLang, default: 0] += 1 } } for subcategory in subcategories { if let index = categories.lastIndex(where: { $0.parent != subcategory.id }) { categories.remove(at: index) } } categories = categories.sorted(by: { $0.title < $1.title }) // Generate header with statistics let header = generateHeader( totalApps: validApplications.count, categoriesCount: categories.count + subcategories.count, languageStats: languageStats ) readmeString.append(header) print("Start iteration....") for category in categories { // Add category header with emoji and count let categoryApps = validApplications.filter({ $0.categories.contains(category.id) }) let categoryCount = categoryApps.count let categoryEmoji = getCategoryEmoji(category.id) // Add explicit anchor for TOC linking let anchorId = generateAnchorId(category.title) readmeString.append(String.enter + "" + String.enter) readmeString.append(String.section + String.space + categoryEmoji + String.space + category.title + String.space + "(\(categoryCount))" + String.enter) var categoryApplications = categoryApps categoryApplications = categoryApplications.sorted(by: { $0.title.lowercased() < $1.title.lowercased() }) for application in categoryApplications { readmeString.append(application.markdownDescription()) readmeString.append(String.enter) } // Add "Back to Top" link at the end of each category readmeString.append("
⬆️ Back to Top
" + String.enter) var subcategories = subcategories.filter({ $0.parent == category.id }) guard subcategories.count > 0 else { continue } subcategories = subcategories.sorted(by: { $0.title < $1.title }) for subcategory in subcategories { // Add subcategory header with emoji and count let subcategoryApps = validApplications.filter({ $0.categories.contains(subcategory.id) }) let subcategoryCount = subcategoryApps.count let subcategoryEmoji = getCategoryEmoji(subcategory.id) // Add explicit anchor for TOC linking let subAnchorId = generateAnchorId(subcategory.title) readmeString.append(String.enter + "" + String.enter) readmeString.append(String.subsection + String.space + subcategoryEmoji + String.space + subcategory.title + String.space + "(\(subcategoryCount))" + String.enter) var categoryApplications = subcategoryApps categoryApplications = categoryApplications.sorted(by: { $0.title.lowercased() < $1.title.lowercased() }) for application in categoryApplications { readmeString.append(application.markdownDescription()) readmeString.append(String.enter) } // Add "Back to Top" link at the end of each subcategory readmeString.append("
⬆️ Back to Top
" + String.enter) } } print("Finish iteration...") readmeString.append(footer) try readmeString.data(using: .utf8)?.write(to: url.appendingPathComponent(FilePaths.readme.rawValue)) // Generate JSON API file for external consumers try generateAPIFile(applications: validApplications, categories: categoriesObject.categories, to: url) print("✅ Finish - Generated README.md and api.json") } catch { print("❌ Error: \(error)") } } // Generate a JSON API file for external consumers private func generateAPIFile(applications: [JSONApplication], categories: [Category], to baseURL: URL) throws { let apiData: [String: Any] = [ "generated_at": ISO8601DateFormatter().string(from: Date()), "total_apps": applications.count, "total_categories": categories.count, "apps_by_category": Dictionary(grouping: applications, by: { $0.categories.first ?? "other" }) .mapValues { $0.count } ] let jsonData = try JSONSerialization.data(withJSONObject: apiData, options: [.prettyPrinted, .sortedKeys]) try jsonData.write(to: baseURL.appendingPathComponent("api.json")) } } // Helper function to normalize language names for statistics func normalizeLanguageName(_ lang: String) -> String { switch lang.lowercased() { case "objective_c": return "Objective-C" case "cpp": return "C++" case "c_sharp": return "C#" case "coffee_script": return "CoffeeScript" default: return lang.capitalized } } // Helper function to generate GitHub-compatible anchor IDs from titles func generateAnchorId(_ title: String) -> String { return title.lowercased() .replacingOccurrences(of: " / ", with: "--") // Handle " / " like GitHub does .replacingOccurrences(of: "/", with: "-") .replacingOccurrences(of: " & ", with: "--") // Handle " & " like GitHub does .replacingOccurrences(of: "&", with: "-") .replacingOccurrences(of: " ", with: "-") } extension String { static let empty = "" static let space = " " static let enter = "\n" static let section = "###" static let subsection = "####" static let iconPrefix = "_icon" } extension JSONApplication { func markdownDescription() -> String { var markdownDescription = String.empty var languages: String = String.empty for lang in self.languages { languages.append(languageIconHTML(for: lang) + " ") } // Header line with a standard Markdown link so it's always clickable // Add deprecated indicator if the app is marked as deprecated let deprecatedIndicator = (self.deprecated ?? false) ? " ⚠️ **[Deprecated]**" : "" let macOSBadge = self.macOSVersion.map { " ![macOS \($0)+](https://img.shields.io/badge/macOS-\($0)%2B-blue)" } ?? "" markdownDescription.append("- [\(self.title)](\(self.repoURL))\(deprecatedIndicator)\(macOSBadge) - \(self.shortDescription)\n") let indent = " " // Badges are rendered directly under the title line for quick visibility let ownerRepo = githubOwnerRepo(from: self.repoURL) var badges = [String]() // App Store button if appStoreID is set or if officialSite points to App Store if let appStoreID = self.appStoreID, !appStoreID.isEmpty { let appStoreURL = "https://apps.apple.com/app/id\(appStoreID)" let appStoreButton = "App Store App Store" badges.append(appStoreButton) } else if isAppStoreURL(self.officialSite) { let appStoreButton = "App Store App Store" badges.append(appStoreButton) } // GitHub Releases badge if let (owner, repo) = ownerRepo { let releasesURL = "https://github.com/\(owner)/\(repo)/releases/latest" let releaseBadge = "Latest Release" badges.append(releaseBadge) // Stars badge let starsBadge = "GitHub stars" badges.append(starsBadge) // Last commit badge (automatic indicator of project activity/maintenance) let lastCommitBadge = "Last commit" badges.append(lastCommitBadge) // License badge let licenseBadge = "License" badges.append(licenseBadge) } // Homebrew availability badge if provided if let cask = self.homebrewCask, !cask.isEmpty { let brewURL = "https://formulae.brew.sh/cask/\(cask)" let brewBadge = "Homebrew cask" badges.append(brewBadge) } if !languages.isEmpty { markdownDescription.append("\n\(indent)**Languages:** \(languages)\n") } if !self.officialSite.isEmpty { let websitePrefix = languages.isEmpty ? "" : "\n" markdownDescription.append("\(websitePrefix)\(indent)**Website:** [\(self.officialSite)](\(self.officialSite))\n") } if badges.isEmpty == false { markdownDescription.append("\n\(indent)**Badges:** \(badges.joined(separator: "   "))\n") } // Collapsible screenshots to avoid eager image loading if self.screenshots.count > 0 { markdownDescription.append("\n" + indent + "
\n") markdownDescription.append(indent + "Screenshots\n") markdownDescription.append(indent + "

\n\n") // Limit to first 3 screenshots to reduce load time let limitedScreenshots = self.screenshots.count > 3 ? Array(self.screenshots.prefix(3)) : self.screenshots limitedScreenshots.forEach({ markdownDescription.append(" \n\n") }) // Add a note if there are more screenshots if self.screenshots.count > 3 { markdownDescription.append(" *(\(self.screenshots.count - 3) more screenshots available in the repository)*\n\n") } markdownDescription.append(indent + "

\n") markdownDescription.append(indent + "
\n") } return markdownDescription } } // Build HTML tags for language icons to ensure rendering inside HTML blocks private func languageIconHTML(for languageKey: String) -> String { struct LanguageIcon { let fileName: String; let label: String } let icons: [String: LanguageIcon] = [ "c": .init(fileName: "c-64.png", label: "C"), "cpp": .init(fileName: "cpp-64.png", label: "C++"), "c_sharp": .init(fileName: "csharp-64.png", label: "C#"), "clojure": .init(fileName: "clojure-64.png", label: "Clojure"), "coffee_script": .init(fileName: "coffeescript-64.png", label: "CoffeeScript"), "css": .init(fileName: "css-64.png", label: "CSS"), "elm": .init(fileName: "elm-64.png", label: "Elm"), "go": .init(fileName: "golang-64.png", label: "Go"), "haskell": .init(fileName: "haskell-64.png", label: "Haskell"), "java": .init(fileName: "java-64.png", label: "Java"), "javascript": .init(fileName: "javascript-64.png", label: "JavaScript"), "lua": .init(fileName: "Lua-64.png", label: "Lua"), "objective_c": .init(fileName: "objective-c-64.png", label: "Objective-C"), "python": .init(fileName: "python-64.png", label: "Python"), "ruby": .init(fileName: "ruby-64.png", label: "Ruby"), "rust": .init(fileName: "rust-64.png", label: "Rust"), "shell": .init(fileName: "shell-64.png", label: "Shell"), "swift": .init(fileName: "swift-64.png", label: "Swift"), "typescript": .init(fileName: "typescript-64.png", label: "TypeScript") ] let key = languageKey.lowercased() if let icon = icons[key] { return "\(icon.label) icon \(icon.label)" } else { return "\(languageKey)" } } // MARK: - Helpers private func githubOwnerRepo(from repoURL: String) -> (String, String)? { guard repoURL.contains("github.com") else { return nil } let parts = repoURL.split(separator: "/").map(String.init) guard let owner = parts.drop(while: { $0 != "github.com" }).dropFirst().first, let repoRaw = parts.drop(while: { $0 != "github.com" }).dropFirst(2).first else { return nil } let repo = repoRaw.replacingOccurrences(of: ".git", with: "") return (owner, repo) } private func isAppStoreURL(_ string: String) -> Bool { return string.contains("apps.apple.com") || string.contains("itunes.apple.com") } // Helper function to get emoji for categories func getCategoryEmoji(_ categoryId: String) -> String { switch categoryId { case "audio": return "🎵" case "backup": return "💾" case "browser": return "🌐" case "chat": return "💬" case "cryptocurrency": return "💰" case "database": return "🗄️" case "development": return "👨‍💻" case "downloader": return "⬇️" case "editors": return "📝" case "extensions": return "🧩" case "finder": return "🔍" case "games": return "🎮" case "graphics": return "🎨" case "ide": return "💻" case "images": return "🖼️" case "keyboard": return "⌨️" case "mail": return "📧" case "medical": return "🏥" case "menubar": return "📊" case "music": return "🎧" case "news": return "📰" case "notes": return "📔" case "other": return "📦" case "player": return "▶️" case "podcast": return "🎙️" case "productivity": return "⏱️" case "screensaver": return "🌙" case "security": return "🔒" case "sharing-files": return "📤" case "social-networking": return "👥" case "streaming": return "📡" case "system": return "⚙️" case "terminal": return "📺" case "touch-bar": return "🎚️" case "utilities": return "🛠️" case "video": return "🎬" case "vpn--proxy": return "🔐" case "wallpaper": return "🖥️" case "window-management": return "🪟" // Subcategories case "git": return "📦" case "ios--macos": return "📱" case "json-parsing": return "🔄" case "web-development": return "🌍" case "other-development": return "🔧" case "csv": return "📊" case "json": return "📋" case "markdown": return "📝" case "tex": return "📐" case "text": return "✏️" default: return "📦" } } enum FilePaths: String { case readme = "./README.md" case applications = "./applications.json" case categories = "./categories.json" } struct Constants { static let detailsBeginString = "
Screenshots

" static let detailsEndString = "

" static let srcLinePattern = "" static let startProcessString = "### Database" static let endProcessString = "### Development" static func regex(for type: String) -> String { return "\\((.+\\.\(type))" } static func regex1(for type: String) -> String { return "\\\"(.+\\.\(type))" } } ReadmeGenerator().generateReadme() ================================================ FILE: .github/workflows/main.yml ================================================ name: Generate Readme on: push: branches: - master jobs: generate-readme: runs-on: macos-latest steps: - uses: actions/checkout@v6 - run: swift ./.github/main.swift - run: git config user.name "serhii-londar" - run: git config user.email "serhii.londar@gmail.com" - run: git add README.md - run: git commit -m "Generate README" - run: git push --quiet "https://${API_TOKEN}@github.com/serhii-londar/open-source-mac-os-apps.git" master:master > /dev/null 2>&1 ================================================ FILE: .github/workflows/pr.yml ================================================ name: Check PR on: pull_request: branches: - master jobs: setup: runs-on: macos-latest steps: - run: gem install awesome_bot - run: gem install bundler - run: gem install danger - uses: actions/checkout@v6 - run: 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/ --allow 429 ================================================ FILE: .gitignore ================================================ .github/ReadmeGenerator.xcodeproj/project.xcworkspace/xcuserdata/serhii-londar.xcuserdatad/UserInterfaceState.xcuserstate .github/ReadmeGenerator.xcodeproj/xcuserdata/serhii-londar.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist ================================================ FILE: .vscode/settings.json ================================================ { "sweetpad.build.xcodeWorkspacePath": ".github/ReadmeGenerator.xcodeproj/project.xcworkspace" } ================================================ FILE: CONTRIBUTING.md ================================================ # Contribution Guidelines Please ensure your pull request adheres to the following guidelines: - Search previous suggestions before making a new one, as yours may be a duplicate. - Make an individual pull request for each suggestion. - 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). - Use the following format: ```json { "short_description": "Description of repository", "categories": [ "Application category 1", "Application category 2" ], "repo_url": "Link to repository", "title": "Name of application", "icon_url": "URL to application icon", "screenshots": [ "Screenshot url 1", "Screenshot url 2" ], "official_site": "Official site link", "languages": [ "Language name" ] } ``` - 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). - Keep descriptions short and simple, but descriptive. - End all descriptions with a full stop/period. - Check your spelling and grammar. - Make sure your text editor is set to remove trailing whitespace. #### Deleting Typical reasons for deleting a project: - Doesn't build in the current Xcode - No updates / no longer works - Deprecated - Lacks license #### Projects are ineligible if: - Lack recent commit - README is not clear or not written in English Your contributions are always welcome! Thank you for your suggestions! :smiley: ================================================ FILE: Dangerfile ================================================ # Ensure there is a summary for a pull request fail 'Please provide a summary in the Pull Request description' if github.pr_body.length < 5 # Warn when there are merge commits in the diff warn 'Please rebase to get rid of the merge commits in this Pull Request' if git.commits.any? { |c| c.message =~ /^Merge branch 'master'/ } # Warn if pull request is not updated warn 'Please update the Pull Request title to contain the library name' if github.pr_title.include? 'Update README.md' # Check links require 'json' results = File.read 'ab-results-applications.json-markdown-table.json' j = JSON.parse results if j['error']==true m = j['title'] m << ', a project collaborator will take care of these, thanks :)' warn m markdown j['message'] end ================================================ FILE: LICENSE ================================================ CC0 1.0 Universal Statement of Purpose The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; ii. moral rights retained by the original author(s) and/or performer(s); iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; v. rights protecting the extraction, dissemination, use and reuse of data in a Work; vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. 4. Limitations and Disclaimers. a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. For more information, please see ================================================ FILE: PULL_REQUEST_TEMPLATE.md ================================================ ## Project URL https://github.com/maxnd/mxMarkEdit ## Category markdown, text, editors ## Description mxMarkEdit is a free software for Mac for writing texts and todo items in Markdown format and easily exporting them to other formats with Pandoc. In each document, it’s available an Excel-like grid useful to manage various sets of data. Some Markdown markers are hidden, as the text that follows them or is contained within them is properly formatted. At the left of the text, there’s a list of the titles and todo items. By clicking on an item in this list, the cursor moves to the corresponding title or todo item. While moving the cursor in the text, the corresponding title or todo item is highlighted. The app has many functionalities and shortcuts to manage easily a document. ## Why it should be included to `Awesome macOS open source applications ` (optional) ## Checklist - [X] 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). - [X] Only one project/change is in this pull request - [X] Screenshots(s) added if any - [X] Has a commit from less than 2 years ago - [X] Has a **clear** README in English ================================================ FILE: README.md ================================================
Stand With Ukraine

Awesome macOS Open Source Applications

A curated list of open source applications for macOS

Awesome Join the chat at gitter Telegram Channel

Total Apps Categories Last Updated

AudioBackupBrowserChatCryptoDatabaseDevEditorsGraphicsProductivityUtilities

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! To receive all new or popular applications you can join our [telegram channel](https://t.me/opensourcemacosapps). ## Support Hey friend! Help me out for a couple of :beers:! Patreon donate button ## 📊 Statistics | Metric | Count | |--------|-------| | 📱 Total Applications | 689 | | 📂 Categories | 49 | | 🔝 Top Languages | Swift: 304 • Objective-C: 137 • Javascript: 113 • C++: 59 • Typescript: 42 | ## Languages You can see in which language an app is written. Currently there are following languages: | Language | Icon | |----------|------| | C | C | | C++ | C++ | | C# | C# | | Clojure | Clojure | | CoffeeScript | CoffeeScript | | CSS | CSS | | Elm | Elm | | Go | Go | | Haskell | Haskell | | Java | Java | | JavaScript | JavaScript | | Lua | Lua | | Objective-C | Objective-C | | Python | Python | | Ruby | Ruby | | Rust | Rust | | Shell | Shell | | Swift | Swift | | TypeScript | TypeScript | | Metal | Metal | ## Contents - [Audio](#audio) - [Backup](#backup) - [Browser](#browser) - [Chat](#chat) - [Cryptocurrency](#cryptocurrency) - [Database](#database) - [Development](#development) - [Git](#git) - [iOS / macOS](#ios--macos) - [JSON Parsing](#json-parsing) - [Web development](#web-development) - [Other development](#other-development) - [Downloader](#downloader) - [Editors](#editors) - [CSV](#csv) - [JSON](#json) - [Markdown](#markdown) - [TeX](#tex) - [Text](#text) - [Extensions](#extensions) - [Finder](#finder) - [Games](#games) - [Graphics](#graphics) - [IDE](#ide) - [Images](#images) - [Keyboard](#keyboard) - [Mail](#mail) - [Menubar](#menubar) - [Music](#music) - [News](#news) - [Notes](#notes) - [Other](#other) - [Podcast](#podcast) - [Productivity](#productivity) - [Screensaver](#screensaver) - [Security](#security) - [Sharing Files](#sharing-files) - [Social Networking](#social-networking) - [Streaming](#streaming) - [System](#system) - [Terminal](#terminal) - [Touch Bar](#touch-bar) - [Utilities](#utilities) - [VPN & Proxy](#vpn--proxy) - [Video](#video) - [Wallpaper](#wallpaper) - [Window Management](#window-management) ## Applications ### 🎵 Audio (39) - [[Un]MuteMic](https://github.com/CocoaHeadsBrasil/MuteUnmuteMic) - macOS app to mute & unmute the input volume of your microphone. Perfect for podcasters. **Languages:** Objective-C icon Objective-C C icon C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Audacity](https://github.com/audacity/audacity) - Free, open source, cross-platform audio software **Languages:** C icon C **Website:** [https://www.audacityteam.org/](https://www.audacityteam.org/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [AUHost](https://github.com/vgorloff/AUHost) - Application which hosts AudioUnits v3 using AVFoundation API. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Aural Player](https://github.com/kartik-venugopal/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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(5 more screenshots available in the repository)*

- [AutoMute](https://github.com/yonilevy/automute) - Automatically mute the sound when headphones disconnect / Mac awake from sleep. **Languages:** Objective-C icon Objective-C **Website:** [https://yoni.ninja/automute/](https://yoni.ninja/automute/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** C icon C **Badges:** Latest Release   GitHub stars   Last commit   License - [CAM](https://github.com/hanayik/CAM) - macOS camera recording using ffmpeg **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [Clementine](https://github.com/clementine-player/Clementine) - Clementine is a modern music player and library organizer for Windows, Linux and macOS. **Languages:** C++ icon C++ **Website:** [https://www.clementine-player.org/](https://www.clementine-player.org/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [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. **Languages:** Objective-C icon Objective-C **Website:** [https://cogx.org/](https://cogx.org/) - [eqMac2](https://github.com/bitgapp/eqMac) - System-Wide Equalizer for the Mac. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [fre:ac](https://github.com/enzo1982/freac) - The fre:ac audio converter project. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [jmc](https://github.com/jcm93/jmc) - jmc is new macOS media organizer. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [Karaoke Forever](https://github.com/bhj/KaraokeEternal) - Host awesome karaoke parties where everyone can queue songs from their phone's browser. Plays MP3+G and MP4 with WebGL visualizations. **Languages:** JavaScript icon JavaScript **Website:** [https://www.karaoke-eternal.com/](https://www.karaoke-eternal.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [LocalRadio](https://github.com/dsward2/LocalRadio) - LocalRadio is software for listening to "Software-Defined Radio" on your Mac and mobile devices. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding. **Languages:** JavaScript icon JavaScript **Website:** [https://mifi.no/losslesscut/](https://mifi.no/losslesscut/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [LyricGlow](https://github.com/ateymoori/lyricglow) - macOS application displaying synchronized lyrics with animated word-by-word glow effects for Spotify, Apple Music, and YouTube Music. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Lyricism](https://github.com/lyc2345/Lyricism) - macOS app to show you lyric what currently iTunes or Spotify is playing. **Languages:** Objective-C icon Objective-C Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [LyricsX](https://github.com/ddddxxx/LyricsX) - Lyrics for iTunes, Spotify and Vox. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys. **Languages:** Swift icon Swift Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Mous Player](https://github.com/bsdelf/mous) - Simple yet powerful audio player for BSD/Linux/macOS. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. **Languages:** C icon C **Website:** [https://mpv.io](https://mpv.io) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. **Languages:** Swift icon Swift **Website:** [https://www.plugformac.com/](https://www.plugformac.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Pulp](https://github.com/bazalp/pulp) - Audio Sample manager. **Languages:** Rust icon Rust TypeScript icon TypeScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Scope](https://github.com/billthefarmer/audiotools/tree/master/Scope/swift) - Audio Oscilloscope **Languages:** Swift icon Swift **Website:** [https://billthefarmer.github.io/audiotools/](https://billthefarmer.github.io/audiotools/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [shairport-sync](https://github.com/mikebrady/shairport-sync) - macOS/Linux/FreeBSD/OpenBSD Airplay audio receiver. **Languages:** C icon C C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License - [ShazamScrobbler](https://github.com/ShazamScrobbler/shazamscrobbler-macos) - Scrobble vinyl, radios, movies to Last.fm. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Sonora](https://github.com/sonoramac/Sonora) - Minimal, beautifully designed music player for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Spotify4BigSur](https://github.com/fabiusBile/Spotify4BigSur) - Spotify widget for Notification Center. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SpotMenu](https://github.com/kmikiy/SpotMenu) - Spotify and iTunes in your menu bar. **Languages:** Objective-C icon Objective-C Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SpotSpot](https://github.com/will-stone/SpotSpot) - Spotify mini-player for macOS. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [StargateDAW](https://github.com/stargatedaw/stargate) - An all-in-one digital audio workstation (DAW) and plugin suite **Languages:** C icon C Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(3 more screenshots available in the repository)*

- [Suohai](https://github.com/Sunnyyoung/Suohai) - Audio input/output source lock for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Tickeys](https://github.com/yingDev/Tickeys) - Instant audio feedback for typing. macOS version. **Languages:** Rust icon Rust **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Tuner](https://github.com/billthefarmer/ctuner) - Musical Instrument Tuner **Languages:** Swift icon Swift **Website:** [https://billthefarmer.github.io/ctuner/ ](https://billthefarmer.github.io/ctuner/ ) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [waveSDR](https://github.com/getoffmyhack/waveSDR) - macOS native desktop Software Defined Radio application using the RTL-SDR USB device. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 💾 Backup (6) - [backy](https://github.com/vdbsh/backy) - Tiny multiprocessing utility for file backups. **Languages:** Go icon Go **Badges:** Latest Release   GitHub stars   Last commit   License - [BorgBase/Vorta](https://github.com/borgbase) - Simple and Secure Offsite Backups **Languages:** Python icon Python **Website:** [https://www.borgbase.com/](https://www.borgbase.com/) - [Mackup](https://github.com/lra/mackup) - Keep your application settings in sync (macOS/Linux). **Languages:** Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License - [shallow-backup](https://github.com/alichtman/shallow-backup) - Easily create lightweight documentation of installed applications, dotfiles, and more. **Languages:** Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Syncalicious](https://github.com/zenangst/Syncalicious) - Keeping multiple macOS preferences in sync can be painful, but it shouldn't be. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [UrBackup](https://github.com/uroni/urbackup_backend) - UrBackup is Client/Server network backup for Windows, macOS and Linux. **Languages:** C++ icon C++ C icon C **Badges:** Latest Release   GitHub stars   Last commit   License ### 🌐 Browser (13) - [Beaker Browser](https://github.com/beakerbrowser/beaker) - Beaker is an experimental peer-to-peer Web browser. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Brave Browser](https://github.com/brave/brave-browser) - Brave browser for Desktop and Laptop computers running Windows, macOS, and Linux. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [browserosaurus](https://github.com/will-stone/browserosaurus) - macOS tool that prompts you to choose a browser when opening a link. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Chromium](https://chromium.googlesource.com/chromium/src/) - Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web. **Languages:** JavaScript icon JavaScript C++ icon C++ C icon C **Website:** [https://www.chromium.org/](https://www.chromium.org/) - [Finicky](https://github.com/johnste/finicky) - Always opens the right browser. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Firefox](https://hg.mozilla.org/mozilla-central/) - Fast, privacy aware browser from a non-profit. Runs on Windows, macOS and Linux. **Languages:** JavaScript icon JavaScript Rust icon Rust C++ icon C++ **Website:** [https://www.mozilla.org/en-US/firefox/browsers/](https://www.mozilla.org/en-US/firefox/browsers/) - [Helium](https://github.com/JadenGeller/Helium) - Floating browser window for macOS. **Languages:** Objective-C icon Objective-C Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Min Browser](https://github.com/minbrowser/min) - A fast and efficient minimal web browser. **Languages:** JavaScript icon JavaScript **Website:** [https://minbrowser.org](https://minbrowser.org) **Badges:** Latest Release   GitHub stars   Last commit   License - [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. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper. **Languages:** Swift icon Swift **Website:** [https://sindresorhus.com/plash](https://sindresorhus.com/plash) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [seb-mac](https://github.com/SafeExamBrowser/seb-mac) - Safe Exam Browser for macOS and iOS. **Languages:** C icon C **Badges:** Latest Release   GitHub stars   Last commit   License ### 💬 Chat (20) - [Adium](https://github.com/adium/adium) - Instant messaging application that can connect to XMPP (Jabber), IRC and more. **Languages:** C icon C **Website:** [https://adium.im/](https://adium.im/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Beagle IM](https://github.com/tigase/beagle-im) - Powerful XMPP client with support for file transfer, VoIP and end-to-end encryption. **Languages:** Swift icon Swift **Website:** [https://beagle.im/](https://beagle.im/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ChitChat](https://github.com/stonesam92/ChitChat) - Native Mac app wrapper for WhatsApp Web. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Electronic WeChat](https://github.com/geeeeeeeeek/electronic-wechat) - Better WeChat on macOS and Linux. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Element](https://github.com/vector-im/element-web) - Element is a collaboration app (currently Electron) for the [Matrix](https://matrix.org/) protocol. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Franz](https://github.com/meetfranz/franz) - Franz is messaging application for services like WhatsApp, Slack, Messenger and many more. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Google Allo for Desktop](https://github.com/kelyvin/Google-Allo-For-Desktop) - Native macOS & Windows desktop app for Google Allo. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [GroupMe](https://github.com/dcrousso/GroupMe) - Unofficial GroupMe App. **Languages:** JavaScript icon JavaScript CSS icon CSS **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MessagesHistoryBrowser](https://github.com/glaurent/MessagesHistoryBrowser) - macOS application to comfortably browse and search through your Messages.app history. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [RocketChat](https://github.com/RocketChat/Rocket.Chat.Electron) - Free open source chat system for teams. An alternative to Slack that can also be self hosted. **Languages:** JavaScript icon JavaScript **Website:** [https://www.rocket.chat/](https://www.rocket.chat/) **Badges:** Latest Release   GitHub stars   Last commit   License - [Seaglass](https://github.com/neilalexander/seaglass) - A truly native [Matrix](https://matrix.org/blog/home/) client for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Signal Desktop](https://github.com/signalapp/Signal-Desktop) - Electron app that links with your Signal Android or Signal iOS app. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Swiftcord](https://github.com/SwiftcordApp/Swiftcord) - Native Discord client built in Swift & SwiftUI. Light on your RAM and CPU. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Telegram](https://github.com/overtake/TelegramSwift) - Source code of Telegram for macOS on Swift. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Telegram Desktop](https://github.com/telegramdesktop/tdesktop) - Telegram Desktop messaging app. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Textual](https://github.com/Codeux-Software/Textual) - Textual is an IRC client for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [Thunderbird](https://hg.mozilla.org/mozilla-central) - Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client. **Languages:** C++ icon C++ JavaScript icon JavaScript Rust icon Rust **Website:** [https://www.thunderbird.net/en-US/](https://www.thunderbird.net/en-US/)
Screenshots

- [Torchat-Mac](https://github.com/javerous/TorChat-Mac) - TorChat for Mac is a macOS native and unofficial port of torchat. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [WhatsAppBar](https://github.com/aldychris/WhatsAppBar) - Send WhatsApp message from menu bar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Wire Desktop](https://github.com/wireapp/wire-desktop) - Standalone Electron app for the chatapp Wire. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License ### 💰 Cryptocurrency (5) - [Bitcoin Core](https://github.com/bitcoin/bitcoin) - Official Bitcoin Core software for running a full Bitcoin node. **Languages:** C++ Python icon Python Shell icon Shell **Website:** [https://bitcoincore.org/](https://bitcoincore.org/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [CoinBar](https://github.com/adamwaite/CoinBar) - macOS menu bar application for tracking crypto coin prices. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [Copay](https://github.com/bitpay/copay) - A secure bitcoin wallet platform for both desktop and mobile devices. **Languages:** TypeScript icon TypeScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Crypto Bar](https://github.com/geraldoramos/crypto-bar) - macOS menu bar application built with Electron. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Float coin](https://github.com/kaunteya/FloatCoin) - Native menu bar app with floating window and support for many Exchanges. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 🗄️ Database (18) - [Bdash](https://github.com/bdash-app/bdash) - Simple SQL Client for lightweight data analysis. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Beekeeper Studio](https://github.com/beekeeper-studio/beekeeper-studio) - SQL editor and manager with support for SQLite, MySQL, MariaDB, Postgres, CockroachDB, SQL Server, and Amazon Redshift. **Languages:** JavaScript icon JavaScript **Website:** [https://www.beekeeperstudio.io](https://www.beekeeperstudio.io) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [DB Browser for SQLite](https://github.com/sqlitebrowser/sqlitebrowser) - SQLite database management GUI. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [DBeaver](https://github.com/dbeaver/dbeaver) - Universal database tool and SQL client. **Languages:** Java icon Java **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [DbGate](https://github.com/dbgate/dbgate) - Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application. **Languages:** JavaScript icon JavaScript TypeScript icon TypeScript **Website:** [https://dbgate.org](https://dbgate.org) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(6 more screenshots available in the repository)*

- [Medis](https://github.com/luin/medis) - 💻 Medis is a beautiful, easy-to-use Mac database management application for Redis. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [mongoDB.app](https://github.com/gcollazo/mongodbapp) - The easiest way to get started with mongoDB on the Mac. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MongoHub](https://github.com/jeromelebel/MongoHub-Mac) - Add another lightweight Mac Native MongoDB client. **Languages:** Objective-C icon Objective-C C icon C **Badges:** Latest Release   GitHub stars   Last commit   License - [Postbird](https://github.com/Paxa/postbird) - PostgreSQL GUI client for macOS. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Postgres.app](https://github.com/PostgresApp/PostgresApp) - The easiest way to get started with PostgreSQL on the Mac. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Redis Desktop Manager](https://github.com/uglide/RedisDesktopManager) - Cross-platform open source database management tool for Redis ® **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [redis-pro](https://github.com/cmushroom/redis-pro) - Redis management with SwiftUI. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Redis.app](https://github.com/jpadilla/redisapp) - The easiest way to get started with Redis on the Mac. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system. **Languages:** TypeScript icon TypeScript Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Robo 3T](https://github.com/Studio3T/robomongo) - Robo 3T (formerly Robomongo) is the free lightweight GUI for MongoDB enthusiasts. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Sequel Ace](https://github.com/Sequel-Ace/Sequel-Ace) - Sequel Ace is a fast, easy-to-use Mac database management application for working with MySQL & MariaDB databases. **Languages:** Objective-C icon Objective-C **Website:** [https://sequel-ace.com/](https://sequel-ace.com/) **Badges:** Latest Release   GitHub stars   Last commit   License - [Sequel Pro](https://github.com/sequelpro/sequelpro) - MySQL/MariaDB database management for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [sqlectron](https://github.com/sqlectron/sqlectron-gui) - A simple and lightweight SQL client desktop/terminal with cross database and platform support. **Languages:** TypeScript icon TypeScript **Website:** [https://sqlectron.github.io/](https://sqlectron.github.io/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 👨‍💻 Development (16) - [Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more. **Languages:** Java icon Java **Website:** [https://netbeans.apache.org/](https://netbeans.apache.org/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript. **Languages:** JavaScript icon JavaScript **Website:** [https://brackets.io/](https://brackets.io/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Clipboard](https://github.com/Slackadays/Clipboard) - An easy-to-use clipboard manager with time saving features that work across all terminals. **Languages:** C++ icon C++ **Website:** [https://GetClipboard.app](https://GetClipboard.app) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. **Languages:** Swift icon Swift C# icon C# Objective-C icon Objective-C **Website:** [https://imazing.com/colorset](https://imazing.com/colorset) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [DevLint](https://github.com/csprasad/DevLint) - A lightweight app for formatting and correcting Swift syntax. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Eclipse](https://github.com/eclipse-platform/eclipse.platform) - Eclipse is an open-source integrated development environment (IDE) used in computer programming, featuring a base workspace and an extensible plug-in system for customizing the environment. **Languages:** Java icon Java **Website:** [https://www.eclipse.org](https://www.eclipse.org) **Badges:** Latest Release   GitHub stars   Last commit   License - [GitAhead](https://github.com/gitahead/gitahead/) - A graphical Git client designed to help you understand and manage your source code history. **Languages:** C++ icon C++ C icon C **Website:** [https://gitahead.github.io/gitahead.com/](https://gitahead.github.io/gitahead.com/) **Badges:** Latest Release   GitHub stars   Last commit   License - [Gridfy](https://github.com/Slllava/gridfy) - Quickly calculate column widths and get correct results for your grid. **Languages:** JavaScript icon JavaScript TypeScript icon TypeScript **Website:** [https://gridfy.astroon.pro/](https://gridfy.astroon.pro/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [JustTags](https://github.com/kaphacius/just-tags) - JustTags in a macOS app for working with BERTLV EMV tags. **Languages:** Swift icon Swift **Website:** [https://kaphacius.github.io/just-tags/](https://kaphacius.github.io/just-tags/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [KiCad](https://gitlab.com/kicad/code/kicad) - A software suite for electronic design automation. **Languages:** C++ icon C++ C icon C **Website:** [https://www.kicad.org/](https://www.kicad.org/) - [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. **Languages:** Swift icon Swift **Website:** [https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12](https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12) **Badges:** App Store App Store   Latest Release   GitHub stars   Last commit   License
Screenshots

- [LocationSimulator](https://github.com/Schlaubischlump/LocationSimulator) - Application to spoof your iOS or iPhoneSimulator location. **Languages:** Swift icon Swift **Website:** [https://schlaubischlump.github.io/LocationSimulator](https://schlaubischlump.github.io/LocationSimulator) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [M-Courtyard](https://github.com/Mcourtyard/m-courtyard) - Desktop app for fine-tuning LLMs on Apple Silicon Macs with zero code. Import documents, generate training datasets with AI, LoRA fine-tune, test, and export to Ollama — entirely offline. **Languages:** TypeScript icon TypeScript Rust icon Rust Python icon Python **Website:** [https://github.com/Mcourtyard/m-courtyard](https://github.com/Mcourtyard/m-courtyard) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Pasteboard Viewer](https://github.com/sindresorhus/Pasteboard-Viewer) - Inspect the system pasteboards. **Languages:** Swift icon Swift **Website:** [https://sindresorhus.com/pasteboard-viewer](https://sindresorhus.com/pasteboard-viewer) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [utmapp](https://github.com/utmapp/) - Virtualization for other operating systems. **Languages:** Swift icon Swift Objective-C icon Objective-C **Website:** [https://mac.getutm.app/](https://mac.getutm.app/)
Screenshots

#### 📦 Git (20) - [Cashew](https://github.com/dhennessy/OpenCashew) - Cashew macOS Github Issue Tracker. **Languages:** Objective-C icon Objective-C C icon C **Badges:** Latest Release   GitHub stars   Last commit   License - [Git Interactive Rebase Tool](https://github.com/MitMaro/git-interactive-rebase-tool) - Full feature terminal based sequence editor for interactive rebase. **Languages:** Rust icon Rust **Website:** [https://gitrebasetool.mitmaro.ca/](https://gitrebasetool.mitmaro.ca/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [GitAhead](https://github.com/gitahead/gitahead/) - A graphical Git client designed to help you understand and manage your source code history. **Languages:** C++ icon C++ C icon C **Website:** [https://gitahead.github.io/gitahead.com/](https://gitahead.github.io/gitahead.com/) **Badges:** Latest Release   GitHub stars   Last commit   License - [GitBlamePR](https://github.com/maoyama/GitBlamePR) - Mac app that shows pull request last modified each line of a file **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Gitee](https://github.com/Nightonke/Gitee) - Gitee, macOS status bar application for Github. **Languages:** Objective-C icon Objective-C Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(11 more screenshots available in the repository)*

- [Github contributions](https://github.com/remirobert/Github-contributions) - GitHub contributions app, for iOS, WatchOS, and macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [GitHub Desktop](https://github.com/desktop/desktop) - Simple collaboration from your desktop. **Languages:** TypeScript icon TypeScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [GithubListener](https://github.com/ad/GithubListener) - Simple app that will notify about new commits to watched repositories. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [GithubNotify](https://github.com/erik/github-notify) - Simple macOS app to alert you when you have unread GitHub notifications. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Gitify](https://github.com/manosim/gitify) - Your GitHub notifications on your menu bar. **Languages:** JavaScript icon JavaScript **Website:** [https://www.gitify.io/](https://www.gitify.io/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [GitSync](https://github.com/eonist/GitSync) - Minimalistic Git client for Mac. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [GitUp](https://github.com/git-up/GitUp) - The Git interface you've been missing all your life has finally arrived. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

- [GitX](https://github.com/gitx/gitx) - Graphical client for the git version control system. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [GPM](https://github.com/mtgto/GPM) - macOS application for easily operating GitHub Projects. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [osagitfilter](https://github.com/doekman/osagitfilter) - Filter to put OSA languages (AppleScript, JavaScript) into git, as if they where plain text-files. **Languages:** Shell icon Shell applescript **Badges:** Latest Release   GitHub stars   Last commit   License - [Streaker](https://github.com/jamieweavis/streaker) - GitHub contribution streak tracking menubar app. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [TeamStatus-for-GitHub](https://github.com/marcinreliga/TeamStatus-for-GitHub) - macOS status bar application for tracking code review process within the team. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Tempo](https://github.com/maoyama/Tempo) - Replace the Git CLI with a clear UI and AI assist. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Trailer](https://github.com/ptsochantaris/trailer) - Managing Pull Requests and Issues For GitHub & GitHub Enterprise. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Xit](https://github.com/Uncommon/Xit) - Xit is a graphical tool for working with git repositories. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

#### 🔄 JSON Parsing (4) - [j2s](https://github.com/zadr/j2s) - macOS app to convert JSON objects into Swift structs (currently targets Swift 4 and Codable). **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [JSON Mapper](https://github.com/AppCraft-LLC/json-mapper) - Simple macOS app to generate Swift Object Mapper classes from JSON. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [JSON to Model class](https://github.com/chanonly123/Json-Model-Generator) - Template based highly customizable macOS app to generate classes from JSON string, supports many languages. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

#### 🔧 Other Development (5) - [Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers. **Languages:** Swift icon Swift JavaScript icon JavaScript **Website:** [https://boop.okat.best](https://boop.okat.best) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ChefInspector](https://github.com/Yasumoto/ChefInspector) - Node and Attribute viewer for Chef **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [macho-browser](https://github.com/dcsch/macho-browser) - Browser for macOS Mach-O binaries. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client. **Languages:** JavaScript icon JavaScript TypeScript icon TypeScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [vegvisir](https://github.com/ant4g0nist/vegvisir) - Browser based GUI for **LLDB** Debugger. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(5 more screenshots available in the repository)*

#### 🌍 Web Development (14) - [aws-s3-uploader](https://github.com/RafalWilinski/s3-uploader) - Simple macOS app for uploading files to Amazon Web Services. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [HTTP Toolkit](https://github.com/httptoolkit/httptoolkit-desktop) - HTTP Toolkit is a cross-platform tool to intercept, debug & mock HTTP. **Languages:** TypeScript icon TypeScript **Website:** [https://httptoolkit.com/](https://httptoolkit.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Insomnia](https://github.com/Kong/insomnia) - Insomnia is a cross-platform REST client, built on top of Electron. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [iTunesConnect](https://github.com/trulyronak/itunesconnect) - macOS app to let you access iTunesConnect. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [KubeMonitor](https://github.com/Daniel-Sanche/KubeMonitor) - KubeMonitor is a macOS app that displays information about your active Kubernetes cluster in your menu bar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [KubeSwitch](https://github.com/nsriram/KubeSwitch) - KubeSwitch lists the available kubernetes cluster contexts on the mac, in Mac's Menu bar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Lantern](https://github.com/RoyalIcing/Lantern) - Dedicated Mac app for website auditing and crawling. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [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). **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [nodeScratchpad](https://github.com/vsaravind007/nodeScratchpad) - Evaluate Nodejs/JS code snippets from Menubar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Requestly](https://github.com/requestly/requestly) - A lightweight open-source API Development, Testing & Mocking platform **Languages:** JavaScript icon JavaScript **Website:** [https://requestly.com](https://requestly.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SimpleLocalize CLI](https://github.com/simplelocalize/simplelocalize-cli) - Open source tool for managing i18n keys in software projects. **Languages:** Swift icon Swift **Website:** [https://simplelocalize.io](https://simplelocalize.io) **Badges:** Latest Release   GitHub stars   Last commit   License - [stts](https://github.com/inket/stts) - macOS app for monitoring the status of cloud services. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

#### 📱 iOS / macOS (44) - [AppBox](https://github.com/getappbox/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. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [AppIcons](https://github.com/kuyawa/AppIcons) - Tool for generating icons in all sizes as required by macOS and iOS apps. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [AppStoreReviewTimes](https://github.com/arbel03/AppStoreReviewTimes) - Gives you indication about the average iOS / macOS app stores review times. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Asset Catalog Tinkerer](https://github.com/insidegui/AssetCatalogTinkerer) - App that lets you open .car files and browse/extract their images. **Languages:** Objective-C icon Objective-C Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Assets](https://github.com/e7711bbear/Assets) - Assets is a macOS app that manages assets for your development projects (Xcode, web, etc). **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Attabench](https://github.com/attaswift/Attabench) - Attabench is a microbenchmarking app for macOS, designed to measure and visualize the performance of Swift code. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Board For GitHub](https://github.com/JustinFincher/BoardForGitHub) - Small application to monitor your GitHub project web page in a native macOS app :octocat:! **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Brisk](https://github.com/br1sk/brisk) - macOS app for submitting radars. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

- [Cleaner for Xcode](https://github.com/waylybaye/XcodeCleaner) - Cleaner for Xcode.app built with react-native-macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Clendar](https://github.com/vinhnx/Clendar) - Clendar is an universal calendar app. Written in SwiftUI. **Languages:** Swift icon Swift **Website:** [https://apps.apple.com/us/app/clendar-a-calendar-app/id1548102041](https://apps.apple.com/us/app/clendar-a-calendar-app/id1548102041) **Badges:** App Store App Store   Latest Release   GitHub stars   Last commit   License
Screenshots

- [CocoaRestClient](https://github.com/mmattozzi/cocoa-rest-client) - Native Apple macOS app for testing HTTP/REST endpoints. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

- [Corona Tracker](https://github.com/MhdHejazi/CoronaTracker) - Coronavirus tracker app for iOS & macOS with maps & charts. **Languages:** Swift icon Swift **Website:** [https://coronatracker.samabox.com/](https://coronatracker.samabox.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [DevLint](https://github.com/csprasad/DevLint) - A lightweight app for formatting and correcting Swift syntax. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [FilterShop](https://github.com/KrisYu/FilterShop) - macOS App to explore CoreImage Filters. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [IconGenerator](https://github.com/onmyway133/IconGenerator) - macOS app to generate app icons. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Iconizer](https://github.com/raphaelhanneken/iconizer) - Create Xcode image catalogs (xcassets) on the fly. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Iconology](https://github.com/liamrosenfeld/Iconology) - Edit icons and then export to Xcode, icns, ico, favicon, macOS iconset, or a custom collection. **Languages:** Swift icon Swift **Website:** [https://apps.apple.com/us/app/iconology/id1463452867](https://apps.apple.com/us/app/iconology/id1463452867) **Badges:** App Store App Store   Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [InjectionIII](https://github.com/johnno1962/InjectionIII) - overdue Swift rewrite of Injection. **Languages:** Objective-C icon Objective-C Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Input Source Pro](https://github.com/runjuu/InputSourcePro/) - Input Source Pro is macOS utility designed for multilingual users who frequently switch input sources. **Languages:** Swift icon Swift **Website:** [https://inputsource.pro](https://inputsource.pro) **Badges:** Latest Release   GitHub stars   Last commit   License - [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. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [iSimulator](https://github.com/wigl/iSimulator) - iSimulator is a GUI utility to control the Simulator and manage the app installed on the simulator. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Knuff](https://github.com/KnuffApp/Knuff) - The debug application for Apple Push Notification Service (APNs). **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [LayerX](https://github.com/yuhua-chen/LayerX) - Intuitive app to display transparent images on screen. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Localizable.strings](https://github.com/cristibaluta/Localizable.strings) - Mac app to localize your iOS and macOS projects. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Localizations](https://github.com/e7711bbear/Localizations) - Localizations is an macOS app that manages your Xcode project localization files (.strings). **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [LocationSimulator](https://github.com/Schlaubischlump/LocationSimulator) - Application to spoof your iOS or iPhoneSimulator location. **Languages:** Swift icon Swift **Website:** [https://schlaubischlump.github.io/LocationSimulator](https://schlaubischlump.github.io/LocationSimulator) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Menubar Colors](https://github.com/nvzqz/Menubar-Colors) - macOS app for convenient access to the system color panel. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Notarize](https://github.com/macmade/Notarize) - Notarization status monitoring tool for macOS, supporting multiple developer accounts **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [PodsUpdater](https://github.com/kizitonwose/PodsUpdater) - macOS app which helps you manage dependency releases in your Podfile. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ProfilesManager](https://github.com/shaojiankui/ProfilesManager) - Apple iOS/macOS Provisioning Profiles management,.provisionprofile, .mobileprovision files manager tool for mac. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [PushNotifications](https://github.com/onmyway133/PushNotifications) - macOS app to test push notifications on iOS and Android. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(6 more screenshots available in the repository)*

- [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. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Resizr](https://github.com/onurgenes/Resizr) - MacOS application for creating AppIcon for iOS and Android apps. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [SmartPush](https://github.com/shaojiankui/SmartPush) - iOS Push Notification Debug App. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [TransporterPad](https://github.com/iseebi/TransporterPad) - iOS/Android app deployment tool for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [WWDC](https://github.com/insidegui/WWDC) - Unofficial WWDC app for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [WWDC.srt](https://github.com/ssamadgh/WWDCsrt) - Powerful app for downloading subtitle for each WWDC session video since 2013 in (srt) format. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

- [Xcodes.app](https://github.com/RobotsAndPencils/XcodesApp) - The easiest way to install and switch between multiple versions of Xcode. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [xib2Storyboard](https://github.com/novemberfiveco/xib2Storyboard) - Tool to convert Xcode .xib to .storyboard files. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License ### ⬇️ Downloader (10) - [App Downloader](https://github.com/yep/app-downloader) - Easily search and download macOS apps from the huge `homebrew cask` app catalog. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [App Fair](https://github.com/App-Fair/App) - Find and install macOS apps from Homebrew Cask and Fairground App catalogs. **Languages:** Swift icon Swift **Website:** [https://appfair.app](https://appfair.app) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Applite](https://github.com/milanvarady/Applite) - User-friendly GUI app for Homebrew Casks. Install, update, and uninstall apps with a single click. **Languages:** Swift icon Swift **Website:** [https://aerolite.dev/applite](https://aerolite.dev/applite) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Extream Download Manager](https://github.com/subhra74/xdm) - a powerful tool to increase download speeds up to 500% **Languages:** Java icon Java **Website:** [https://subhra74.github.io/xdm/](https://subhra74.github.io/xdm/) **Badges:** Latest Release   GitHub stars   Last commit   License - [FileZilla](https://sourceforge.net/projects/filezilla/) - Free open-source FTP, FTPS, and SFTP client. **Languages:** c++ **Website:** [https://filezilla-project.org](https://filezilla-project.org) - [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Motrix](https://github.com/agalwood/Motrix) - A full-featured download manager. **Languages:** JavaScript icon JavaScript **Website:** [https://motrix.app/](https://motrix.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [Pillager](https://github.com/Pjirlip/Pillager) - macOS Video Downloader written in Swift and Objective-C. **Languages:** Objective-C icon Objective-C Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [udemy-downloader-gui](https://github.com/FaisalUmair/udemy-downloader-gui) - desktop application for downloading Udemy Courses. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 📝 Editors (7) - [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. **Languages:** Swift icon Swift **Website:** [https://auroraeditor.com](https://auroraeditor.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Chime](https://github.com/ChimeHQ/Chime) - An editor for macOS **Languages:** Swift icon Swift **Website:** [https://www.chimehq.com/](https://www.chimehq.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. **Languages:** Swift icon Swift **Website:** [https://www.codeedit.app/](https://www.codeedit.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [DevLint](https://github.com/csprasad/DevLint) - A lightweight app for formatting and correcting Swift syntax. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. **Languages:** C icon C c++ **Website:** [https://www.geany.org/](https://www.geany.org/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [mxMarkEdit](https://github.com/maxnd/mxMarkEdit) - A visual editor of Markdown document, tasks and tables. **Languages:** free-pascal **Website:** [https://github.com/maxnd/mxMarkEdit](https://github.com/maxnd/mxMarkEdit) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [Zed](https://github.com/zed-industries/zed) - Zed is an open source, high-performance, and multiplayer code editor **Languages:** Rust icon Rust **Website:** [https://zed.dev](https://zed.dev) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

#### 📊 CSV (1) - [TableTool](https://github.com/jakob/TableTool) - A simple CSV editor for macOS. **Languages:** Objective-C icon Objective-C **Website:** [https://apps.apple.com/app/table-tool/id1122008420](https://apps.apple.com/app/table-tool/id1122008420) **Badges:** App Store App Store   Latest Release   GitHub stars   Last commit   License #### 📋 JSON (2) - [JSON Editor](https://github.com/fand/json-editor-app) - Dead simple JSON editor using josdejong/jsoneditor **Languages:** TypeScript icon TypeScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [JSON-Splora](https://github.com/wellsjo/JSON-Splora) - GUI for editing, visualizing, and manipulating JSON data. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

#### 📝 Markdown (11) - [Gingko](https://github.com/gingko/client) - Tree-structured markdown editor for macOS, Windows, and Linux. **Languages:** Elm icon Elm **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis. **Languages:** JavaScript icon JavaScript vue CSS icon CSS **Website:** [https://uselinked.com](https://uselinked.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MacDown](https://github.com/MacDownApp/macdown) - Markdown editor for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Mark Text](https://github.com/marktext/marktext/) - Realtime preview markdown editor for macOS Windows and Linux. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [MarkEdit](https://github.com/MarkEdit-app/MarkEdit) - MarkEdit is a free and open-source Markdown editor, for macOS. It's just like TextEdit on Mac but dedicated to Markdown. **Languages:** Swift icon Swift TypeScript icon TypeScript **Website:** [https://markedit.app/](https://markedit.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [mxMarkEdit](https://github.com/maxnd/mxMarkEdit) - A visual editor of Markdown document, tasks and tables. **Languages:** free-pascal **Website:** [https://github.com/maxnd/mxMarkEdit](https://github.com/maxnd/mxMarkEdit) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [Notenik](https://github.com/hbowie/notenik-swift) - Note-taking app with many organizational options. **Languages:** Swift icon Swift **Website:** [https://notenik.app](https://notenik.app) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Obsidian plugins & themes](https://github.com/obsidianmd/obsidian-releases) - Community plugins list, theme list, and releases of Obsidian. **Languages:** JavaScript icon JavaScript **Website:** [https://obsidian.md/](https://obsidian.md/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Pine](https://github.com/lukakerr/Pine) - A modern MacOS markdown editor. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. **Languages:** C++ icon C++ **Website:** [https://www.qownnotes.org/](https://www.qownnotes.org/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Zettlr](https://github.com/Zettlr/Zettlr) - A Markdown Editor for the 21st century. **Languages:** JavaScript icon JavaScript TypeScript icon TypeScript **Website:** [https://www.zettlr.com/](https://www.zettlr.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

#### 📐 TeX (2) - [BibDesk](https://sourceforge.net/projects/bibdesk/) - Use BibDesk to edit and manage your bibliography **Languages:** Objective-C icon Objective-C **Website:** [https://bibdesk.sourceforge.io](https://bibdesk.sourceforge.io)
Screenshots

- [Qilin Editor](https://github.com/qilin-editor/qilin-app) - Text editor for exact sciences with built-in KaTeX/AsciiMath support. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

#### ✏️ Text (13) - [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. **Languages:** Swift icon Swift **Website:** [https://auroraeditor.com](https://auroraeditor.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [CotEditor](https://github.com/coteditor/CotEditor) - Lightweight Plain-Text Editor for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. **Languages:** C icon C c++ **Website:** [https://www.geany.org/](https://www.geany.org/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MacVim](https://github.com/macvim-dev/macvim) - Text editor for macOS. **Languages:** C icon C **Badges:** Latest Release   GitHub stars   Last commit   License - [micro](https://github.com/zyedidia/micro) - A terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the capabilities of modern terminals. **Languages:** Go icon Go **Website:** [https://micro-editor.github.io](https://micro-editor.github.io) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(8 more screenshots available in the repository)*

- [mxMarkEdit](https://github.com/maxnd/mxMarkEdit) - A visual editor of Markdown document, tasks and tables. **Languages:** free-pascal **Website:** [https://github.com/maxnd/mxMarkEdit](https://github.com/maxnd/mxMarkEdit) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [Notesnook](https://github.com/streetwriters/notesnook) - A fully open source and end-to-end encrypted note taking alternative to Evernote. **Languages:** JavaScript icon JavaScript TypeScript icon TypeScript **Website:** [https://notesnook.com](https://notesnook.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Noto](https://github.com/brunophilipe/noto) - Plain text editor for macOS with customizable themes. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system. **Languages:** TypeScript icon TypeScript Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SubEthaEdit](https://github.com/subethaedit/SubEthaEdit) - General purpose plain text editor for macOS. Widely known for its live collaboration feature. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [TextMate](https://github.com/textmate/textmate) - TextMate is a graphical text editor for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Tincta](https://github.com/CodingFriends/Tincta) - One-window text editor with syntax highlighting. **Languages:** Objective-C icon Objective-C **Website:** [https://codingfriends.github.io/Tincta/](https://codingfriends.github.io/Tincta/) **Badges:** Latest Release   GitHub stars   Last commit   License - [VimR](https://github.com/qvacua/vimr) - Refined Neovim experience for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License ### 🧩 Extensions (14) - [AdGuard for Safari](https://github.com/adguardteam/adguardforsafari) - The most advanced ad blocking extension for Safari **Languages:** JavaScript icon JavaScript **Website:** [https://adguard.com/en/welcome.html](https://adguard.com/en/welcome.html) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [BetterPiP](https://github.com/Capevace/BetterPiP) - Use native picture-in-picture with browsers such as Google Chrome for HTML5 videos. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Is It Private?](https://github.com/ffittschen/IsItPrivate) - A Safari Extension providing a toolbar icon that changes its visual appearance if Private Browsing is enabled. **Languages:** Swift icon Swift **Website:** [https://florian.codes/projects/is-it-private/](https://florian.codes/projects/is-it-private/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse **Languages:** C icon C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Swift icon Swift **Website:** [https://nef.bow-swift.io/](https://nef.bow-swift.io/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [PageExtender](https://github.com/fphilipe/PageExtender.app) - Extend pages with your own CSS and JS files. **Languages:** Swift icon Swift JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [PiPTool](https://github.com/bfmatei/PiPTool) - Add the Picture-in-Picture Functionality to YouTube, Netflix, Plex and other video broadcasting services in macOS. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Swimat](https://github.com/Jintin/Swimat) - Swimat is an Xcode plug-in to format your Swift code. **Languages:** Swift icon Swift **Website:** [https://jintin.github.io/Swimat/](https://jintin.github.io/Swimat/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Yape](https://github.com/leonspok/Yape) - Yet Another PiP Extension. Finds all HTML5 videos on a webpage and allows you to play them in Picture-in-Picture mode from the Safari toolbar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 🔍 Finder (13) - [cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Clipy](https://github.com/Clipy/Clipy) - Clipy is a Clipboard extension app for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [CopyQ](https://github.com/hluk/CopyQ) - Clipboard manager with advanced features **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License - [dupeGuru](https://github.com/arsenetar/dupeguru/) - dupeGuru is a tool to find duplicate files on your computer. It can scan using file names and file contents. **Languages:** Objective-C icon Objective-C **Website:** [https://dupeguru.voltaicideas.net/](https://dupeguru.voltaicideas.net/) **Badges:** Latest Release   GitHub stars   Last commit   License - [Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [FiScript](https://github.com/Mortennn/FiScript) - Execute custom scripts from the MacOS context menu (CTRL+click) in Finder. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [muCommander](https://github.com/mucommander/mucommander) - A lightweight, cross-platform file manager with a dual-pane interface. **Languages:** Java icon Java **Website:** [https://www.mucommander.com/](https://www.mucommander.com/) **Badges:** Latest Release   GitHub stars   Last commit   License - [OpenInCode](https://github.com/sozercan/OpenInCode) - Finder toolbar app to open current folder in Visual Studio Code. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - Finder Toolbar app for macOS to open the current directory in Terminal, iTerm, Hyper or Alacritty. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Quick Look plugins](https://github.com/sindresorhus/quick-look-plugins) - List of useful Quick Look plugins for developers. **Languages:** Objective-C icon Objective-C C icon C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(5 more screenshots available in the repository)*

- [SaneClick](https://github.com/sane-apps/SaneClick) - Finder extension with 51+ right-click actions for file management, image conversion, and developer tools. **Languages:** Swift icon Swift **Website:** [https://saneclick.com](https://saneclick.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. **Languages:** Rust icon Rust **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 🎮 Games (13) - [0 A.D.](https://svn.wildfiregames.com/public/ps/trunk/) - Real-time strategy game of ancient warfare **Languages:** C++ icon C++ **Website:** [https://play0ad.com](https://play0ad.com)
Screenshots

- [Amazing Tic Tac Toe](https://github.com/Aries-Sciences-LLC/Tic-Tac-Toe) - Fun Tic Tac Toe game equipped with multiplayer (local and online) and leveled single player available on the App Store. **Languages:** Swift icon Swift Objective-C icon Objective-C **Website:** [https://ariessciences.com/highlight?product=tic-tac-toe](https://ariessciences.com/highlight?product=tic-tac-toe) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Battle for Wesnoth](https://github.com/wesnoth/wesnoth) - Turn-based tactical strategy game, featuring both single-player and online multiplayer combat. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License - [Boxer](https://github.com/alunbestor/Boxer) - The DOS game emulator that’s fit for your Mac. **Languages:** C++ icon C++ Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Chess](https://opensource.apple.com/source/Chess/Chess-410.4.1/) - The chess app that comes with macOS. **Languages:** objective-c **Website:** [https://www.apple.com/](https://www.apple.com/)
Screenshots

- [Dolphin](https://github.com/dolphin-emu/dolphin) - Powerful emulator for Nintendo GameCube and Wii games. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License - [Dynamic Dark Mode](https://github.com/ApolloZhu/Dynamic-Dark-Mode) - Dynamic Dark Mode is the app you are looking for to power up Dark Mode on macOS Mojave and beyond. **Languages:** Swift icon Swift **Website:** [https://apollozhu.github.io/Dynamic-Dark-Mode/](https://apollozhu.github.io/Dynamic-Dark-Mode/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [OpenEmu](https://github.com/OpenEmu/OpenEmu) - Retro video game emulation for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [OpenRCT2](https://github.com/OpenRCT2/OpenRCT2) - Re-implementation of RollerCoaster Tycoon 2. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Sabaki](https://github.com/SabakiHQ/Sabaki) - An elegant Go/Baduk/Weiqi board and SGF editor for a more civilized age. **Languages:** JavaScript icon JavaScript **Website:** [http://sabaki.yichuanshen.de](http://sabaki.yichuanshen.de) **Badges:** Latest Release   GitHub stars   Last commit   License - [Screentendo](https://github.com/AaronRandall/Screentendo) - Turn your screen into a playable level of Mario. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Stockfish](https://github.com/daylen/stockfish-mac) - Beautiful, powerful chess application. **Languages:** C++ icon C++ Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Widelands](https://github.com/widelands/widelands) - Widelands is a free, open source real-time strategy game with singleplayer campaigns and a multiplayer mode. The game was inspired by Settlers II™ (© Bluebyte) but has significantly more variety and depth to it. **Languages:** c++ Python icon Python Lua icon Lua JavaScript icon JavaScript **Website:** [https://www.widelands.org](https://www.widelands.org) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 🎨 Graphics (17) - [Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux). **Languages:** C++ icon C++ C icon C **Badges:** Latest Release   GitHub stars   Last commit   License - [Blender](https://projects.blender.org/) - Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline: modeling, rigging, animation, simulation, rendering, compositing, motion tracking, and video editing. **Languages:** C icon C C++ icon C++ Python icon Python **Website:** [https://www.blender.org](https://www.blender.org)
Screenshots

*(3 more screenshots available in the repository)*

- [CaptuocrToy](https://github.com/sfragrance/CaptuocrToy) - Tool to capture screenshot and recognize text by online ocr apis. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. **Languages:** Swift icon Swift C# icon C# Objective-C icon Objective-C **Website:** [https://imazing.com/colorset](https://imazing.com/colorset) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [FreeCAD](https://github.com/FreeCAD/FreeCAD) - FreeCAD is an open-source 3D parametric modeler **Languages:** c++ Python icon Python **Website:** [https://www.freecad.org/](https://www.freecad.org/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Gaphor](https://github.com/gaphor/gaphor) - Gaphor is the simple modeling tool for UML and SysML. **Languages:** Python icon Python **Website:** [https://gaphor.org](https://gaphor.org) **Badges:** Latest Release   GitHub stars   Last commit   License - [GifCapture](https://github.com/onmyway133/GifCapture) - Gif capture app for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [Gifcurry](https://github.com/lettier/gifcurry) - Video to GIF maker with a graphical interface capable of cropping, adding text, seeking, and trimming. **Languages:** Haskell icon Haskell **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Gifski](https://github.com/sindresorhus/Gifski) - Convert videos to high-quality GIFs. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [InfiniteCanvas](https://github.com/CleanCocoa/InfiniteCanvas) - Proof of concept Mac drawing application. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Krita](https://invent.kde.org/graphics/krita) - Krita is a cross-platform application for creating digital art files from scratch like illustrations, concept art, matte painting, textures, comics and animations. **Languages:** C++ icon C++ Python icon Python C icon C **Website:** [https://krita.org/en/](https://krita.org/en/)
Screenshots

- [LibreCAD](https://github.com/LibreCAD/LibreCAD) - LibreCAD is a free Open Source CAD application for Windows, Apple and Linux. Support and documentation are free from our large, dedicated community of users, contributors and developers. **Languages:** c++ C icon C **Website:** [https://librecad.org](https://librecad.org) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [macSVG](https://github.com/dsward2/macSVG) - macOS application for designing HTML5 SVG (Scalable Vector Graphics) art and animation with a WebKit web view. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Material Colors Native](https://github.com/BafS/Material-Colors-native) - Choose your Material colours and copy the hex code. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Nugget](https://github.com/cartesiancs/nugget-app) - Video editing software designed for motion effects and versatility. **Languages:** TypeScript icon TypeScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License - [ScreenToLayers for macOS](https://github.com/duyquoc/ScreenToLayers) - ScreenToLayers is a macOS application to easily capture your screen as a layered PSD file. **Languages:** Objective-C icon Objective-C CSS icon CSS **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 💻 IDE (14) - [Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more. **Languages:** Java icon Java **Website:** [https://netbeans.apache.org/](https://netbeans.apache.org/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. **Languages:** Swift icon Swift **Website:** [https://auroraeditor.com](https://auroraeditor.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript. **Languages:** JavaScript icon JavaScript **Website:** [https://brackets.io/](https://brackets.io/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. **Languages:** Swift icon Swift **Website:** [https://www.codeedit.app/](https://www.codeedit.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Eclipse](https://github.com/eclipse-platform/eclipse.platform) - Eclipse is an open-source integrated development environment (IDE) used in computer programming, featuring a base workspace and an extensible plug-in system for customizing the environment. **Languages:** Java icon Java **Website:** [https://www.eclipse.org](https://www.eclipse.org) **Badges:** Latest Release   GitHub stars   Last commit   License - [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. **Languages:** C icon C c++ **Website:** [https://www.geany.org/](https://www.geany.org/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [IntelliJ IDEA Community Edition](https://github.com/JetBrains/intellij-community) - IntelliJ IDEA is an integrated development environment written in Java for developing computer software **Languages:** Java icon Java **Website:** [https://www.jetbrains.com/idea/](https://www.jetbrains.com/idea/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [LiveCode](https://github.com/livecode/livecode) - Cross-platform development IDE. **Languages:** C icon C **Website:** [https://livecode.org/](https://livecode.org/) **Badges:** Latest Release   GitHub stars   Last commit   License - [Oni](https://github.com/onivim/oni) - Oni is a modern take on modal editing code editor focused on developer productivity. **Languages:** JavaScript icon JavaScript TypeScript icon TypeScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Vim](https://github.com/vim/vim) - ubiquitous text editor **Languages:** C icon C Vim script **Website:** [https://www.vim.org/](https://www.vim.org/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Visual Studio Code](https://github.com/Microsoft/vscode) - Code editor developed by Microsoft. **Languages:** TypeScript icon TypeScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [VSCodium](https://github.com/VSCodium/vscodium) - VSCodium is a community-driven, freely-licensed binary distribution of Microsoft's VS Code with all telemetry removed. **Languages:** TypeScript icon TypeScript **Website:** [https://vscodium.com/](https://vscodium.com/) **Badges:** Latest Release   GitHub stars   Last commit   License - [Zed](https://github.com/zed-industries/zed) - Zed is an open source, high-performance, and multiplayer code editor **Languages:** Rust icon Rust **Website:** [https://zed.dev](https://zed.dev) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Lua icon Lua **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 🖼️ Images (17) - [APNGb](https://github.com/shgodoroja/APNGb) - macOS app which assembles and disassembles animated png files. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Crunch](https://github.com/chrissimpkins/Crunch) - Insane(ly slow but wicked good) PNG image optimization. **Languages:** Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License - [ExifCleaner](https://github.com/szTheory/exifcleaner) - Remove image metadata with drag and drop, multi-core batch processing, and dark mode. **Languages:** JavaScript icon JavaScript **Website:** [https://exifcleaner.com](https://exifcleaner.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Flameshot](https://github.com/flameshot-org/flameshot) - Powerful yet simple to use screenshot software. **Languages:** C++ icon C++ **Website:** [https://flameshot.org](https://flameshot.org) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Freehand](https://github.com/wddwycc/Freehand) - macOS Status Bar App for quick sketch. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Gimp](https://github.com/GNOME/gimp) - Gimp is GNU Image Manipulation Program. **Languages:** C icon C **Badges:** Latest Release   GitHub stars   Last commit   License - [Iconology](https://github.com/liamrosenfeld/Iconology) - Edit icons and then export to Xcode, icns, ico, favicon, macOS iconset, or a custom collection. **Languages:** Swift icon Swift **Website:** [https://apps.apple.com/us/app/iconology/id1463452867](https://apps.apple.com/us/app/iconology/id1463452867) **Badges:** App Store App Store   Latest Release   GitHub stars   Last commit   License
Screenshots

- [ImageAlpha](https://github.com/kornelski/ImageAlpha) - Mac GUI for pngquant, pngnq and posterizer. **Languages:** Objective-C icon Objective-C Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Imagine](https://github.com/meowtec/Imagine) - Imagine is a desktop app for compression of PNG and JPEG, with a modern and friendly UI. **Languages:** TypeScript icon TypeScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Inkscape](https://gitlab.com/inkscape/inkscape) - Inkscape is a Free and open source vector graphics editor. **Languages:** c++ **Website:** [https://inkscape.org/](https://inkscape.org/)
Screenshots

- [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software **Languages:** Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Katana](https://github.com/bluegill/katana) - Katana is a simple screenshot utility for macOS that lives in your menubar. **Languages:** JavaScript icon JavaScript CSS icon CSS **Badges:** Latest Release   GitHub stars   Last commit   License - [Krita](https://invent.kde.org/graphics/krita) - Krita is a cross-platform application for creating digital art files from scratch like illustrations, concept art, matte painting, textures, comics and animations. **Languages:** C++ icon C++ Python icon Python C icon C **Website:** [https://krita.org/en/](https://krita.org/en/)
Screenshots

- [PhotoMiner](https://github.com/gergelysanta/photominer) - macOS app for finding and lost forgotten photos on your disks. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(3 more screenshots available in the repository)*

- [Screenbar](https://github.com/crilleengvall/Screenbar) - macOS menubar app for automating screenshots. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Seashore](https://github.com/robaho/seashore) - Easy to use macOS image editing application for the rest of us. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [WebPonize](https://github.com/1000ch/WebPonize) - WebPonize is a macOS App for converting PNG, JPEG, animated (or not) GIF images into WebP. **Languages:** Swift icon Swift C icon C **Badges:** Latest Release   GitHub stars   Last commit   License ### ⌨️ Keyboard (10) - [AnnePro-mac](https://github.com/msvisser/AnnePro-mac) - macOS application for controlling AnnePro keyboard over bluetooth. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Fluor](https://github.com/Pyroh/Fluor) - Handy tool for macOS allowing you to switch Fn keys' mode based on active application. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [GokuRakuJoudo](https://github.com/yqrashawn/GokuRakuJoudo) - Karabiner-Elements configuration manager, rescue to bloated karabiner.json **Languages:** Clojure icon Clojure **Badges:** Latest Release   GitHub stars   Last commit   License - [Input Source Pro](https://github.com/runjuu/InputSourcePro/) - Input Source Pro is macOS utility designed for multilingual users who frequently switch input sources. **Languages:** Swift icon Swift **Website:** [https://inputsource.pro](https://inputsource.pro) **Badges:** Latest Release   GitHub stars   Last commit   License - [Karabiner](https://github.com/tekezo/Karabiner) - Karabiner (KeyRemap4MacBook) is a powerful utility for keyboard customization. **Languages:** C++ icon C++ Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [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. **Languages:** C++ icon C++ Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Kawa](https://github.com/hatashiro/kawa) - Better input source switcher for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Keycastr](https://github.com/keycastr/keycastr) - Keystroke visualizer. **Languages:** Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Thor](https://github.com/gbammc/Thor) - Switch the right application ASAP. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Unshaky](https://github.com/aahung/Unshaky) - A software attempt to address the "double key press" issue on Apple's butterfly keyboard **Languages:** Swift icon Swift **Website:** [https://unshaky.nestederror.com/](https://unshaky.nestederror.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 📧 Mail (7) - [Correo](https://github.com/amitmerchant1990/correo) - Menubar/taskbar Gmail App for Windows and macOS. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [dejalu](https://github.com/dinhvh/dejalu) - Fast and Simple Email Client. **Languages:** C++ icon C++ Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ElectronMail](https://github.com/vladimiry/ElectronMail) - Unofficial desktop app for ProtonMail and Tutanota end-to-end encrypted email providers. **Languages:** TypeScript icon TypeScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Mailspring](https://github.com/Foundry376/Mailspring) - 💌 A beautiful, fast and maintained fork of @nylas Mail by one of the original authors **Languages:** JavaScript icon JavaScript **Website:** [https://getmailspring.com/](https://getmailspring.com/) **Badges:** Latest Release   GitHub stars   Last commit   License - [Rambox](https://github.com/ramboxapp/community-edition) - Cross Platform messaging and emailing app that combines common web applications into one. **Languages:** JavaScript icon JavaScript CSS icon CSS **Badges:** Latest Release   GitHub stars   Last commit   License - [SimpleLogin](https://github.com/simple-login/mac-app) - Email Alias solution: protect your real email address. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Thunderbird](https://hg.mozilla.org/mozilla-central) - Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client. **Languages:** C++ icon C++ JavaScript icon JavaScript Rust icon Rust **Website:** [https://www.thunderbird.net/en-US/](https://www.thunderbird.net/en-US/)
Screenshots

### 🏥 Medical (1) - [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software **Languages:** Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 📊 Menubar (52) - [Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Akku](https://github.com/jariz/Akku) - The missing macOS bluetooth headset battery indicator app. **Languages:** Swift icon Swift Python icon Python Ruby icon Ruby **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [AnyBar](https://github.com/tonsky/AnyBar) - macOS menubar status indicator. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [app-menu](https://github.com/barseghyanartur/app-menu) - The missing Applications Menu for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [BarTranslate](https://github.com/ThijmenDam/BarTranslate) - A handy menu bar translator app that supports DeepL and Google Translate. **Languages:** TypeScript icon TypeScript **Website:** [https://thijmendam.github.io/BarTranslate/](https://thijmendam.github.io/BarTranslate/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Bye-AppQuit](https://github.com/designsbymuzeer/Bye-Mac-App) - A minimal native macOS app to quickly view and Bulk kill running processes. **Languages:** Swift icon Swift **Website:** [https://github.com/designsbymuzeer/Bye-Mac-App](https://github.com/designsbymuzeer/Bye-Mac-App) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ClipFlow](https://github.com/praneeth552/clipflow) - Clipboard history manager for macOS with terminal-style navigation, image previews, and cursor-following popup. **Languages:** Swift icon Swift **Website:** [https://github.com/praneeth552/clipflow](https://github.com/praneeth552/clipflow) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [CloudyTabs](https://github.com/josh-/CloudyTabs) - Simple menu bar macOS application for displaying lists of your iCloud Tabs and Reading List. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [DatWeatherDoe](https://github.com/inderdhir/DatWeatherDoe) - Simple menu bar weather app for macOS written in Swift. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [DisplayMenu](https://github.com/Kwpolska/DisplayMenu) - Simple (bare-bones) macOS menubar extra to apply display presets. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Dozer](https://github.com/Mortennn/Dozer) - Hide MacOS menubar items. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Manage grayscale mode from menu bar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [gSwitch](https://github.com/CodySchrank/gSwitch) - macOS status bar app that allows control over the gpu on dual gpu macbooks. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Hidden Bar](https://github.com/dwarvesf/hidden) - An ultra-light MacOS utility that helps hide menu bar icons **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Ice](https://github.com/jordanbaird/Ice) - Powerful menu bar manager for macOS **Languages:** Swift icon Swift **Website:** [https://icemenubar.app/](https://icemenubar.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [iGlance](https://github.com/iglance/iGlance) - macOS System Monitor (cpu, memory, network, fan and battery) for the Status Bar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar. **Languages:** Objective-C icon Objective-C **Website:** [https://www.mowglii.com/itsycal/](https://www.mowglii.com/itsycal/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [KubeContext](https://github.com/turkenh/KubeContext) - import, manage and switch between your Kubernetes contexts on Mac. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [LinkLiar](https://github.com/halo/LinkLiar) - Keep your MAC address random for privacy (intuitive GUI for ifconfig) **Languages:** Swift icon Swift **Website:** [https://halo.github.io/LinkLiar/](https://halo.github.io/LinkLiar/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MacNTop](https://github.com/CorvidLabs/MacNTop) - macOS menu bar system monitor with retro CRT aesthetics. **Languages:** Swift icon Swift **Website:** [https://github.com/CorvidLabs/MacNTop](https://github.com/CorvidLabs/MacNTop) **Badges:** Latest Release   GitHub stars   Last commit   License - [Market Bar](https://github.com/mnndnl/market-bar ) - Tiny stocks watcher for the menu bar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Menubar Brightness](https://github.com/lucasbento/menubar-brightness) - macOS app to change the screen brightness on the menubar. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [MenuMeters](https://github.com/yujitach/MenuMeters) - CPU, memory, disk, and network monitoring tools for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [MiniSim](https://github.com/okwasniewski/MiniSim) - MacOS menu bar app for launching iOS  and Android 🤖 emulators. **Languages:** Swift icon Swift **Website:** [https://www.minisim.app/](https://www.minisim.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Monitor Bar](https://github.com/tidiemme/monitorbar) - Monitor Bar app supports three modes, compact, normal, extra. It monitors battery, Disk, Memory, CPU, Network bandwidth, Wi-Fi. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Nocturnal](https://github.com/joshjon/nocturnal) - Menu bar app featuring darker than dark dimming, Night Shift fine tuning, and the ability to turn off TouchBar on MacBook Pro. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [OnlySwitch](https://github.com/jacklandrin/OnlySwitch) - All-in-One status bar button, hide MacBook Pro's notch, dark mode, AirPods, Shortcuts **Languages:** Swift icon Swift **Website:** [https://www.jacklandrin.com/2021/12/01/onlyswitch/](https://www.jacklandrin.com/2021/12/01/onlyswitch/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene. **Languages:** Swift icon Swift **Website:** [https://paretosecurity.com/](https://paretosecurity.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Pi Stats](https://github.com/Bunn/PiStats) - macOS app to visualize Pi-hole information. **Languages:** Swift icon Swift Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. **Languages:** Swift icon Swift metal **Website:** [https://superhighfives.com/pika](https://superhighfives.com/pika) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [PSIBar](https://github.com/nikhilsh/PSIBar) - Quickly hacked up PSI macOS status bar app. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Quick Weather](https://github.com/Aries-Sciences-LLC/Quick-Weather) - Simple and elegant menubar weather app on the App Store. **Languages:** Swift icon Swift **Website:** [https://ariessciences.com/highlight?product=quick-weather](https://ariessciences.com/highlight?product=quick-weather) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Quickeys](https://github.com/alexrosenfeld10/Quickeys) - A mac menu bar app that provides note taking functionality though a quick dropdown menu. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [RustCast](https://github.com/unsecretised/rustcast) - Blazingly fast, customisable multi tool, application launcher **Languages:** Rust icon Rust **Website:** [https://rustcast.umangsurana.com](https://rustcast.umangsurana.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SaneBar](https://github.com/sane-apps/SaneBar) - Privacy-first menu bar manager with Touch ID lock, Always-Hidden Zone, and automation triggers. **Languages:** Swift icon Swift **Website:** [https://sanebar.com](https://sanebar.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ScreenHint](https://github.com/salemhilal/ScreenHint) - A simple screenshotting utility for thinking clearly. **Languages:** Swift icon Swift **Website:** [https://screenhint.com](https://screenhint.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Objective-C icon Objective-C C icon C **Badges:** Latest Release   GitHub stars   Last commit   License - [Shifty](https://github.com/thompsonate/Shifty) - macOS menu bar app that gives you more control over Night Shift. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SwiftBar](https://github.com/swiftbar/SwiftBar) - Powerful macOS menu bar customization tool. **Languages:** Swift icon Swift **Website:** [https://swiftbar.app](https://swiftbar.app) **Badges:** Latest Release   GitHub stars   Last commit   License - [TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording. **Languages:** CSS icon CSS JavaScript icon JavaScript TypeScript icon TypeScript **Website:** [https://timescribe.app](https://timescribe.app) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

- [TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording. **Languages:** CSS icon CSS JavaScript icon JavaScript TypeScript icon TypeScript **Website:** [https://timescribe.app](https://timescribe.app) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

- [Vercel Deployment Menu Bar](https://github.com/andrewk17/vercel-deployment-menu-bar) - Open-source macOS menu bar app to monitor Vercel deployment status in real time. **Languages:** Swift icon Swift **Website:** [https://vercel-deployment-menu-bar.vercel.app/](https://vercel-deployment-menu-bar.vercel.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [VPN Bypass](https://github.com/GeiserX/VPN-Bypass) - Route specific domains and services around your corporate VPN while keeping the rest of your traffic protected. **Languages:** Swift icon Swift **Website:** [https://github.com/GeiserX/VPN-Bypass](https://github.com/GeiserX/VPN-Bypass) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [xbar](https://github.com/matryer/xbar) - Put the output from any script or program into your macOS Menu Bar. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License ### 🎧 Music (16) - [Carol](https://github.com/AnaghSharma/Carol) - A minimal and beautiful lyrics app that stays in the menu bar of macOS. **Languages:** C# icon C# **Badges:** Latest Release   GitHub stars   Last commit   License - [ChordDetector](https://github.com/cemolcay/ChordDetector) - Tiny menu bar app that listens iTunes and Spotify to detect chords of songs! **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [DeezPlayer](https://github.com/imanel/deezplayer) - Deezer Desktop app for Windows, Linux and macOS. **Languages:** CoffeeScript icon CoffeeScript **Badges:** Latest Release   GitHub stars   Last commit   License - [iTunes Graphs](https://github.com/Zac-Garby/iTunes-Graphs) - macOS app to visualise your iTunes library as graphs. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Karaoke Forever](https://github.com/bhj/KaraokeEternal) - Host awesome karaoke parties where everyone can queue songs from their phone's browser. Plays MP3+G and MP4 with WebGL visualizations. **Languages:** JavaScript icon JavaScript **Website:** [https://www.karaoke-eternal.com/](https://www.karaoke-eternal.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Lilypond UI](https://github.com/doches/lilypond-ui) - Create beautiful musical scores with LilyPond. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [lyricsify](https://github.com/mamal72/lyricsify-mac) - Simple Spotify lyrics viewer menu bar app for macOS in Swift. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. **Languages:** C icon C **Website:** [https://mpv.io](https://mpv.io) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. **Languages:** Swift icon Swift **Website:** [https://www.plugformac.com/](https://www.plugformac.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SoundCleod](https://github.com/salomvary/soundcleod) - SoundCloud for macOS and Windows. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [spicetify-cli](https://github.com/spicetify/spicetify-cli) - Command-line tool to customize the official Spotify client. Supports Windows, MacOS and Linux. **Languages:** JavaScript icon JavaScript **Website:** [https://spicetify.app/](https://spicetify.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Spotify-Cli-Mac](https://github.com/ersel/spotify-cli-mac) - Control Spotify without leaving your terminal. :notes: **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [StargateDAW](https://github.com/stargatedaw/stargate) - An all-in-one digital audio workstation (DAW) and plugin suite **Languages:** C icon C Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(3 more screenshots available in the repository)*

- [YouTube-Music](https://github.com/steve228uk/YouTube-Music) - macOS wrapper for music.youtube.com. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

### 📰 News (6) - [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Diurna](https://github.com/ngquerol/Diurna) - Basic/Classic Hacker News app, used as a Cocoa & Swift learning platform. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [hacker-menu](https://github.com/owenthereal/hacker-menu) - Hacker News Delivered to Desktop. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [NetNewsWire](https://github.com/Ranchero-Software/NetNewsWire) - Feed reader for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Vienna](https://github.com/ViennaRSS/vienna-rss) - Vienna is a RSS/Atom newsreader for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io **Languages:** JavaScript icon JavaScript **Website:** [https://getstream.io/winds/](https://getstream.io/winds/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

### 📔 Notes (19) - [BibDesk](https://sourceforge.net/projects/bibdesk/) - Use BibDesk to edit and manage your bibliography **Languages:** Objective-C icon Objective-C **Website:** [https://bibdesk.sourceforge.io](https://bibdesk.sourceforge.io)
Screenshots

- [Boostnote](https://github.com/BoostIO/BoostNote-Legacy) - Note-taking application made for programmers just like you. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Dnote](https://github.com/dnote/dnote) - A simple command line notebook with multi-device sync and web interface. **Languages:** Go icon Go TypeScript icon TypeScript **Website:** [https://www.getdnote.com/](https://www.getdnote.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [FromScratch](https://github.com/Kilian/fromscratch) - Little app that you can use as a quick note taking or todo app. **Languages:** JavaScript icon JavaScript CSS icon CSS **Badges:** Latest Release   GitHub stars   Last commit   License - [FSNotes](https://github.com/glushchenko/fsnotes) - Notes manager for macOS/iOS: modern notational velocity (nvALT) on steroids. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [joplin](https://github.com/laurent22/joplin) - Note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Jupyter Notebook Viewer](https://github.com/tuxu/nbviewer-app) - Notebook viewer for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis. **Languages:** JavaScript icon JavaScript vue CSS icon CSS **Website:** [https://uselinked.com](https://uselinked.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [notable](https://github.com/jmcfarlane/notable) - Simple note taking application. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(4 more screenshots available in the repository)*

- [Notenik](https://github.com/hbowie/notenik-swift) - Note-taking app with many organizational options. **Languages:** Swift icon Swift **Website:** [https://notenik.app](https://notenik.app) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Notesnook](https://github.com/streetwriters/notesnook) - A fully open source and end-to-end encrypted note taking alternative to Evernote. **Languages:** JavaScript icon JavaScript TypeScript icon TypeScript **Website:** [https://notesnook.com](https://notesnook.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [NoteTaker](https://github.com/insidegui/NoteTaker) - Simple note taking app for macOS and iOS which uses Realm and CloudKit for syncing. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. **Languages:** C++ icon C++ **Website:** [https://www.qownnotes.org/](https://www.qownnotes.org/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Simplenote](https://github.com/Automattic/simplenote-macos) - Simplest way to keep notes. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Standard Notes](https://github.com/standardnotes/app) - Safe place for your notes, thoughts, and life's work. **Languages:** JavaScript icon JavaScript CSS icon CSS **Badges:** Latest Release   GitHub stars   Last commit   License - [Stik](https://github.com/0xMassi/stik_app) - Instant thought capture for macOS. Global hotkey summons a post-it note, type and close. Notes stored as plain markdown files. **Languages:** Rust icon Rust TypeScript icon TypeScript **Website:** [https://stik.ink](https://stik.ink) **Badges:** Latest Release   GitHub stars   Last commit   License - [tmpNote](https://github.com/buddax2/tmpNote) - Very simple macOS app to make temporary notes. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Tusk](https://github.com/klaudiosinani/tusk) - Unofficial, third-party, community driven Evernote app with a handful of useful features. **Languages:** JavaScript icon JavaScript CSS icon CSS **Badges:** Latest Release   GitHub stars   Last commit   License ### 📦 Other (25) - [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. **Languages:** JavaScript icon JavaScript **Website:** [https://betaflight.com/](https://betaflight.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Cakebrew](https://github.com/brunophilipe/Cakebrew) - Manage your Homebrew formulas with style using Cakebrew. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ChipMunk](https://github.com/esrlabs/chipmunk) - Log analysis tool. **Languages:** TypeScript icon TypeScript Rust icon Rust **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [DevDocs for macOS](https://github.com/dteoh/devdocs-macos) - An unofficial DevDocs API documentation viewer. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Gas Mask](https://github.com/2ndalpha/gasmask) - Hosts file manager for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Gramps](https://github.com/gramps-project/gramps) - A genealogy program that is both intuitive for hobbyists and feature-complete for professional genealogists. **Languages:** Python icon Python **Website:** [https://gramps-project.org](https://gramps-project.org) **Badges:** Latest Release   GitHub stars   Last commit   License - [Hosts](https://github.com/specialunderwear/Hosts.prefpane) - Cocoa GUI for /etc/hosts. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [ImageOptim](https://github.com/ImageOptim/ImageOptim) - GUI image optimizer for Mac. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Keyframes Player](https://github.com/insidegui/KeyframesPlayer) - Simple macOS app to preview animations created with Facebook's keyframes framework. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Lepton](https://github.com/hackjutsu/Lepton) - Democratizing Code Snippets Management (macOS/Win/Linux). **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Letters](https://github.com/klaaspieter/letters) - Teach your kids the alphabet and how to type. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [macGist](https://github.com/Bunn/macGist) - Simple app to send pasteboard items to GitHub's Gist. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Numi](https://github.com/nikolaeu/numi) - Beautiful calculator app for macOS **Languages:** JavaScript icon JavaScript **Website:** [https://numi.app/](https://numi.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Platypus](https://github.com/sveinbjornt/Platypus) - Mac developer tool that creates application bundles from command line scripts. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [QorumLogs](https://github.com/Esqarrouth/QorumLogs) - Swift Logging Utility for Xcode & Google Docs. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [React Native Debugger](https://github.com/jhen0409/react-native-debugger) - Desktop app for inspecting your React Native projects. macOS, Linux, and Windows. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Reactotron](https://github.com/infinitered/reactotron) - Desktop app for inspecting your React JS and React Native projects. macOS, Linux, and Windows. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [RktMachine](https://github.com/woofwoofinc/rktmachine) - Menu bar macOS app for running rkt in a macOS hypervisor CoreOS VM. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Ruby.app](https://github.com/gosu/ruby-app) - macOS app that contains a full Ruby installation (for use with Ruby/Gosu). **Languages:** Ruby icon Ruby **Badges:** Latest Release   GitHub stars   Last commit   License - [Shuttle](https://github.com/fitztrev/shuttle) - Simple SSH shortcut menu for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SwiftyBeaver](https://github.com/SwiftyBeaver/SwiftyBeaver) - Convenient logging during development & release in Swift. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [SwitchShuttle](https://github.com/s00d/switchshuttle) - Simple commands shortcut menu for macOS. **Languages:** Rust icon Rust **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [syncthing-macosx](https://github.com/syncthing/syncthing-macos) - Frugal nativemacOS macOS Syncthing application bundle. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Unused](https://github.com/jeffhodnett/Unused) - Mac app for checking Xcode projects for unused resources. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Vagrant Manager](https://github.com/lanayotech/vagrant-manager) - Manage your vagrant machines in one place with Vagrant Manager for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### ▶️ Player (6) - [IINA](https://github.com/iina/iina) - The modern video player for macOS. **Languages:** Swift icon Swift **Website:** [https://iina.io](https://iina.io) **Badges:** Latest Release   GitHub stars   Last commit   License - [MacMorpheus](https://github.com/emoRaivis/MacMorpheus) - 3D 180/360 video player for macOS for PSVR with head tracking. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Movie Monad](https://github.com/lettier/movie-monad) - Desktop video player built with Haskell that uses GStreamer and GTK+. **Languages:** Haskell icon Haskell **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MPlayerX](https://github.com/niltsh/MPlayerX) - Media player on macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. **Languages:** C icon C **Website:** [https://mpv.io](https://mpv.io) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. **Languages:** Swift icon Swift **Website:** [https://www.plugformac.com/](https://www.plugformac.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 🎙️ Podcast (7) - [Cumulonimbus](https://github.com/z-------------/CPod) - Simple, beautiful podcast app. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Doughnut](https://github.com/dyerc/Doughnut) - Podcast player and library for mac **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [gPodder](https://github.com/gpodder/gpodder) - gPodder is a simple, open source podcast client. **Languages:** Python icon Python **Website:** [https://gpodder.github.io/](https://gpodder.github.io/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [mkchromecast](https://github.com/muammar/mkchromecast) - Cast macOS and Linux Audio/Video to your Google Cast and Sonos Devices. **Languages:** Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License - [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Podlive for macOS](https://github.com/Podlive/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). **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io **Languages:** JavaScript icon JavaScript **Website:** [https://getstream.io/winds/](https://getstream.io/winds/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

### ⏱️ Productivity (78) - [ActivityWatch](https://github.com/ActivityWatch/activitywatch) - Open-source automated time tracker that tracks how you spend time on your devices. **Languages:** Python icon Python TypeScript icon TypeScript **Website:** [https://activitywatch.net](https://activitywatch.net) **Badges:** Latest Release   GitHub stars   Last commit   License - [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app. **Languages:** JavaScript icon JavaScript CSS icon CSS **Badges:** Latest Release   GitHub stars   Last commit   License - [App Fair](https://github.com/App-Fair/App) - Find and install macOS apps from Homebrew Cask and Fairground App catalogs. **Languages:** Swift icon Swift **Website:** [https://appfair.app](https://appfair.app) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [BibDesk](https://sourceforge.net/projects/bibdesk/) - Use BibDesk to edit and manage your bibliography **Languages:** Objective-C icon Objective-C **Website:** [https://bibdesk.sourceforge.io](https://bibdesk.sourceforge.io)
Screenshots

- [Blink Eye](https://github.com/nomandhoni-cs/blink-eye) - An Open-Source minimalist Eye Care reminder & Break Timer app for Windows, macOS, and Linux. **Languages:** TypeScript icon TypeScript Rust icon Rust **Website:** [https://blinkeye.vercel.app/](https://blinkeye.vercel.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [Bye-AppQuit](https://github.com/designsbymuzeer/Bye-Mac-App) - A minimal native macOS app to quickly view and Bulk kill running processes. **Languages:** Swift icon Swift **Website:** [https://github.com/designsbymuzeer/Bye-Mac-App](https://github.com/designsbymuzeer/Bye-Mac-App) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Cerebro](https://github.com/cerebroapp/cerebro) - Cross-platform launcher app. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Clendar](https://github.com/vinhnx/Clendar) - Clendar is an universal calendar app. Written in SwiftUI. **Languages:** Swift icon Swift **Website:** [https://apps.apple.com/us/app/clendar-a-calendar-app/id1548102041](https://apps.apple.com/us/app/clendar-a-calendar-app/id1548102041) **Badges:** App Store App Store   Latest Release   GitHub stars   Last commit   License
Screenshots

- [Clipboard](https://github.com/Slackadays/Clipboard) - An easy-to-use clipboard manager with time saving features that work across all terminals. **Languages:** C++ icon C++ **Website:** [https://GetClipboard.app](https://GetClipboard.app) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ClipMenu](https://github.com/naotaka/ClipMenu) - Clipboard manager for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Clocker](https://github.com/n0shake/Clocker) - macOS app to plan and organize through timezones. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Condution](https://github.com/Shabang-Systems/Condution) - Create tasks, manage due dates, and filter with powerful perspectives. **Languages:** JavaScript icon JavaScript **Website:** [https://www.condution.com](https://www.condution.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ControlPlane](https://github.com/dustinrue/ControlPlane) - Automate running tasks based on where you are or what you do. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator... **Languages:** Swift icon Swift **Website:** [https://devutils.com](https://devutils.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Dockit](https://github.com/xicheng148/Dockit) - An application that can dock any window to the edge of the screen. **Languages:** Swift icon Swift **Website:** [[official site](https://dockit-docs.pages.dev/?s=open-sourse-mac-os-apps)]([official site](https://dockit-docs.pages.dev/?s=open-sourse-mac-os-apps)) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [DropPoint](https://github.com/GameGodS3/DropPoint) - Make drag-and-drop easier using DropPoint. Helps to drag content without having to open side-by-side windows. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [espanso](https://github.com/espanso/espanso) - Cross-platform Text Expander, a powerful replacement for Alfred Snippets **Languages:** Rust icon Rust **Website:** [https://espanso.org](https://espanso.org) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2 **Languages:** C icon C C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License - [File Architect](https://github.com/filearchitect/app) - Create file and folder structures from plain text descriptions. **Languages:** TypeScript icon TypeScript Rust icon Rust **Website:** [https://filearchitect.com](https://filearchitect.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Flycut](https://github.com/TermiT/flycut) - Clean and simple clipboard manager for developers. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Freeter](https://github.com/FreeterApp/Freeter) - App that allows you to gather everything you need for work in one place, organized by projects and workflows, and have a quick access to them. **Languages:** TypeScript icon TypeScript **Website:** [https://freeter.io/](https://freeter.io/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Ice](https://github.com/jordanbaird/Ice) - Ice is a versatile menu bar manager that goes beyond hiding and showing items to offer a rich set of productivity features. **Languages:** Swift icon Swift **Website:** [https://icemenubar.app/](https://icemenubar.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar. **Languages:** Objective-C icon Objective-C **Website:** [https://www.mowglii.com/itsycal/](https://www.mowglii.com/itsycal/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [KeyHolder](https://github.com/Clipy/KeyHolder) - Record shortcuts in macOS, like Alfred.app. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Kiwix](https://github.com/kiwix/apple) - Kiwix for iOS and macOS, build on Swift. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. **Languages:** Swift icon Swift **Website:** [https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12](https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12) **Badges:** App Store App Store   Latest Release   GitHub stars   Last commit   License
Screenshots

- [linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis. **Languages:** JavaScript icon JavaScript vue CSS icon CSS **Website:** [https://uselinked.com](https://uselinked.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Linked Ideas](https://github.com/fespinoza/LinkedIdeas) - macOS application to write down and connect ideas. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Mac Screenshot Tracker](https://github.com/instance01/mac-screenshot-tracker) - An open source, free and hackable screenshot tracker. Re-watch what you've been working on! **Languages:** Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Maccy](https://github.com/p0deje/Maccy) - Lightweight search-as-you-type clipboard manager. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [macOrganizer](https://github.com/shubhambatra3019/macOrganizer) - macOS app for organizing files or removing unnecessary files. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Manta](https://github.com/hql287/Manta) - Flexible invoicing desktop app with beautiful & customizable templates. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse **Languages:** C icon C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Numi](https://github.com/nikolaeu/numi) - Beautiful calculator app for macOS **Languages:** JavaScript icon JavaScript **Website:** [https://numi.app/](https://numi.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [OmniPrompt](https://github.com/nsmet/omniprompt-gpt-mac-app) - Your ultimate GPT companion for seamless access on your Mac **Languages:** Swift icon Swift **Website:** [https://omniprompt.app/](https://omniprompt.app/) **Badges:** Latest Release   GitHub stars   Last commit   License - [Paperless Desktop](https://github.com/thomasbrueggemann/paperless-desktop) - Desktop app that uses the paperless API to manage your document scans. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [PDF Archiver](https://github.com/PDF-Archiver/PDF-Archiver) - Nice tool for tagging and archiving tasks. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [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. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [Pomodoro Cycle](https://github.com/ziulev/pomodoro-cycle-app) - Pomodoro Cycle for macOS **Languages:** TypeScript icon TypeScript **Website:** [https://github.com/ziulev/pomodoro-cycle-app/releases](https://github.com/ziulev/pomodoro-cycle-app/releases) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. **Languages:** C++ icon C++ **Website:** [https://www.qownnotes.org/](https://www.qownnotes.org/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Quickwords](https://github.com/quickwords/quickwords) - Write anything in a matter of seconds. Create snippets that can substitute text, execute tedious tasks and more. **Languages:** JavaScript icon JavaScript CSS icon CSS **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Readest](https://github.com/readest/readest) - Readest is a modern, feature-rich ebook reader designed for avid readers. **Languages:** TypeScript icon TypeScript **Website:** [https://readest.com](https://readest.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

- [reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system. **Languages:** TypeScript icon TypeScript Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [RustCast](https://github.com/unsecretised/rustcast) - Blazingly fast, customisable multi tool, application launcher **Languages:** Rust icon Rust **Website:** [https://rustcast.umangsurana.com](https://rustcast.umangsurana.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SaneClip](https://github.com/sane-apps/SaneClip) - Clipboard manager with Touch ID protection, AES-256-GCM encryption, and sensitive data detection. **Languages:** Swift icon Swift **Website:** [https://saneclip.com](https://saneclip.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SaneSales](https://github.com/sane-apps/SaneSales) - Universal indie sales tracker for LemonSqueezy, Gumroad, and Stripe with on-device privacy. **Languages:** Swift icon Swift **Website:** [https://sanesales.com](https://sanesales.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ScreenHint](https://github.com/salemhilal/ScreenHint) - A simple screenshotting utility for thinking clearly. **Languages:** Swift icon Swift **Website:** [https://screenhint.com](https://screenhint.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Screenpipe](https://github.com/screenpipe/screenpipe) - 24/7 screen and audio recording with AI-powered search. Local-first, privacy-focused rewind alternative. **Languages:** Rust icon Rust TypeScript icon TypeScript **Website:** [https://screenpi.pe](https://screenpi.pe) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Slime](https://github.com/Mas0nSun/Slime) - App icon assets generator written in SwiftUI **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Speed Reader](https://github.com/LumingYin/SpeedReader) - Read faster with the power of silencing vocalization with SpeedReader. **Languages:** Swift icon Swift **Website:** [https://apps.apple.com/app/speed-reader/id1258448209](https://apps.apple.com/app/speed-reader/id1258448209) **Badges:** App Store App Store   Latest Release   GitHub stars   Last commit   License
Screenshots

- [Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative. **Languages:** TypeScript icon TypeScript Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [sqlectron](https://github.com/sqlectron/sqlectron-gui) - A simple and lightweight SQL client desktop/terminal with cross database and platform support. **Languages:** TypeScript icon TypeScript **Website:** [https://sqlectron.github.io/](https://sqlectron.github.io/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [status-bar-todo](https://github.com/Onix-Systems/osx-status-bar-todo) - Simple macOS app to keep TODO-list in status bar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [StickyNotes](https://github.com/LumingYin/StickyNotes) - A Windows 10-esque Sticky Notes app implemented in AppKit. **Languages:** Swift icon Swift **Website:** [https://github.com/LumingYin/StickyNotes/releases](https://github.com/LumingYin/StickyNotes/releases) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Strategr](https://github.com/khrykin/StrategrDesktop) - No-fuss time management. **Languages:** C++ icon C++ Objective-C icon Objective-C **Website:** [https://khrykin.github.io/StrategrDesktop/](https://khrykin.github.io/StrategrDesktop/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [stretchly](https://github.com/hovancik/stretchly) - Cross-platform electron app that reminds you to take breaks when working with computer. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. **Languages:** TypeScript icon TypeScript JavaScript icon JavaScript **Website:** [https://super-productivity.com](https://super-productivity.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Thyme](https://github.com/joaomoreno/thyme) - The task timer for OS X. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Time to Leave](https://github.com/thamara/time-to-leave) - Log work hours and get notified when it's time to leave the office and start to live. **Languages:** JavaScript icon JavaScript CSS icon CSS html **Website:** [https://timetoleave.app/](https://timetoleave.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Timer](https://github.com/michaelvillar/timer-app) - Simple Timer app for Mac. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording. **Languages:** CSS icon CSS JavaScript icon JavaScript TypeScript icon TypeScript **Website:** [https://timescribe.app](https://timescribe.app) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

- [TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording. **Languages:** CSS icon CSS JavaScript icon JavaScript TypeScript icon TypeScript **Website:** [https://timescribe.app](https://timescribe.app) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

- [Toggl Desktop](https://github.com/toggl-open-source/toggldesktop) - Toggl Desktop app for Windows, Mac and Linux. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License - [TomatoBar](https://github.com/ivoronin/TomatoBar) - Pomodoro Technique Timer for macOS with Touch Bar support. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Ueli](https://github.com/oliverschwendener/ueli) - A keystroke launcher for macOS (and Windows) like Spotlight or Alfred. **Languages:** TypeScript icon TypeScript **Website:** [https://ueli.app/](https://ueli.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Watson](https://github.com/TailorDev/Watson) - A CLI application for time tracking. **Languages:** Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Whale](https://github.com/1000ch/whale) - Unofficial Trello app. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Xournal++](https://github.com/xournalpp/xournalpp/) - Take handwritten notes with ease **Languages:** C++ icon C++ Lua icon Lua C icon C Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License - [Yippy](https://github.com/mattDavo/Yippy) - macOS open source clipboard manager **Languages:** Swift icon Swift **Website:** [https://yippy.mattdavo.com](https://yippy.mattdavo.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Yomu](https://github.com/sendyhalim/Yomu) - Manga reader app for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License ### 🌙 Screensaver (10) - [Aerial](https://github.com/JohnCoates/Aerial) - Apple TV Aerial Screensaver for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(3 more screenshots available in the repository)*

- [Brooklyn](https://github.com/pedrommcarrasco/Brooklyn) - Screensaver inspired by Apple's Event on October 30, 2018. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Epoch Flip Clock Screensaver](https://github.com/chrstphrknwtn/epoch-flip-clock-screensaver) - Unix epoch timestamp flip clock screensaver. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Irvue](https://github.com/leonspok/Irvue-Screensaver) - Screensaver for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Life Saver](https://github.com/amiantos/lifesaver) - An abstract screensaver based on Conway's Game of Life implemented with SpriteKit **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MinimalClock](https://github.com/mattiarossini/MinimalClock) - Simple and elegant screensaver that displays the time. **Languages:** Swift icon Swift **Website:** [https://mattiarossini.github.io/MinimalClock/](https://mattiarossini.github.io/MinimalClock/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MusaicFM](https://github.com/obrhoff/MusaicFM) - iTunes Screensaver Clone for Spotify and Last.fm **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Predator](https://github.com/vpeschenkov/Predator) - A predator-inspired clock screensaver for macOS **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [The GitHub Matrix Screensaver](https://github.com/winterbe/github-matrix-screensaver) - The GitHub Matrix Screensaver for macOS. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 🔒 Security (11) - [Cloaker](https://github.com/spieglt/cloaker) - simple drag-and-drop, password-based file encryption. **Languages:** Rust icon Rust **Website:** [https://adequate.systems/](https://adequate.systems/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Cryptomator](https://github.com/cryptomator/cryptomator) - Multi-platform transparent client-side encryption of your files in the cloud. **Languages:** Java icon Java **Website:** [https://cryptomator.org/](https://cryptomator.org/) **Badges:** Latest Release   GitHub stars   Last commit   License - [LuLu](https://github.com/objective-see/LuLu) - LuLu is macOS firewall application that aims to block unauthorized (outgoing) network traffic. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. **Languages:** Shell icon Shell **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene. **Languages:** Swift icon Swift **Website:** [https://paretosecurity.com/](https://paretosecurity.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [SaneClip](https://github.com/sane-apps/SaneClip) - Clipboard manager with Touch ID protection, AES-256-GCM encryption, and sensitive data detection. **Languages:** Swift icon Swift **Website:** [https://saneclip.com](https://saneclip.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SaneHosts](https://github.com/sane-apps/SaneHosts) - System-level ad and tracker blocker via /etc/hosts with 200+ curated blocklists and Touch ID protection. **Languages:** Swift icon Swift **Website:** [https://sanehosts.com](https://sanehosts.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [stronghold](https://github.com/alichtman/stronghold) - Easily configure macOS security settings from the terminal. **Languages:** Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Swifty](https://github.com/swiftyapp/swifty) - Free and offline password manager. **Languages:** JavaScript icon JavaScript **Website:** [https://getswifty.pro](https://getswifty.pro) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [VeraCrypt](https://github.com/veracrypt/VeraCrypt) - Disk encryption with strong security based on TrueCrypt. **Languages:** C icon C C++ icon C++ **Website:** [https://www.veracrypt.fr](https://www.veracrypt.fr) **Badges:** Latest Release   GitHub stars   Last commit   License ### 📤 Sharing Files (11) - [Cyberduck](https://github.com/iterate-ch/cyberduck) - Cyberduck is a libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure & OneDrive, Google Drive and Dropbox. **Languages:** Java icon Java **Website:** [https://cyberduck.io](https://cyberduck.io) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Deluge](https://github.com/deluge-torrent/deluge) - Lightweight cross-platform BitTorrent client. **Languages:** Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License - [Easy Share Uploader](https://github.com/Aries-Sciences-LLC/Easy-Share-Uploader) - Allows users to easily host their local images to the internet through multiple services and available on App Store. **Languages:** Objective-C icon Objective-C **Website:** [https://ariessciences.com/highlight?product=easy-share-uploader](https://ariessciences.com/highlight?product=easy-share-uploader) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [FileZilla](https://sourceforge.net/projects/filezilla/) - Free open-source FTP, FTPS, and SFTP client. **Languages:** c++ **Website:** [https://filezilla-project.org](https://filezilla-project.org) - [mac2imgur](https://github.com/mileswd/mac2imgur) - Simple Mac app designed to make uploading images and screenshots to Imgur quick and effortless. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [NitroShare](https://github.com/nitroshare/nitroshare-desktop) - Transferring files from one device to another **Languages:** C++ icon C++ **Website:** [https://nitroshare.net](https://nitroshare.net) **Badges:** Latest Release   GitHub stars   Last commit   License - [qBittorrent](https://github.com/qbittorrent/qBittorrent) - BitTorrent client in Qt. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License - [Rhea](https://github.com/timonus/Rhea) - macOS status bar app for quickly sharing files and URLs. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Soduto](https://github.com/soduto/Soduto) - Soduto is a KDEConnect compatible application for macOS. It gives AirDrop like integration and allows file and clipboard sharing between your phones, desktops and tablets. **Languages:** Swift icon Swift Objective-C icon Objective-C **Website:** [https://soduto.com/](https://soduto.com/) **Badges:** Latest Release   GitHub stars   Last commit   License - [Transmission](https://github.com/transmission/transmission) - Official Transmission BitTorrent client repository. **Languages:** Objective-C icon Objective-C C icon C **Badges:** Latest Release   GitHub stars   Last commit   License - [Tribler](https://github.com/Tribler/tribler) - Privacy enhanced BitTorrent client with P2P content discovery. **Languages:** Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License ### 👥 Social Networking (9) - [Caprine](https://github.com/sindresorhus/caprine#features) - Elegant Facebook Messenger desktop app. **Languages:** JavaScript icon JavaScript CSS icon CSS **Badges:** Latest Release   GitHub stars   Last commit   License - [Goofy](https://github.com/danielbuechele/goofy) - Unofficial Facebook Messenger client. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Leviathan](https://github.com/Swiftodon/Leviathan) - Leviathan is a iOS and macOS client application for the Mastodon social network. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Messenger](https://github.com/rsms/fb-mac-messenger) - macOS app wrapping Facebook's Messenger for desktop. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Product Hunt](https://github.com/producthunt/producthunt-osx) - share and discover your favorite new products and applications. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Quail](https://github.com/1000ch/quail) - Unofficial [esa](https://esa.io) app. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram Desktop App. **Languages:** JavaScript icon JavaScript CSS icon CSS **Badges:** Latest Release   GitHub stars   Last commit   License - [RedditOS](https://github.com/Dimillian/RedditOS) - A SwiftUI Reddit client for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Simpo](https://github.com/KeliCheng/Simpo) - macOS menubar app to post status quickly. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 📡 Streaming (3) - [Galeri](https://github.com/michealparks/galeri) - Perpetual artwork streaming app. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [OBS Studio](https://github.com/obsproject/obs-studio) - Free and open source software for live streaming and screen recording. **Languages:** C++ icon C++ **Website:** [https://obsproject.com/](https://obsproject.com/) **Badges:** Latest Release   GitHub stars   Last commit   License - [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. **Languages:** Swift icon Swift **Website:** [https://www.plugformac.com/](https://www.plugformac.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### ⚙️ System (24) - [Apple Juice](https://github.com/raphaelhanneken/apple-juice) - Advanced battery gauge for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

- [Clean-Me](https://github.com/Kevin-De-Koninck/Clean-Me) - Small macOS app that acts as a system cleaner (logs, cache, ...). **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Diagnostics](https://github.com/macmade/Diagnostics) - Diagnostics is an application displaying the diagnostic reports from applications on macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [DisableMonitor](https://github.com/Eun/DisableMonitor) - Easily disable or enable a monitor on your Mac. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Fanny](https://github.com/DanielStormApps/Fanny) - Monitor your Mac's fan speed and CPU temperature from your Notification Center. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [HoRNDIS](https://github.com/jwise/HoRNDIS) - Android USB tethering driver for macOS. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License - [Juice](https://github.com/brianmichel/Juice) - Make your battery information a bit more interesting. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevents your Mac from going to sleep. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Loading](https://github.com/BonzaiThePenguin/Loading) - Simple network activity monitor for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MacNTop](https://github.com/CorvidLabs/MacNTop) - macOS menu bar system monitor with retro CRT aesthetics. **Languages:** Swift icon Swift **Website:** [https://github.com/CorvidLabs/MacNTop](https://github.com/CorvidLabs/MacNTop) **Badges:** Latest Release   GitHub stars   Last commit   License - [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. **Languages:** Shell icon Shell **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [macOSLucidaGrande](https://github.com/LumingYin/macOSLucidaGrande) - A small utility to set Lucida Grande as your Mac's system UI font. **Languages:** Objective-C icon Objective-C **Website:** [https://github.com/LumingYin/macOSLucidaGrande/releases](https://github.com/LumingYin/macOSLucidaGrande/releases) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Overkill](https://github.com/KrauseFx/overkill-for-mac) - Stop iTunes from opening when you connect your iPhone. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [ProfileCreator](https://github.com/ProfileCreator/ProfileCreator) - macOS Application to create standard or customized configuration profiles. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative. **Languages:** TypeScript icon TypeScript Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [VerticalBar](https://github.com/DeromirNeves/DockSeparator) - macOS application to add a vertical bar to Dock. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Wireshark](https://gitlab.com/wireshark/wireshark/-/tree/master) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions. **Languages:** C icon C c++ **Website:** [https://www.wireshark.org/](https://www.wireshark.org/) ### 📺 Terminal (15) - [Alacritty](https://github.com/alacritty/alacritty) - Cross-platform, GPU-accelerated terminal emulator. **Languages:** Rust icon Rust **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Bifrost](https://github.com/ishuah/bifrost) - A tiny terminal emulator for serial port communication (macOS/Linux). **Languages:** Go icon Go **Badges:** Latest Release   GitHub stars   Last commit   License - [cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Clipboard](https://github.com/Slackadays/Clipboard) - An easy-to-use clipboard manager with time saving features that work across all terminals. **Languages:** C++ icon C++ **Website:** [https://GetClipboard.app](https://GetClipboard.app) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Console](https://github.com/macmade/Console) - macOS console application. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Hyper](https://github.com/vercel/hyper) - Terminal built on web technologies. **Languages:** JavaScript icon JavaScript CSS icon CSS **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [iTerm 2](https://github.com/gnachman/iTerm2) - Terminal emulator for macOS that does amazing things. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Kitty](https://github.com/kovidgoyal/kitty) - Cross-platform, fast, feature full, GPU based terminal emulator. **Languages:** Python icon Python C icon C **Badges:** Latest Release   GitHub stars   Last commit   License - [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. **Languages:** Shell icon Shell **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - Finder Toolbar app for macOS to open the current directory in Terminal, iTerm, Hyper or Alacritty. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Tabby](https://github.com/Eugeny/tabby) - Powerful cross-platform terminal emulator, featuring a modern GUI, and offering SSH, serial, Telnet, and SCP client support. **Languages:** TypeScript icon TypeScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [wallpapper](https://github.com/mczachurski/wallpapper) - wallpapper is a console application for creating dynamic wallpapers for Mojave. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. **Languages:** Rust icon Rust **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 🎚️ Touch Bar (6) - [Muse](https://github.com/xzzz9097/Muse) - Spotify controller with TouchBar support. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MyTouchbarMyRules](https://github.com/toxblh/MTMR) - App to customize your Touch Bar as you want. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Pock](https://github.com/pock/pock) - Display macOS Dock in Touch Bar. **Languages:** Swift icon Swift **Website:** [https://pock.app/](https://pock.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Touch Bar Simulator](https://github.com/sindresorhus/touch-bar-simulator) - Use the Touch Bar on any Mac. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Touch Emoji](https://github.com/ilyalesik/touch-emoji) - Emoji picker for MacBook Pro Touch Bar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

### 🛠️ Utilities (112) - [ActivityWatch](https://github.com/ActivityWatch/activitywatch) - Open-source automated time tracker that tracks how you spend time on your devices. **Languages:** Python icon Python TypeScript icon TypeScript **Website:** [https://activitywatch.net](https://activitywatch.net) **Badges:** Latest Release   GitHub stars   Last commit   License - [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(2 more screenshots available in the repository)*

- [App Fair](https://github.com/App-Fair/App) - Find and install macOS apps from Homebrew Cask and Fairground App catalogs. **Languages:** Swift icon Swift **Website:** [https://appfair.app](https://appfair.app) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ArchiveMounter](https://github.com/ivoronin/ArchiveMounter) - Mounts archives like disk images. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Balena Etcher](https://github.com/balena-io/etcher) - Flash OS images to SD cards & USB drives, safely and easily. **Languages:** TypeScript icon TypeScript **Website:** [https://www.balena.io/etcher](https://www.balena.io/etcher) **Badges:** Latest Release   GitHub stars   Last commit   License - [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [BeardedSpice](https://github.com/beardedspice/beardedspice) - Control web based media players with the media keys found on Mac keyboards. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. **Languages:** JavaScript icon JavaScript **Website:** [https://betaflight.com/](https://betaflight.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Bitwarden](https://github.com/bitwarden/desktop) - Cross-platform password management solutions for individuals, teams, and business organizations. **Languages:** TypeScript icon TypeScript **Website:** [https://bitwarden.com/](https://bitwarden.com/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Bitwarden Menu](https://github.com/jnsdrtlf/bitwarden-menubar) - Bitwarden Password Manager in your menu bar **Languages:** TypeScript icon TypeScript Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Blink Eye](https://github.com/nomandhoni-cs/blink-eye) - An Open-Source minimalist Eye Care reminder & Break Timer app for Windows, macOS, and Linux. **Languages:** TypeScript icon TypeScript Rust icon Rust **Website:** [https://blinkeye.vercel.app/](https://blinkeye.vercel.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers. **Languages:** Swift icon Swift JavaScript icon JavaScript **Website:** [https://boop.okat.best](https://boop.okat.best) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Secure password manager for mac and other platforms. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Bye-AppQuit](https://github.com/designsbymuzeer/Bye-Mac-App) - A minimal native macOS app to quickly view and Bulk kill running processes. **Languages:** Swift icon Swift **Website:** [https://github.com/designsbymuzeer/Bye-Mac-App](https://github.com/designsbymuzeer/Bye-Mac-App) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [calibre](https://github.com/kovidgoyal/calibre) - cross platform e-book manager. **Languages:** Python icon Python **Website:** [https://calibre-ebook.com](https://calibre-ebook.com) **Badges:** Latest Release   GitHub stars   Last commit   License - [Catch](https://github.com/mipstian/catch/) - Catch: Broadcatching made easy. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Clear Clipboard Text Format](https://github.com/LumingYin/ClipboardClear) - Easily clear the format of your clipboard text with Clear Clipboard Text Format. **Languages:** Objective-C icon Objective-C **Website:** [https://apps.apple.com/app/clear-clipboard-text-format/id1322855232](https://apps.apple.com/app/clear-clipboard-text-format/id1322855232) **Badges:** App Store App Store   Latest Release   GitHub stars   Last commit   License
Screenshots

- [ClipFlow](https://github.com/praneeth552/clipflow) - Clipboard history manager for macOS with terminal-style navigation, image previews, and cursor-following popup. **Languages:** Swift icon Swift **Website:** [https://github.com/praneeth552/clipflow](https://github.com/praneeth552/clipflow) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [CoreLocationCLI](https://github.com/fulldecent/corelocationcli) - Get the physical location of your device and prints it to standard output **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [CornerCal](https://github.com/ekreutz/CornerCal) - Simple, clean calendar and clock app for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator... **Languages:** Swift icon Swift **Website:** [https://devutils.com](https://devutils.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [dupeGuru](https://github.com/arsenetar/dupeguru/) - dupeGuru is a tool to find duplicate files on your computer. It can scan using file names and file contents. **Languages:** Objective-C icon Objective-C **Website:** [https://dupeguru.voltaicideas.net/](https://dupeguru.voltaicideas.net/) **Badges:** Latest Release   GitHub stars   Last commit   License - [Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ECheck](https://github.com/josejuanqm/ECheck) - Small tool to validate epub files for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2 **Languages:** C icon C C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License - [File Architect](https://github.com/filearchitect/app) - Create file and folder structures from plain text descriptions. **Languages:** TypeScript icon TypeScript Rust icon Rust **Website:** [https://filearchitect.com](https://filearchitect.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Flying Carpet](https://github.com/spieglt/flyingcarpet) - cross-platform file transfer over ad-hoc wifi, like AirDrop but for Mac/Windows/Linux. **Languages:** Go icon Go **Website:** [https://adequate.systems/](https://adequate.systems/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [fselect](https://github.com/jhspetersson/fselect) - Command-line tool to search files with SQL syntax. **Languages:** Rust icon Rust **Badges:** Latest Release   GitHub stars   Last commit   License - [Funky](https://github.com/thecatalinstan/Funky) - Easily toggle the function key on your Mac on a per app basis. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [GrandPerspective](https://git.code.sf.net/p/grandperspectiv/source) - Small utility for visualizing disk usage using tree maps. **Languages:** Objective-C icon Objective-C **Website:** [https://grandperspectiv.sourceforge.net](https://grandperspectiv.sourceforge.net)
Screenshots

- [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 **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Manage grayscale mode from menu bar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Gridfy](https://github.com/Slllava/gridfy) - Quickly calculate column widths and get correct results for your grid. **Languages:** JavaScript icon JavaScript TypeScript icon TypeScript **Website:** [https://gridfy.astroon.pro/](https://gridfy.astroon.pro/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [homebrew-cask](https://github.com/Homebrew/homebrew-cask) - A CLI workflow for the administration of macOS applications distributed as binaries **Languages:** Ruby icon Ruby **Website:** [https://brew.sh/](https://brew.sh/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Ice](https://github.com/jordanbaird/Ice) - Ice is a versatile menu bar manager that goes beyond hiding and showing items to offer a rich set of productivity features. **Languages:** Swift icon Swift **Website:** [https://icemenubar.app/](https://icemenubar.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Input Source Pro](https://github.com/runjuu/InputSourcePro/) - Input Source Pro is macOS utility designed for multilingual users who frequently switch input sources. **Languages:** Swift icon Swift **Website:** [https://inputsource.pro](https://inputsource.pro) **Badges:** Latest Release   GitHub stars   Last commit   License - [iOScanX](https://github.com/alessiomaffeis/iOScanX) - Cocoa application for semi-automated iOS app analysis and evaluation. **Languages:** Objective-C icon Objective-C C icon C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Kap](https://github.com/wulkano/kap) - Screen recorder application built with web technology. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [KeePassXC](https://github.com/keepassxreboot/keepassxc) - Cross-platform community-driven port of the Windows application "Keepass Password Safe" **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License - [KeeWeb](https://github.com/keeweb/keeweb) - Cross-platform password manager compatible with KeePass. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [Keka](https://github.com/aonez/Keka) - Keka is a full featured file archiver, as easy as it can be. **Languages:** Swift icon Swift **Website:** [https://www.keka.io/en/](https://www.keka.io/en/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Kyapchar](https://github.com/vishaltelangre/Kyapchar) - Simple screen and microphone audio recorder for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. **Languages:** Swift icon Swift **Website:** [https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12](https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12) **Badges:** App Store App Store   Latest Release   GitHub stars   Last commit   License
Screenshots

- [LocationSimulator](https://github.com/Schlaubischlump/LocationSimulator) - Application to spoof your iOS or iPhoneSimulator location. **Languages:** Swift icon Swift **Website:** [https://schlaubischlump.github.io/LocationSimulator](https://schlaubischlump.github.io/LocationSimulator) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Lunar](https://github.com/alin23/lunar) - Intelligent adaptive brightness for your external displays. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [mac-sound-fix](https://github.com/dragstor/mac-sound-fix) - Mac Sound Re-Enabler. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. **Languages:** Shell icon Shell **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MacPacker](https://github.com/sarensw/MacPacker/) - Archive manager for macOS. Preview (nested) archives without extracting them. Extract single files. **Languages:** Swift icon Swift **Website:** [https://macpacker.app/](https://macpacker.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MacPass](https://github.com/MacPass/MacPass) - Native macOS KeePass client. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Maria](https://github.com/shincurry/Maria) - macOS native app/widget for aria2 download tool. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Meme Maker](https://github.com/MemeMaker/Meme-Maker-Mac) - Meme Maker macOS application for meme creation. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse **Languages:** C icon C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MiddleDrag](https://github.com/NullPointerDepressiveDisorder/MiddleDrag) - Three-finger trackpad gestures for middle-click and middle-drag. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys. **Languages:** Swift icon Swift Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Monolingual](https://github.com/IngmarStein/Monolingual) - Remove unnecessary language resources from macOS **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Mos](https://github.com/Caldis/Mos) - Smooth your mouse's scrolling and reverse the mouse scroll direction **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client. **Languages:** JavaScript icon JavaScript TypeScript icon TypeScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [nix-package-manager](https://github.com/NixOS/nix) - Nix is a reproducible package manager alternative to Homebrew, with over 80,000 packages. **Languages:** c++ Shell icon Shell nix **Website:** [https://nixos.org/explore.html](https://nixos.org/explore.html) **Badges:** Latest Release   GitHub stars   Last commit   License - [Nmap](https://github.com/nmap/nmap) - Nmap - the Network Mapper. **Languages:** C++ icon C++ **Website:** [https://nmap.org](https://nmap.org) **Badges:** Latest Release   GitHub stars   Last commit   License - [Nocturnal](https://github.com/joshjon/nocturnal) - Menu bar app featuring darker than dark dimming, Night Shift fine tuning, and the ability to turn off TouchBar on MacBook Pro. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Noti](https://github.com/jariz/Noti/) - Receive Android notifications on your mac (with PushBullet). **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Numi](https://github.com/nikolaeu/numi) - Beautiful calculator app for macOS **Languages:** JavaScript icon JavaScript **Website:** [https://numi.app/](https://numi.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [NVM](https://github.com/nvm-sh/nvm) - Node Version Manager. **Languages:** Shell icon Shell **Badges:** Latest Release   GitHub stars   Last commit   License - [OmniPrompt](https://github.com/nsmet/omniprompt-gpt-mac-app) - Your ultimate GPT companion for seamless access on your Mac **Languages:** Swift icon Swift **Website:** [https://omniprompt.app/](https://omniprompt.app/) **Badges:** Latest Release   GitHub stars   Last commit   License - [OnlySwitch](https://github.com/jacklandrin/OnlySwitch) - All-in-One status bar button, hide MacBook Pro's notch, dark mode, AirPods, Shortcuts **Languages:** Swift icon Swift **Website:** [https://www.jacklandrin.com/2021/12/01/onlyswitch/](https://www.jacklandrin.com/2021/12/01/onlyswitch/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [OpenCore Legacy Patcher](https://github.com/dortania/OpenCore-Legacy-Patcher) - OpenCore Legacy Patcher is a tool for installing new MacOS versions on legacy macs. **Languages:** Python icon Python **Website:** [https://dortania.github.io/OpenCore-Legacy-Patcher/](https://dortania.github.io/OpenCore-Legacy-Patcher/) **Badges:** Latest Release   GitHub stars   Last commit   License - [OpenRocket](https://github.com/openrocket/openrocket) - OpenRocket is a cross-platform utility tool to model and simulate model rockets and their flight characteristics. **Languages:** Java icon Java **Website:** [https://openrocket.info/](https://openrocket.info/) **Badges:** Latest Release   GitHub stars   Last commit   License - [Padlock](https://github.com/padloc/padloc) - A minimal, open source password manager for macOS. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [PB for Desktop](https://github.com/sidneys/pb-for-desktop) - Receive native push notifications on macOS, Windows and Linux. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [PeaZip](https://github.com/peazip/PeaZip) - Free file archiver utility and open source file compression and encryption tool supporting 200+ formats. **Languages:** pascal **Website:** [https://peazip.github.io/](https://peazip.github.io/) **Badges:** Latest Release   GitHub stars   Last commit   License - [PercentCalculator](https://github.com/cemolcay/PercentCalculator) - A menu bar application that calculates percents. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. **Languages:** Swift icon Swift metal **Website:** [https://superhighfives.com/pika](https://superhighfives.com/pika) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Plain Pasta](https://github.com/hisaac/PlainPasta) - Plaintextify your clipboard **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [PlugNPlayMac](https://github.com/Piero24/PlugNPlayMac) - A script to automate tasks when connect a device to your Mac **Languages:** Shell icon Shell **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [PowerShell](https://github.com/powershell/powershell) - PowerShell is a cross-platform automation and configuration tool/framework that works well with your existing tools. **Languages:** C# icon C# **Badges:** Latest Release   GitHub stars   Last commit   License - [Rugby](https://github.com/swiftyfinch/Rugby) - 🏈 Cache CocoaPods for faster rebuild and indexing Xcode project. **Languages:** Swift icon Swift **Website:** [https://swiftyfinch.github.io/en/2021-03-09-rugby-story/](https://swiftyfinch.github.io/en/2021-03-09-rugby-story/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [RustCast](https://github.com/unsecretised/rustcast) - Blazingly fast, customisable multi tool, application launcher **Languages:** Rust icon Rust **Website:** [https://rustcast.umangsurana.com](https://rustcast.umangsurana.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SaneBar](https://github.com/sane-apps/SaneBar) - Privacy-first menu bar manager with Touch ID lock, Always-Hidden Zone, and automation triggers. **Languages:** Swift icon Swift **Website:** [https://sanebar.com](https://sanebar.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SaneClick](https://github.com/sane-apps/SaneClick) - Finder extension with 51+ right-click actions for file management, image conversion, and developer tools. **Languages:** Swift icon Swift **Website:** [https://saneclick.com](https://saneclick.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SaneClip](https://github.com/sane-apps/SaneClip) - Clipboard manager with Touch ID protection, AES-256-GCM encryption, and sensitive data detection. **Languages:** Swift icon Swift **Website:** [https://saneclip.com](https://saneclip.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SaneHosts](https://github.com/sane-apps/SaneHosts) - System-level ad and tracker blocker via /etc/hosts with 200+ curated blocklists and Touch ID protection. **Languages:** Swift icon Swift **Website:** [https://sanehosts.com](https://sanehosts.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SaneSales](https://github.com/sane-apps/SaneSales) - Universal indie sales tracker for LemonSqueezy, Gumroad, and Stripe with on-device privacy. **Languages:** Swift icon Swift **Website:** [https://sanesales.com](https://sanesales.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ScreenCat](https://github.com/maxogden/screencat) - ScreenCat is a screen sharing + remote collaboration application. **Languages:** JavaScript icon JavaScript CSS icon CSS **Badges:** Latest Release   GitHub stars   Last commit   License - [ScreenHint](https://github.com/salemhilal/ScreenHint) - A simple screenshotting utility for thinking clearly. **Languages:** Swift icon Swift **Website:** [https://screenhint.com](https://screenhint.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Screenpipe](https://github.com/screenpipe/screenpipe) - 24/7 screen and audio recording with AI-powered search. Local-first, privacy-focused rewind alternative. **Languages:** Rust icon Rust TypeScript icon TypeScript **Website:** [https://screenpi.pe](https://screenpi.pe) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Slime](https://github.com/Mas0nSun/Slime) - App icon assets generator written in SwiftUI **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SlowQuitApps](https://github.com/dteoh/SlowQuitApps) - Add a global delay to Command-Q to stop accidental app quits. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Smotrite](https://github.com/Lukentui/smotrite-app) - Smotrite is a system monitor for macOS, which just work. **Languages:** TypeScript icon TypeScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative. **Languages:** TypeScript icon TypeScript Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF) - Locally hosted web application that allows you to perform various operations on PDF files **Languages:** Java icon Java html JavaScript icon JavaScript html **Website:** [stirlingpdf.com](stirlingpdf.com) **Badges:** Latest Release   GitHub stars   Last commit   License - [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. **Languages:** TypeScript icon TypeScript JavaScript icon JavaScript **Website:** [https://super-productivity.com](https://super-productivity.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Telephone](https://github.com/64characters/Telephone) - SIP softphone for macOS. **Languages:** Objective-C icon Objective-C Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [The Blockstack Browser](https://github.com/stacks-network/blockstack-browser) - Blockstack is an internet for decentralized apps where users own their data. The Blockstack Browser allows you to explore the Blockstack internet. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [ToTheTop](https://github.com/zenangst/ToTheTop) - Small macOS application to help you scroll to the top. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [TRex](https://github.com/amebalabs/TRex) - TRex is the easiest way to copy the uncopyable text from images, YouTube videos, Zoom calls and more. If you can see it - you can copy it. TRex captures any text right into your Clipboard with magic of OCR. **Languages:** Swift icon Swift **Website:** [https://trex.ameba.co/](https://trex.ameba.co/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [VPN Bypass](https://github.com/GeiserX/VPN-Bypass) - Route specific domains and services around your corporate VPN while keeping the rest of your traffic protected. **Languages:** Swift icon Swift **Website:** [https://github.com/GeiserX/VPN-Bypass](https://github.com/GeiserX/VPN-Bypass) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [wechsel](https://github.com/friedrichweise/wechsel) - manage bluetooth connections with your keyboard. **Languages:** Swift icon Swift **Website:** [https://wechsel.weise.io](https://wechsel.weise.io) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Wireshark](https://github.com/wireshark/wireshark) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions. **Languages:** C++ icon C++ **Website:** [https://www.wireshark.org](https://www.wireshark.org) **Badges:** Latest Release   GitHub stars   Last commit   License - [Xournal++](https://github.com/xournalpp/xournalpp/) - Take handwritten notes with ease **Languages:** C++ icon C++ Lua icon Lua C icon C Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License - [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. **Languages:** Rust icon Rust **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Übersicht](https://github.com/felixhageloh/uebersicht) - Keep an eye on what's happening on your machine and in the world. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License ### 🔐 VPN & Proxy (8) - [clashX](https://github.com/yichengchen/clashX) - A rule based custom proxy with GUI for Mac base on clash. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [rvc-mac](https://github.com/riboseinc/cryptode-mac) - Ribose VPN Client macOS Menu App. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [ShadowsocksX-NG](https://github.com/shadowsocks/ShadowsocksX-NG) - Next Generation of ShadowsocksX. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Specht](https://github.com/zhuhaow/Specht) - Rule-based proxy app built with Network Extension for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [SpechtLite](https://github.com/zhuhaow/SpechtLite) - Rule-based proxy app for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Tunnelblick](https://github.com/Tunnelblick/Tunnelblick) - Tunnelblick is a graphic user interface for OpenVPN on macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [VPN Bypass](https://github.com/GeiserX/VPN-Bypass) - Route specific domains and services around your corporate VPN while keeping the rest of your traffic protected. **Languages:** Swift icon Swift **Website:** [https://github.com/GeiserX/VPN-Bypass](https://github.com/GeiserX/VPN-Bypass) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [WireGuard](https://git.zx2c4.com/wireguard-apple/) - Fast, Modern, Secure VPN Tunnel. **Languages:** Swift icon Swift **Website:** [https://www.wireguard.com/](https://www.wireguard.com/) ### 🎬 Video (20) - [Acid.Cam.v2.OSX](https://github.com/lostjared/Acid.Cam.v2.OSX) - Acid Cam v2 for macOS distorts video to create art. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License - [AppleEvents](https://github.com/insidegui/AppleEvents) - Unofficial Apple Events app for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Datamosh](https://github.com/maelswarm/Datamosh) - Datamosh your videos on macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Face Data](https://github.com/xiaohk/FaceData) - macOS application used to auto-annotate landmarks from a video. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Gifted](https://github.com/vdel26/gifted) - Turn any short video into an animated GIF quickly and easily. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [GNU Gatekeeper](https://github.com/willamowius/gnugk) - Video conferencing server for H.323 terminals. **Languages:** C++ icon C++ **Website:** [https://www.gnugk.org](https://www.gnugk.org) **Badges:** Latest Release   GitHub stars   Last commit   License - [HandBrake](https://github.com/HandBrake/HandBrake) - HandBrake is a video transcoder available for Linux, Mac, and Windows. **Languages:** C icon C **Badges:** Latest Release   GitHub stars   Last commit   License - [LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding. **Languages:** JavaScript icon JavaScript **Website:** [https://mifi.no/losslesscut/](https://mifi.no/losslesscut/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [MenuTube](https://github.com/edanchenkov/MenuTube) - Catch YouTube into your macOS menu bar! **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License - [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. **Languages:** C icon C **Website:** [https://mpv.io](https://mpv.io) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [OpenShot](https://github.com/OpenShot/openshot-qt) - Easy to use, quick to learn, and surprisingly powerful video editor. **Languages:** Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License - [Quick Caption](https://github.com/LumingYin/Caption) - Transcribe and generate caption files (SRT, ASS and FCPXML) without manually entering time codes. **Languages:** Swift icon Swift **Website:** [https://apps.apple.com/app/quick-caption/id1363610340](https://apps.apple.com/app/quick-caption/id1363610340) **Badges:** App Store App Store   Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Subler](https://bitbucket.org/galad87/subler/src) - Subler is an macOS app created to mux and tag mp4 files. **Languages:** Objective-C icon Objective-C **Website:** [https://subler.org](https://subler.org) - [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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [VLC](https://github.com/videolan/vlc) - VLC is a free and open source cross-platform multimedia player **Languages:** C icon C **Website:** [https://www.videolan.org/vlc/](https://www.videolan.org/vlc/) **Badges:** Latest Release   GitHub stars   Last commit   License - [WebTorrent Desktop](https://github.com/webtorrent/webtorrent-desktop) - Streaming torrent app. For Mac, Windows, and Linux. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Yape](https://github.com/leonspok/Yape) - Yet Another PiP Extension. Finds all HTML5 videos on a webpage and allows you to play them in Picture-in-Picture mode from the Safari toolbar. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Yoda](https://github.com/whoisandy/yoda) - Nifty macOS application which enables you to browse and download videos from YouTube. **Languages:** JavaScript icon JavaScript **Badges:** Latest Release   GitHub stars   Last commit   License ### 🖥️ Wallpaper (12) - [500-mac-wallpaper](https://github.com/markcheeky/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. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Artify](https://github.com/NghiaTranUIT/artify-macos) - A macOS application for bringing dedicatedly 18th century Arts to everyone **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

*(1 more screenshots available in the repository)*

- [ArtWall](https://github.com/JustinFincher/ASWP-for-macOS) - ArtStation set as wallpapers from artwork.rss **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [BingPaper](https://github.com/pengsrc/BingPaper) - Use Bing daily photo as your wallpaper on macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Desktop Wallpaper Switcher](https://github.com/VioletGiraffe/desktop-wallpaper-switcher) - Win / Linux / macOS tool for managing and cycling desktop wallpapers. **Languages:** C++ icon C++ **Badges:** Latest Release   GitHub stars   Last commit   License - [Equinox](https://github.com/rlxone/Equinox) - Equinox is an application that allows you to create macOS dynamic wallpapers. **Languages:** Swift icon Swift **Website:** [https://equinoxmac.com](https://equinoxmac.com) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Muzei](https://github.com/naman14/Muzei-macOS) - Muzei wallpaper app for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License - [Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper. **Languages:** Swift icon Swift **Website:** [https://sindresorhus.com/plash](https://sindresorhus.com/plash) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [pyDailyChanger](https://github.com/IngoMeyer441/pyDailyChanger) - pyDailyChanger is a program that changes your wallpaper daily. **Languages:** Python icon Python **Badges:** Latest Release   GitHub stars   Last commit   License - [Satellite Eyes](https://github.com/tomtaylor/satellite-eyes) - macOS app to automatically set your desktop wallpaper to the satellite view overhead. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Sunscreen](https://github.com/davidcelis/Sunscreen) - Sunscreen is a fun, lightweight application that changes your desktop wallpaper based on sunrise and sunset. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [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. **Languages:** Ruby icon Ruby **Badges:** Latest Release   GitHub stars   Last commit   License ### 🪟 Window Management (16) - [AltTab](https://github.com/lwouis/alt-tab-macos) - AltTab brings the power of Windows alt-tab to macOS. **Languages:** Swift icon Swift Shell icon Shell **Website:** [https://alt-tab-macos.netlify.app/](https://alt-tab-macos.netlify.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [AltTab](https://github.com/lwouis/alt-tab-macos) - Switch between open applications on macOS with a Windows-like Alt+Tab experience. **Languages:** Swift icon Swift **Website:** [https://alt-tab-macos.netlify.app/](https://alt-tab-macos.netlify.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Amethyst](https://github.com/ianyh/Amethyst) - Automatic tiling window manager for macOS. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [AppGrid](https://github.com/mjolnirapp/AppGrid) - Grid-based keyboard window manager for macOS. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Desktop Profiles](https://github.com/mamiksik/Desktop-Profiles) - An innovative desktop/window manager for macOS **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Dockit](https://github.com/xicheng148/Dockit) - An application that can dock any window to the edge of the screen. **Languages:** Swift icon Swift **Website:** [[official site](https://dockit-docs.pages.dev/?s=open-sourse-mac-os-apps)]([official site](https://dockit-docs.pages.dev/?s=open-sourse-mac-os-apps)) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Hammerspoon](https://github.com/Hammerspoon/hammerspoon) - Staggeringly powerful macOS desktop automation with Lua. **Languages:** Lua icon Lua Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Ice](https://github.com/jordanbaird/Ice) - Ice is a versatile menu bar manager that goes beyond hiding and showing items to offer a rich set of productivity features. **Languages:** Swift icon Swift **Website:** [https://icemenubar.app/](https://icemenubar.app/) **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Loop](https://github.com/MrKai77/Loop) - Window management made elegant. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Phoenix](https://github.com/kasper/phoenix) - Lightweight macOS window and app manager scriptable with JavaScript. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Rectangle](https://github.com/rxhanson/Rectangle) - Rectangle is a window manager heavily based on Spectacle, written in Swift. **Languages:** Swift icon Swift **Website:** [https://rectangleapp.com](https://rectangleapp.com) **Badges:** Latest Release   GitHub stars   Last commit   License - [ShiftIt](https://github.com/fikovnik/ShiftIt) - Managing windows size and position. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Slate](https://github.com/jigish/slate) - Slate is a window management application similar to Divvy and SizeUp **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Spectacle](https://github.com/eczarny/spectacle) - Spectacle allows you to organize your windows without using a mouse. **Languages:** Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License - [Window Glue](https://github.com/Conxt/WindowGlue) - A simple macOS menu bar utility that lets you glue two windows together so that they behave (mostly) as one. **Languages:** Swift icon Swift **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

- [Yabai](https://github.com/koekeishiya/yabai) - A tiling window manager for macOS based on binary space partitioning. **Languages:** C icon C Objective-C icon Objective-C **Badges:** Latest Release   GitHub stars   Last commit   License
Screenshots

## Contributors Thanks to all the people who contribute: [app_store]: ./icons/app_store-64.png 'App Store.' [c_icon]: ./icons/c-64.png 'C language.' [cpp_icon]: ./icons/cpp-64.png 'C++ language.' [c_sharp_icon]: ./icons/csharp-64.png 'C# Language' [clojure_icon]: ./icons/clojure-64.png 'Clojure Language' [coffee_script_icon]: ./icons/coffeescript-64.png 'CoffeeScript language.' [css_icon]: ./icons/css-64.png 'CSS language.' [go_icon]: ./icons/golang-64.png 'Go language.' [elm_icon]: ./icons/elm-64.png 'Elm Language' [haskell_icon]: ./icons/haskell-64.png 'Haskell language.' [java_icon]: ./icons/java-64.png 'Java language.' [javascript_icon]: ./icons/javascript-64.png 'JavaScript language.' [lua_icon]: ./icons/Lua-64.png 'Lua language.' [metal_icon]: ./icons/metal-64.png 'Metal language.' [objective_c_icon]: ./icons/objective-c-64.png 'Objective-C language.' [python_icon]: ./icons/python-64.png 'Python language.' [ruby_icon]: ./icons/ruby-64.png 'Ruby language.' [rust_icon]: ./icons/rust-64.png 'Rust language.' [shell_icon]: ./icons/shell-64.png 'Shell language.' [swift_icon]: ./icons/swift-64.png 'Swift language.' [typescript_icon]: ./icons/typescript-64.png 'TypeScript language.' ================================================ FILE: api.json ================================================ { "apps_by_category" : { "audio" : 35, "backup" : 5, "browser" : 11, "chat" : 18, "cryptocurrency" : 5, "csv" : 1, "database" : 18, "development" : 7, "downloader" : 7, "editors" : 1, "Editors" : 1, "extensions" : 11, "finder" : 11, "games" : 11, "git" : 19, "graphics" : 14, "ide" : 12, "images" : 15, "ios--macos" : 39, "json" : 2, "json-parsing" : 4, "keyboard" : 9, "mail" : 7, "markdown" : 9, "medical" : 1, "menubar" : 32, "music" : 11, "news" : 5, "notes" : 13, "other" : 21, "other-development" : 5, "player" : 4, "podcast" : 6, "productivity" : 44, "screensaver" : 10, "security" : 6, "sharing-files" : 9, "social-networking" : 9, "streaming" : 2, "subtitles" : 3, "system" : 21, "terminal" : 8, "tex" : 1, "text" : 8, "touch-bar" : 6, "utilities" : 57, "video" : 17, "vpn--proxy" : 6, "wallpaper" : 11, "web-development" : 14, "window-management" : 11 }, "generated_at" : "2025-12-04T16:11:30Z", "total_apps" : 613, "total_categories" : 49 } ================================================ FILE: applications.json ================================================ { "applications": [ { "title": "ActivityWatch", "short_description": "Open-source automated time tracker that tracks how you spend time on your devices.", "categories": [ "productivity", "utilities" ], "repo_url": "https://github.com/ActivityWatch/activitywatch", "icon_url": "https://raw.githubusercontent.com/ActivityWatch/activitywatch/master/media/logo/logo.png", "screenshots": [], "official_site": "https://activitywatch.net", "languages": [ "python", "typescript" ] }, { "short_description": "Clipboard history manager for macOS with terminal-style navigation, image previews, and cursor-following popup.", "categories": [ "utilities", "menubar" ], "repo_url": "https://github.com/praneeth552/clipflow", "title": "ClipFlow", "icon_url": "https://raw.githubusercontent.com/praneeth552/clipflow/main/icon.png", "screenshots": [ "https://raw.githubusercontent.com/praneeth552/clipflow/main/screenshots/clipflow-popup.png", "https://raw.githubusercontent.com/praneeth552/clipflow/main/screenshots/clipflow-menubar.png" ], "official_site": "https://github.com/praneeth552/clipflow", "languages": [ "swift" ] }, { "title": "VPN Bypass", "short_description": "Route specific domains and services around your corporate VPN while keeping the rest of your traffic protected.", "categories": [ "utilities", "vpn--proxy", "menubar" ], "repo_url": "https://github.com/GeiserX/VPN-Bypass", "icon_url": "https://raw.githubusercontent.com/GeiserX/VPN-Bypass/main/assets/VPNBypass.png", "screenshots": [ "https://raw.githubusercontent.com/GeiserX/VPN-Bypass/main/assets/screenshot-dropdown.png", "https://raw.githubusercontent.com/GeiserX/VPN-Bypass/main/assets/screenshot-settings.png" ], "official_site": "https://github.com/GeiserX/VPN-Bypass", "languages": [ "swift" ] }, { "short_description": "An Open-Source minimalist Eye Care reminder & Break Timer app for Windows, macOS, and Linux.", "categories": [ "productivity", "utilities" ], "repo_url": "https://github.com/nomandhoni-cs/blink-eye", "title": "Blink Eye", "icon_url": "https://utfs.io/f/93hqarYp4cDdY0euKxvcTyVLEjQxOU1ovp9SM8PzDAnJKZs2", "screenshots": [ "https://utfs.io/f/93hqarYp4cDdNL4sT1PM7wKnvWGVmy3zl0x94o8NjODZSHbY", "https://utfs.io/f/93hqarYp4cDdmJoyN5IGuo7faHJYtjPxRrsSq0VbWB8zM4yl", "https://utfs.io/f/93hqarYp4cDdmJoyN5IGuo7faHJYtjPxRrsSq0VbWB8zM4yl", "https://utfs.io/f/93hqarYp4cDdmTFr7pIGuo7faHJYtjPxRrsSq0VbWB8zM4yl" ], "official_site": "https://blinkeye.vercel.app/", "languages": [ "typescript", "rust" ] }, { "short_description": "Blazingly fast, customisable multi tool, application launcher", "categories": [ "productivity", "utilities", "menubar" ], "repo_url": "https://github.com/unsecretised/rustcast", "title": "RustCast", "icon_url": "https://rustcast.umangsurana.com/icon.png", "screenshots": [ "https://rustcast.umangsurana.com/rustcast-v0-5-0.png" ], "official_site": "https://rustcast.umangsurana.com", "languages": [ "rust" ] }, { "short_description": "Three-finger trackpad gestures for middle-click and middle-drag.", "categories": [ "utilities" ], "repo_url": "https://github.com/NullPointerDepressiveDisorder/MiddleDrag", "title": "MiddleDrag", "icon_url": "https://raw.githubusercontent.com/NullPointerDepressiveDisorder/MiddleDrag/main/Assets.xcassets/AppIcon.appiconset/Icon-256.png", "screenshots": [ "https://raw.githubusercontent.com/NullPointerDepressiveDisorder/MiddleDrag/main/Screenshots/MiddleDrag-Demo.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description":"Take handwritten notes with ease", "categories":[ "productivity", "macos", "utilities" ], "repo_url":"https://github.com/xournalpp/xournalpp/", "title":"Xournal++", "icon_url":"https://github.com/xournalpp/xournalpp/blob/master/mac-setup/icon/Icon1024.png", "screenshots":[], "official_site":"", "languages":[ "cpp", "lua", "c", "python" ] }, { "short_description": "A visual editor of Markdown document, tasks and tables.", "categories": [ "markdown", "editors", "text" ], "repo_url": "https://github.com/maxnd/mxMarkEdit", "title": "mxMarkEdit", "icon_url": "https://github.com/maxnd/mxMarkEdit/blob/main/icon128.png", "screenshots": [ "https://github.com/maxnd/mxMarkEdit/blob/main/screenshots/screenshot1.png", "https://github.com/maxnd/mxMarkEdit/blob/main/screenshots/screenshot2.png", "https://github.com/maxnd/mxMarkEdit/blob/main/screenshots/screenshot3.png", "https://github.com/maxnd/mxMarkEdit/blob/main/screenshots/screenshot4.png" ], "official_site": "https://github.com/maxnd/mxMarkEdit", "languages": [ "free-pascal" ] }, { "short_description": "A script to automate tasks when connect a device to your Mac", "categories": [ "utilities" ], "repo_url": "https://github.com/Piero24/PlugNPlayMac", "title": "PlugNPlayMac", "icon_url": "https://raw.githubusercontent.com/Piero24/PlugNPlayMac/main/.github/image/logo.png", "screenshots": [ "" ], "official_site": "", "languages": [ "shell" ] }, { "short_description": "Fun Tic Tac Toe game equipped with multiplayer (local and online) and leveled single player available on the App Store.", "categories": [ "games", ], "repo_url": "https://github.com/Aries-Sciences-LLC/Tic-Tac-Toe", "title": "Amazing Tic Tac Toe", "icon_url": "https://raw.githubusercontent.com/Aries-Sciences-LLC/Tic-Tac-Toe/master/Icon.iconset/AppIcon.png", "screenshots": [ "https://raw.githubusercontent.com/Aries-Sciences-LLC/Tic-Tac-Toe/master/ScreenShots/previews/inGameDemos.png", "https://raw.githubusercontent.com/Aries-Sciences-LLC/Tic-Tac-Toe/master/ScreenShots/previews/multiplayerModes.png" ], "official_site": "https://ariessciences.com/highlight?product=tic-tac-toe", "languages": [ "swift", "objective_c" ] }, { "short_description": "Simple and elegant menubar weather app on the App Store.", "categories": [ "menubar", ], "repo_url": "https://github.com/Aries-Sciences-LLC/Quick-Weather", "title": "Quick Weather", "icon_url": "https://raw.githubusercontent.com/Aries-Sciences-LLC/Quick-Weather/master/Icon.iconset/main_icon.png", "screenshots": [ "https://raw.githubusercontent.com/Aries-Sciences-LLC/Quick-Weather/master/ScreenShots/Previews/page1.png", "https://raw.githubusercontent.com/Aries-Sciences-LLC/Quick-Weather/master/ScreenShots/Previews/page3.png" ], "official_site": "https://ariessciences.com/highlight?product=quick-weather", "languages": [ "swift" ] }, { "short_description": "Allows users to easily host their local images to the internet through multiple services and available on App Store.", "categories": [ "sharing-files" ], "repo_url": "https://github.com/Aries-Sciences-LLC/Easy-Share-Uploader", "title": "Easy Share Uploader", "icon_url": "https://raw.githubusercontent.com/Aries-Sciences-LLC/Easy-Share-Uploader/master/App%20Icon/App%20Icon.png", "screenshots": [ "https://raw.githubusercontent.com/Aries-Sciences-LLC/Easy-Share-Uploader/master/Screenshots/finished/Screen%20Shot%202021-02-19%20at%2010.36.10%20PM.png", "https://raw.githubusercontent.com/Aries-Sciences-LLC/Easy-Share-Uploader/master/Screenshots/finished/Screen%20Shot%202021-02-19%20at%2010.38.20%20PM.png" ], "official_site": "https://ariessciences.com/highlight?product=easy-share-uploader", "languages": [ "objective_c" ] }, { "short_description": "A handy menu bar translator app that supports DeepL and Google Translate.", "categories": [ "menubar" ], "repo_url": "https://github.com/ThijmenDam/BarTranslate", "title": "BarTranslate", "icon_url": "https://raw.githubusercontent.com/ThijmenDam/BarTranslate/master/assets/BarTranslateIcon.png", "screenshots": [ "https://thijmendam.github.io/BarTranslate/assets/images/interface-snapshot.png" ], "official_site": "https://thijmendam.github.io/BarTranslate/", "languages": [ "typescript" ] }, { "short_description": "A minimal native macOS app to quickly view and Bulk kill running processes.", "categories": [ "menubar", "utilities", "productivity" ], "repo_url": "https://github.com/designsbymuzeer/Bye-Mac-App", "title": "Bye-AppQuit", "icon_url": "https://github.com/user-attachments/assets/33bfcf78-0bd0-42b1-999b-a5b09b729526", "screenshots": [ "https://github.com/user-attachments/assets/63dade24-d967-4946-89e5-f8ae44097b31" ], "official_site": "https://github.com/designsbymuzeer/Bye-Mac-App", "languages": [ "swift" ] }, { "short_description":"Locally hosted web application that allows you to perform various operations on PDF files", "categories":[ "utilities" ], "repo_url":"https://github.com/Stirling-Tools/Stirling-PDF", "title":"Stirling-PDF", "icon_url":"https://github.com/Stirling-Tools/Stirling-PDF/blob/main/app/core/src/main/resources/static/favicon.png", "screenshots":[ ], "official_site":"stirlingpdf.com", "languages":[ "java", "html", "javascript", "html" ] }, { "short_description": "Keka is a full featured file archiver, as easy as it can be.", "categories": [ "utilities" ], "repo_url": "https://github.com/aonez/Keka", "title": "Keka", "icon_url": "", "screenshots": [ "https://www.keka.io/img/Keka-Square-512x512.png" ], "official_site": "https://www.keka.io/en/", "languages": [ "swift" ] }, { "title": "PeaZip", "short_description": "Free file archiver utility and open source file compression and encryption tool supporting 200+ formats.", "categories": [ "utilities" ], "repo_url": "https://github.com/peazip/PeaZip", "icon_url": "", "screenshots": [], "official_site": "https://peazip.github.io/", "languages": [ "pascal" ] }, { "short_description": "OpenCore Legacy Patcher is a tool for installing new MacOS versions on legacy macs.", "categories": [ "utilities" ], "repo_url": "https://github.com/dortania/OpenCore-Legacy-Patcher", "title": "OpenCore Legacy Patcher", "icon_url": "", "screenshots": [], "official_site": "https://dortania.github.io/OpenCore-Legacy-Patcher/", "languages": [ "python" ] }, { "short_description": "Find and install macOS apps from Homebrew Cask and Fairground App catalogs.", "categories": [ "downloader", "productivity", "utilities" ], "repo_url": "https://github.com/App-Fair/App", "title": "App Fair", "icon_url": "https://github.com/App-Fair/App/releases/latest/download/App-Fair.png", "screenshots": [ "https://appfair.app/screenshots/screen1.png", "https://appfair.app/screenshots/screen2.png", "https://appfair.app/screenshots/screen3.png" ], "official_site": "https://appfair.app", "languages": [ "swift" ] }, { "short_description": "Native Discord client built in Swift & SwiftUI. Light on your RAM and CPU.", "categories": [ "chat" ], "repo_url": "https://github.com/SwiftcordApp/Swiftcord", "title": "Swiftcord", "icon_url": "https://github.com/SwiftcordApp/Swiftcord/blob/main/Swiftcord/Assets.xcassets/AppIcon.appiconset/app-256.png", "screenshots": [ "https://github.com/SwiftcordApp/Swiftcord/blob/main/README_Resources/heroScreenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications.", "categories": [ "development", "ios--macos", "utilities" ], "repo_url": "https://github.com/mohakapt/Stringz", "title": "Stringz", "icon_url": "https://raw.githubusercontent.com/mohakapt/Stringz/main/Resources/app_icon.png", "screenshots": [ "https://raw.githubusercontent.com/mohakapt/Stringz/main/Resources/hero_dark.png", "https://raw.githubusercontent.com/mohakapt/Stringz/main/Resources/hero_light.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A fast and efficient minimal web browser.", "categories": [ "browser" ], "repo_url": "https://github.com/minbrowser/min", "title": "Min Browser", "icon_url": "", "screenshots": [], "official_site": "https://minbrowser.org", "languages": [ "javascript" ] }, { "short_description": "Simple and Secure Offsite Backups", "categories": [ "backup" ], "repo_url": "https://github.com/borgbase", "title": "BorgBase/Vorta", "icon_url": "", "screenshots": [], "official_site": "https://www.borgbase.com/", "languages": [ "python" ] }, { "short_description": "Tiny stocks watcher for the menu bar.", "categories": [ "menubar" ], "repo_url": "https://github.com/mnndnl/market-bar ", "title": "Market Bar", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more.", "categories": [ "ide", "development" ], "repo_url": "https://github.com/apache/netbeans", "title": "Apache Netbeans", "icon_url": "https://netbeans.apache.org/images/apache-netbeans.svg", "screenshots": [ "https://www.dropbox.com/s/r9ewe87xer4nypj/netbeans_dark.png?dl=0", "https://www.dropbox.com/s/qs2gh43lrsbdkid/netbeans_light.png?dl=0" ], "official_site": "https://netbeans.apache.org/", "languages": [ "java" ] }, { "short_description": "PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar.", "categories": [ "audio", "music", "menubar", "utilities" ], "repo_url": "https://github.com/nbolar/PlayStatus", "title": "PlayStatus", "icon_url": "https://user-images.githubusercontent.com/45484873/56880861-09cb3980-6a67-11e9-9d45-037a9165b212.png", "screenshots": [ "https://user-images.githubusercontent.com/45484873/60389024-ece0d000-9ac2-11e9-8dbc-2376e905887f.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Ultra TabSaver is an open-source Tab Manager for Safari", "categories": [ "extensions", "productivity", "utilities" ], "repo_url": "https://github.com/Swift-open-source/UltraTabSaver", "title": "Ultra TabSaver", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/Swift-open-source/UltraTabSaver/main/Ultra-TabSaver.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "simple drag-and-drop, password-based file encryption.", "categories": [ "security" ], "repo_url": "https://github.com/spieglt/cloaker", "title": "Cloaker", "icon_url": "https://raw.githubusercontent.com/spieglt/Cloaker/master/gui/cloaker/cloaker.ico", "screenshots": [ "https://github.com/spieglt/Cloaker/blob/master/demo.gif" ], "official_site": "https://adequate.systems/", "languages": [ "rust" ] }, { "short_description": "Simple and elegant screensaver that displays the time.", "categories": [ "screensaver" ], "repo_url": "https://github.com/mattiarossini/MinimalClock", "title": "MinimalClock", "icon_url": "", "screenshots": [ "https://github.com/mattiarossini/MinimalClock/blob/master/Screenshot.gif" ], "official_site": "https://mattiarossini.github.io/MinimalClock/", "languages": [ "swift" ] }, { "short_description": "cross-platform file transfer over ad-hoc wifi, like AirDrop but for Mac/Windows/Linux.", "categories": [ "utilities" ], "repo_url": "https://github.com/spieglt/flyingcarpet", "title": "Flying Carpet", "icon_url": "https://raw.githubusercontent.com/spieglt/FlyingCarpet/master/icons/Windows/fc.ico", "screenshots": [ "https://raw.githubusercontent.com/spieglt/FlyingCarpet/master/pictures/macDemo.png" ], "official_site": "https://adequate.systems/", "languages": [ "go" ] }, { "short_description": "manage bluetooth connections with your keyboard.", "categories": [ "utilities" ], "repo_url": "https://github.com/friedrichweise/wechsel", "title": "wechsel", "icon_url": "https://raw.githubusercontent.com/friedrichweise/wechsel/master/wechsel/Assets.xcassets/AppIcon.appiconset/Artboard-2.png", "screenshots": [ "https://raw.githubusercontent.com/friedrichweise/wechsel/master/screenshot.jpg" ], "official_site": "https://wechsel.weise.io", "languages": [ "swift" ] }, { "short_description": "cross platform e-book manager.", "categories": [ "utilities" ], "repo_url": "https://github.com/kovidgoyal/calibre", "title": "calibre", "icon_url": "https://github.com/kovidgoyal/calibre/blob/master/resources/images/lt.png ", "screenshots": [], "official_site": "https://calibre-ebook.com", "languages": [ "python" ] }, { "short_description": "A CLI workflow for the administration of macOS applications distributed as binaries", "categories": [ "utilities" ], "repo_url": "https://github.com/Homebrew/homebrew-cask", "title": "homebrew-cask", "icon_url": "https://brew.sh/assets/img/homebrew-256x256.png", "screenshots": [ "https://camo.githubusercontent.com/e0232f054269f4da8df572c3dea4f08def189df3/68747470733a2f2f692e696d6775722e636f6d2f626a723855785a2e676966" ], "official_site": "https://brew.sh/", "languages": [ "ruby" ] }, { "short_description": "Application which hosts AudioUnits v3 using AVFoundation API. ", "categories": [ "audio" ], "repo_url": "https://github.com/vgorloff/AUHost", "title": "AUHost", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/vgorloff/AUHost/master/Media/Screenshot-MainWindow.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Audio Sample manager.", "categories": [ "audio" ], "repo_url": "https://github.com/bazalp/pulp", "title": "Pulp", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/bazalp/pulp/main/assets/img/app-pulp.png" ], "official_site": "", "languages": [ "rust", "typescript" ] }, { "short_description": "Open source tool for managing i18n keys in software projects.", "categories": [ "web-development" ], "repo_url": "https://github.com/simplelocalize/simplelocalize-cli", "title": "SimpleLocalize CLI", "icon_url": "", "screenshots": [], "official_site": "https://simplelocalize.io", "languages": [ "swift" ] }, { "short_description": "Clementine is a modern music player and library organizer for Windows, Linux and macOS. ", "categories": [ "audio" ], "repo_url": "https://github.com/clementine-player/Clementine", "title": "Clementine", "icon_url": "https://raw.githubusercontent.com/clementine-player/Clementine/master/dist/clementine_128.png", "screenshots": [ "https://clementine-player.github.io/pages/images/screenshots/clementine-1.2-1.png", "https://clementine-player.github.io/pages/images/screenshots/clementine-1.2-2.png", "https://clementine-player.github.io/pages/images/screenshots/clementine-1.2-3.png", "https://clementine-player.github.io/pages/images/screenshots/clementine-1.2-4.png" ], "official_site": "https://www.clementine-player.org/", "languages": [ "cpp" ] }, { "short_description": "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. ", "categories": [ "audio" ], "repo_url": "https://github.com/kartik-venugopal/aural-player", "title": "Aural Player", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/maculateConception/aural-player/master/Documentation/Demos/mainDemo.gif", "https://raw.githubusercontent.com/maculateConception/aural-player/master/Documentation/Demos/playerView.gif", "https://raw.githubusercontent.com/maculateConception/aural-player/master/Documentation/Demos/ABLoop.gif", "https://raw.githubusercontent.com/maculateConception/aural-player/master/Documentation/Demos/UsingFXUnit.gif", "https://raw.githubusercontent.com/maculateConception/aural-player/master/Documentation/Demos/DetailedInfo.gif", "https://raw.githubusercontent.com/maculateConception/aural-player/master/Documentation/Demos/WindowLayout.gif", "https://raw.githubusercontent.com/maculateConception/aural-player/master/Documentation/Demos/PlaylistSearch.gif", "https://raw.githubusercontent.com/maculateConception/aural-player/master/Documentation/Demos/ChaptersDemo.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Background Music, a macOS audio utility: automatically pause your music, set individual apps' volumes and record system audio. ", "categories": [ "audio" ], "repo_url": "https://github.com/kyleneideck/BackgroundMusic", "title": "Background Music", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/master/Images/README/Screenshot.png" ], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "macOS camera recording using ffmpeg ", "categories": [ "audio" ], "repo_url": "https://github.com/hanayik/CAM", "title": "CAM", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/hanayik/CAM/master/gh-screenshots/1.png", "https://raw.githubusercontent.com/hanayik/CAM/master/gh-screenshots/2.png", "https://raw.githubusercontent.com/hanayik/CAM/master/gh-screenshots/3.png", "https://raw.githubusercontent.com/hanayik/CAM/master/gh-screenshots/4.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "System-Wide Equalizer for the Mac. ", "categories": [ "audio" ], "repo_url": "https://github.com/bitgapp/eqMac", "title": "eqMac2", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/8472525/29003031-13d1cd60-7aa7-11e7-9868-6afc36a34b52.jpg", "https://user-images.githubusercontent.com/8472525/33244041-488cf4b4-d2e8-11e7-986c-49826dd853e1.png" ], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "The fre:ac audio converter project. ", "categories": [ "audio" ], "repo_url": "https://github.com/enzo1982/freac", "title": "fre:ac", "icon_url": "", "screenshots": [ "https://freac.org/images/freac-ubuntu.png" ], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "jmc is new macOS media organizer. ", "categories": [ "audio" ], "repo_url": "https://github.com/jcm93/jmc", "title": "jmc", "icon_url": "", "screenshots": [ "https://puu.sh/xoZYo/bd6d6deeb0.png", "https://i.imgur.com/SJ5RgM5.png", "https://puu.sh/xoZHp/31dddfc751.png", "https://i.imgur.com/oYB83zF.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "This app allows you to control the iTunes volume using volume up and volume down hotkeys. ", "categories": [ "audio" ], "repo_url": "https://github.com/alberti42/iTunes-Volume-Control", "title": "iTunes-Volume-Control", "icon_url": "", "screenshots": [ "https://camo.githubusercontent.com/0e72c553e7a1078295948921350e923e03f9a8f4/68747470733a2f2f7261772e6769746875622e636f6d2f616c626572746934322f6954756e65732d566f6c756d652d436f6e74726f6c2f6d61737465722f6954756e6573253230566f6c756d65253230436f6e74726f6c2f496d616765732f73637265656e73686f742e706e67" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "LocalRadio is software for listening to \"Software-Defined Radio\" on your Mac and mobile devices. ", "categories": [ "audio" ], "repo_url": "https://github.com/dsward2/LocalRadio", "title": "LocalRadio", "icon_url": "", "screenshots": [ "https://cdn.jsdelivr.net/gh/dsward2/LocalRadio@d3eb87c/Documents/LocalRadio-animation.svg" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "macOS app to show you lyric what currently iTunes or Spotify is playing. ", "categories": [ "audio" ], "repo_url": "https://github.com/lyc2345/Lyricism", "title": "Lyricism", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/lyc2345/Lyricism/master/screenshot/Screen%20Shot%202016-09-20%20at%209.23.34%20AM.jpg", "https://raw.githubusercontent.com/lyc2345/Lyricism/master/screenshot/Screen%20Shot%202016-07-21%20at%204.34.33%20PM.jpg", "https://raw.githubusercontent.com/lyc2345/Lyricism/master/screenshot/Screen%20Shot%202016-09-20%20at%209.22.59%20AM.jpg" ], "official_site": "", "languages": [ "objective_c", "swift" ] }, { "short_description": "macOS application displaying synchronized lyrics with animated word-by-word glow effects for Spotify, Apple Music, and YouTube Music.", "categories": [ "audio" ], "repo_url": "https://github.com/ateymoori/lyricglow", "title": "LyricGlow", "icon_url": "https://raw.githubusercontent.com/ateymoori/lyricglow/main/build/icon.png", "screenshots": [ "https://raw.githubusercontent.com/ateymoori/lyricglow/main/screenshots/lyricglow-synchronized-lyrics-english.png", "https://raw.githubusercontent.com/ateymoori/lyricglow/main/screenshots/lyricglow-artist-images-album-covers.png", "https://raw.githubusercontent.com/ateymoori/lyricglow/main/screenshots/lyricglow-rtl-lyrics-persian.png" ], "official_site": "", "languages": [ "javascript" ] }, { "repo_url": "https://github.com/LumingYin/macOSLucidaGrande", "official_site": "https://github.com/LumingYin/macOSLucidaGrande/releases", "title": "macOSLucidaGrande", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/LumingYin/macOSLucidaGrande/master/Screenshot/Screenshot.png" ], "short_description": "A small utility to set Lucida Grande as your Mac's system UI font.", "languages": [ "objective_c" ], "categories": [ "system" ] }, { "short_description": "Lyrics for iTunes, Spotify and Vox. ", "categories": [ "audio" ], "repo_url": "https://github.com/ddddxxx/LyricsX", "title": "LyricsX", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/ddddxxx/LyricsX/master/docs/img/desktop_lyrics.gif", "https://raw.githubusercontent.com/ddddxxx/LyricsX/master/docs/img/preview_3.jpg", "https://raw.githubusercontent.com/ddddxxx/LyricsX/master/docs/img/preview_2.jpg", "https://raw.githubusercontent.com/ddddxxx/LyricsX/master/docs/img/preview_1.jpg" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simple yet powerful audio player for BSD/Linux/macOS. ", "categories": [ "audio" ], "repo_url": "https://github.com/bsdelf/mous", "title": "Mous Player", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/bsdelf/mous/master/screenshot/qt-conv.png", "https://raw.githubusercontent.com/bsdelf/mous/master/screenshot/qt5-macos.png", "https://raw.githubusercontent.com/bsdelf/mous/master/screenshot/qt.png", "https://raw.githubusercontent.com/bsdelf/mous/master/screenshot/ncurses-explorer.png", "https://raw.githubusercontent.com/bsdelf/mous/master/screenshot/ncurses-play.png" ], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "Spotify controller with TouchBar support. ", "categories": [ "touch-bar" ], "repo_url": "https://github.com/xzzz9097/Muse", "title": "Muse", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/xzzz9097/Muse/master/Screenshots/Window2.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Scrobble vinyl, radios, movies to Last.fm. ", "categories": [ "audio" ], "repo_url": "https://github.com/ShazamScrobbler/shazamscrobbler-macos", "title": "ShazamScrobbler", "icon_url": "", "screenshots": [ "https://cloud.githubusercontent.com/assets/1932338/10404677/7d1ffe58-6ed4-11e5-99d0-c29480a0bfda.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Minimal, beautifully designed music player for macOS. ", "categories": [ "audio" ], "repo_url": "https://github.com/sonoramac/Sonora", "title": "Sonora", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/sonoramac/Sonora/master/screenshot.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Spotify and iTunes in your menu bar.", "categories": [ "audio" ], "repo_url": "https://github.com/kmikiy/SpotMenu", "title": "SpotMenu", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/kmikiy/SpotMenu/master/Demo/demo.gif" ], "official_site": "", "languages": [ "objective_c", "swift" ] }, { "short_description": "Spotify mini-player for macOS. ", "categories": [ "audio" ], "repo_url": "https://github.com/will-stone/SpotSpot", "title": "SpotSpot", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Audio input/output source lock for macOS. ", "categories": [ "audio" ], "repo_url": "https://github.com/Sunnyyoung/Suohai", "title": "Suohai", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/Sunnyyoung/Suohai/master/Screenshot/0x01.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Instant audio feedback for typing. macOS version. ", "categories": [ "audio" ], "repo_url": "https://github.com/yingDev/Tickeys", "title": "Tickeys", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/yingDev/Tickeys/master/.readme_images/1.png", "https://raw.githubusercontent.com/yingDev/Tickeys/master/.readme_images/video_thumb.png", "https://raw.githubusercontent.com/yingDev/Tickeys/master/.readme_images/2.png" ], "official_site": "", "languages": [ "rust" ] }, { "short_description": "macOS app to mute & unmute the input volume of your microphone. Perfect for podcasters.", "categories": [ "audio" ], "repo_url": "https://github.com/CocoaHeadsBrasil/MuteUnmuteMic", "title": "[Un]MuteMic", "icon_url": "", "screenshots": [ "https://cloud.githubusercontent.com/assets/235208/10419593/143171fc-704a-11e5-8270-374ca898685b.gif" ], "official_site": "", "languages": [ "objective_c", "c" ] }, { "short_description": "macOS native desktop Software Defined Radio application using the RTL-SDR USB device. ", "categories": [ "audio" ], "repo_url": "https://github.com/getoffmyhack/waveSDR", "title": "waveSDR", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/getoffmyhack/waveSDR/master/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS/Linux/FreeBSD/OpenBSD Airplay audio receiver.", "categories": [ "audio" ], "repo_url": "https://github.com/mikebrady/shairport-sync", "title": "shairport-sync", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "c", "cpp" ] }, { "short_description": "Keep your application settings in sync (macOS/Linux). ", "categories": [ "backup" ], "repo_url": "https://github.com/lra/mackup", "title": "Mackup", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "python" ] }, { "short_description": "Keeping multiple macOS preferences in sync can be painful, but it shouldn't be.", "categories": [ "backup" ], "repo_url": "https://github.com/zenangst/Syncalicious", "title": "Syncalicious", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Easily create lightweight documentation of installed applications, dotfiles, and more. ", "categories": [ "backup" ], "repo_url": "https://github.com/alichtman/shallow-backup", "title": "shallow-backup", "icon_url": "", "screenshots": [ "https://github.com/alichtman/shallow-backup/blob/main/img/shallow-backup-demo.gif" ], "official_site": "", "languages": [ "python" ] }, { "short_description": "UrBackup is Client/Server network backup for Windows, macOS and Linux.", "categories": [ "backup" ], "repo_url": "https://github.com/uroni/urbackup_backend", "title": "UrBackup", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp", "c" ] }, { "short_description": "Tiny multiprocessing utility for file backups.", "categories": [ "backup" ], "repo_url": "https://github.com/vdbsh/backy", "title": "backy", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "go" ] }, { "short_description": "Beaker is an experimental peer-to-peer Web browser. ", "categories": [ "browser" ], "repo_url": "https://github.com/beakerbrowser/beaker", "title": "Beaker Browser", "icon_url": "", "screenshots": [ "http://nerdist.com/wp-content/uploads/2016/05/the-mad-king-game-of-thrones.jpg", "https://raw.githubusercontent.com/beakerbrowser/beaker/master/build/icons/256x256.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Brave browser for Desktop and Laptop computers running Windows, macOS, and Linux. ", "categories": [ "browser" ], "repo_url": "https://github.com/brave/brave-browser", "title": "Brave Browser", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "macOS tool that prompts you to choose a browser when opening a link. ", "categories": [ "browser" ], "repo_url": "https://github.com/will-stone/browserosaurus", "title": "browserosaurus", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Floating browser window for macOS.", "categories": [ "browser" ], "repo_url": "https://github.com/JadenGeller/Helium", "title": "Helium", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c", "swift" ] }, { "short_description": "Always opens the right browser. ", "categories": [ "browser" ], "repo_url": "https://github.com/johnste/finicky", "title": "Finicky", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Fast, privacy aware browser from a non-profit. Runs on Windows, macOS and Linux. ", "categories": [ "browser" ], "repo_url": "https://hg.mozilla.org/mozilla-central/", "title": "Firefox", "icon_url": "", "screenshots": [], "official_site": "https://www.mozilla.org/en-US/firefox/browsers/", "languages": [ "javascript", "rust", "cpp" ] }, { "short_description": "Otter Browser aims to recreate the best aspects of the classic Opera (12.x) UI using Qt5. ", "categories": [ "browser" ], "repo_url": "https://github.com/OtterBrowser/otter-browser", "title": "otter-browser", "icon_url": "", "screenshots": [ "https://camo.githubusercontent.com/050724a64db6ea50c8dd28144b26942b76883752/68747470733a2f2f6f747465722d62726f777365722e6f72672f73637265656e73686f74732f312e706e67" ], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "Safe Exam Browser for macOS and iOS. ", "categories": [ "browser" ], "repo_url": "https://github.com/SafeExamBrowser/seb-mac", "title": "seb-mac", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "c" ] }, { "short_description": "Powerful XMPP client with support for file transfer, VoIP and end-to-end encryption.", "categories": [ "chat" ], "repo_url": "https://github.com/tigase/beagle-im", "title": "Beagle IM", "icon_url": "https://camo.githubusercontent.com/478e09adfdb2790ecc9f164fe60aba74852bb7a388bba8fbd0d7a0142724f496/68747470733a2f2f626561676c652e696d2f696d672f73657276696365732f6461726b4f724c696768742e706e67", "screenshots": [ "https://beagle.im/img/services/darkOrLight.png" ], "official_site": "https://beagle.im/", "languages": [ "swift" ] }, { "short_description": "Native Mac app wrapper for WhatsApp Web. ", "categories": [ "chat" ], "repo_url": "https://github.com/stonesam92/ChitChat", "title": "ChitChat", "icon_url": "", "screenshots": [ "https://i.imgur.com/riXrTvx.jpg" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Better WeChat on macOS and Linux. ", "categories": [ "chat" ], "repo_url": "https://github.com/geeeeeeeeek/electronic-wechat", "title": "Electronic WeChat", "icon_url": "", "screenshots": [ "https://cloud.githubusercontent.com/assets/7262715/14876747/ff691ade-0d49-11e6-8435-cb1fac91b3c2.png" ], "official_site": "", "languages": [ "javascript" ] }, { "repo_url": "https://github.com/LumingYin/StickyNotes", "official_site": "https://github.com/LumingYin/StickyNotes/releases", "title": "StickyNotes", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/LumingYin/StickyNotes/master/images/screenshot.jpg" ], "short_description": "A Windows 10-esque Sticky Notes app implemented in AppKit.", "languages": [ "swift" ], "categories": [ "productivity" ] }, { "short_description": "Franz is messaging application for services like WhatsApp, Slack, Messenger and many more. ", "categories": [ "chat" ], "repo_url": "https://github.com/meetfranz/franz", "title": "Franz", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/meetfranz/franz/master/build-helpers/images/icon.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Native macOS & Windows desktop app for Google Allo. ", "categories": [ "chat" ], "repo_url": "https://github.com/kelyvin/Google-Allo-For-Desktop", "title": "Google Allo for Desktop", "icon_url": "", "screenshots": [ "https://i.imgur.com/5g1VU3S.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Unofficial GroupMe App.", "categories": [ "chat" ], "repo_url": "https://github.com/dcrousso/GroupMe", "title": "GroupMe", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/dcrousso/GroupMe/master/media/screenshot.png" ], "official_site": "", "languages": [ "javascript", "css" ] }, { "short_description": "Element is a collaboration app (currently Electron) for the [Matrix](https://matrix.org/) protocol.", "categories": [ "chat" ], "repo_url": "https://github.com/vector-im/element-web", "title": "Element", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "A truly native [Matrix](https://matrix.org/blog/home/) client for macOS. ", "categories": [ "chat" ], "repo_url": "https://github.com/neilalexander/seaglass", "title": "Seaglass", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/neilalexander/seaglass/master/image.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Electron app that links with your Signal Android or Signal iOS app. ", "categories": [ "chat" ], "repo_url": "https://github.com/signalapp/Signal-Desktop", "title": "Signal Desktop", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Source code of Telegram for macOS on Swift. ", "categories": [ "chat" ], "repo_url": "https://github.com/overtake/TelegramSwift", "title": "Telegram", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Telegram Desktop messaging app. ", "categories": [ "chat" ], "repo_url": "https://github.com/telegramdesktop/tdesktop", "title": "Telegram Desktop", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/telegramdesktop/tdesktop/dev/docs/assets/preview.png" ], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "Textual is an IRC client for macOS. ", "categories": [ "chat" ], "repo_url": "https://github.com/Codeux-Software/Textual", "title": "Textual", "icon_url": "", "screenshots": [ "https://www.codeux.com/textual/private/images/v600media/YosemiteDarkFullscreen.png", "https://www.codeux.com/textual/private/images/v600media/YosemiteDarkThumbnail.png", "https://www.codeux.com/textual/private/images/v600media/YosemiteLightFullscreen.png", "https://www.codeux.com/textual/private/images/v600media/YosemiteLightThumbnail.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "TorChat for Mac is a macOS native and unofficial port of torchat. ", "categories": [ "chat" ], "repo_url": "https://github.com/javerous/TorChat-Mac", "title": "Torchat-Mac", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Send WhatsApp message from menu bar. ", "categories": [ "chat" ], "repo_url": "https://github.com/aldychris/WhatsAppBar", "title": "WhatsAppBar", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/aldychris/WhatsAppBar/master/Resource/AppScreenshoot.png", "https://raw.githubusercontent.com/aldychris/WhatsAppBar/master/Resource/WaPref.png", "https://raw.githubusercontent.com/aldychris/WhatsAppBar/master/Resource/WhatsAppBarGif.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Standalone Electron app for the chatapp Wire. ", "categories": [ "chat" ], "repo_url": "https://github.com/wireapp/wire-desktop", "title": "Wire Desktop", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Official Bitcoin Core software for running a full Bitcoin node.", "categories": [ "cryptocurrency", "blockchain", "finance" ], "repo_url": "https://github.com/bitcoin/bitcoin", "title": "Bitcoin Core", "icon_url": "https://github.com/bitcoin-core/bitcoincore.org/blob/master/assets/images/bitcoin_core_logo_colored_reversed.png", "screenshots": [ "https://github.com/bitcoin-core/bitcoincore.org/blob/master/assets/images/releases/fee-bump-menu.png" ], "official_site": "https://bitcoincore.org/", "languages": [ "C++", "Python", "Shell" ] }, { "short_description": "macOS menu bar application for tracking crypto coin prices. ", "categories": [ "cryptocurrency" ], "repo_url": "https://github.com/adamwaite/CoinBar", "title": "CoinBar", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/adamwaite/CoinBar/master/resources/04.png", "https://raw.githubusercontent.com/adamwaite/CoinBar/master/resources/01.png", "https://raw.githubusercontent.com/adamwaite/CoinBar/master/resources/02.png", "https://raw.githubusercontent.com/adamwaite/CoinBar/master/resources/03.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A secure bitcoin wallet platform for both desktop and mobile devices. ", "categories": [ "cryptocurrency" ], "repo_url": "https://github.com/bitpay/copay", "title": "Copay", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "typescript" ] }, { "short_description": "macOS menu bar application built with Electron. ", "categories": [ "cryptocurrency" ], "repo_url": "https://github.com/geraldoramos/crypto-bar", "title": "Crypto Bar", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Native menu bar app with floating window and support for many Exchanges. ", "categories": [ "cryptocurrency" ], "repo_url": "https://github.com/kaunteya/FloatCoin", "title": "Float coin", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/kaunteya/FloatCoin/master/Images/Banner.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Universal database tool and SQL client. ", "categories": [ "database" ], "repo_url": "https://github.com/dbeaver/dbeaver", "title": "DBeaver", "icon_url": "", "screenshots": [ "https://dbeaver.io/product/dbeaver-ss-classic.png", "https://dbeaver.io/product/dbeaver-ss-mock.png", "https://dbeaver.io/product/dbeaver-ss-erd.png", "https://dbeaver.io/product/dbeaver-ss-dark.png" ], "official_site": "", "languages": [ "java" ] }, { "short_description": "SQLite database management GUI. ", "categories": [ "database" ], "repo_url": "https://github.com/sqlitebrowser/sqlitebrowser", "title": "DB Browser for SQLite", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/sqlitebrowser/sqlitebrowser/master/images/sqlitebrowser.png" ], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "The easiest way to get started with mongoDB on the Mac. ", "categories": [ "database" ], "repo_url": "https://github.com/gcollazo/mongodbapp", "title": "mongoDB.app", "icon_url": "", "screenshots": [ "https://gcollazo.github.io/mongodbapp/assets/img/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "PostgreSQL GUI client for macOS. ", "categories": [ "database" ], "repo_url": "https://github.com/Paxa/postbird", "title": "Postbird", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/26019/41055418-dcc55700-69f3-11e8-8d3e-572cf5febedc.png", "https://user-images.githubusercontent.com/26019/41055416-dc5a5464-69f3-11e8-87b8-994e763da816.png", "https://user-images.githubusercontent.com/26019/41055417-dc8eb56a-69f3-11e8-8145-6f0d5eb147a6.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "The easiest way to get started with PostgreSQL on the Mac. ", "categories": [ "database" ], "repo_url": "https://github.com/PostgresApp/PostgresApp", "title": "Postgres.app", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "The easiest way to get started with Redis on the Mac. ", "categories": [ "database" ], "repo_url": "https://github.com/jpadilla/redisapp", "title": "Redis.app", "icon_url": "", "screenshots": [ "https://jpadilla.github.io/redisapp/assets/img/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "MySQL/MariaDB database management for macOS. ", "categories": [ "database" ], "repo_url": "https://github.com/sequelpro/sequelpro", "title": "Sequel Pro", "icon_url": "", "screenshots": [ "https://sequelpro.com/images/logo.png", "https://sequelpro.com/images/browse.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Sequel Ace is a fast, easy-to-use Mac database management application for working with MySQL & MariaDB databases.", "categories": [ "database" ], "repo_url": "https://github.com/Sequel-Ace/Sequel-Ace", "title": "Sequel Ace", "icon_url": "", "screenshots": [], "official_site": "https://sequel-ace.com/", "languages": [ "objective_c" ] }, { "short_description": "Robo 3T (formerly Robomongo) is the free lightweight GUI for MongoDB enthusiasts. ", "categories": [ "database" ], "repo_url": "https://github.com/Studio3T/robomongo", "title": "Robo 3T", "icon_url": "", "screenshots": [ "https://robomongo.org/static/screens-transparent-6e2a44fd.png" ], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "Cashew macOS Github Issue Tracker.", "categories": [ "git" ], "repo_url": "https://github.com/dhennessy/OpenCashew", "title": "Cashew", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c", "c" ] }, { "short_description": "Gitee, macOS status bar application for Github.", "categories": [ "git" ], "repo_url": "https://github.com/Nightonke/Gitee", "title": "Gitee", "icon_url": "", "screenshots": [ "https://img.shields.io/github/v/release/nightonke/gitee.svg", "https://raw.githubusercontent.com/Nightonke/Gitee/master/Pictures/notification_1.png", "https://raw.githubusercontent.com/Nightonke/Gitee/master/Pictures/tab_pie_1.png", "https://raw.githubusercontent.com/Nightonke/Gitee/master/Pictures/tab_profile.png", "https://raw.githubusercontent.com/Nightonke/Gitee/master/Pictures/tab_pie_2.png", "https://raw.githubusercontent.com/Nightonke/Gitee/master/Pictures/tab_trending.png", "https://raw.githubusercontent.com/Nightonke/Gitee/master/Pictures/status_bar.png", "https://raw.githubusercontent.com/Nightonke/Gitee/master/Pictures/tab_trend_1.png", "https://raw.githubusercontent.com/Nightonke/Gitee/master/Pictures/notification_2.png", "https://img.shields.io/badge/Developer-Nightonke-red.svg", "https://raw.githubusercontent.com/Nightonke/Gitee/master/Pictures/image_github_w1920.png", "https://raw.githubusercontent.com/Nightonke/Gitee/master/Pictures/tab_trend_2.png", "https://raw.githubusercontent.com/Nightonke/Gitee/master/Pictures/tab_notification.png", "https://raw.githubusercontent.com/Nightonke/Gitee/master/Pictures/vc_settings.png" ], "official_site": "", "languages": [ "objective_c", "swift" ] }, { "short_description": "GitHub contributions app, for iOS, WatchOS, and macOS. ", "categories": [ "git" ], "repo_url": "https://github.com/remirobert/Github-contributions", "title": "Github contributions", "icon_url": "", "screenshots": [ "https://cloud.githubusercontent.com/assets/3276768/19214602/f39af4c0-8d87-11e6-8b3d-3d9c7b94d57c.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simple collaboration from your desktop. ", "categories": [ "git" ], "repo_url": "https://github.com/desktop/desktop", "title": "GitHub Desktop", "icon_url": "", "screenshots": [ "https://cloud.githubusercontent.com/assets/359239/26094502/a1f56d02-3a5d-11e7-8799-23c7ba5e5106.png" ], "official_site": "", "languages": [ "typescript" ] }, { "short_description": "Simple app that will notify about new commits to watched repositories. ", "categories": [ "git" ], "repo_url": "https://github.com/ad/GithubListener", "title": "GithubListener", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/ad/GithubListener/master/notifyexample.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simple macOS app to alert you when you have unread GitHub notifications. ", "categories": [ "git" ], "repo_url": "https://github.com/erik/github-notify", "title": "GithubNotify", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Minimalistic Git client for Mac. ", "categories": [ "git" ], "repo_url": "https://github.com/eonist/GitSync", "title": "GitSync", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/stylekit/img/master/Element210-01.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "The Git interface you've been missing all your life has finally arrived. ", "categories": [ "git" ], "repo_url": "https://github.com/git-up/GitUp", "title": "GitUp", "icon_url": "", "screenshots": [ "https://i.imgur.com/t6iC9TC.png", "https://i.imgur.com/ZfxM7su.png", "https://i.imgur.com/29hxDcJ.png", "https://i.imgur.com/dWpJExk.png", "https://i.imgur.com/6cuPcT4.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Graphical client for the git version control system. ", "categories": [ "git" ], "repo_url": "https://github.com/gitx/gitx", "title": "GitX", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "macOS application for easily operating GitHub Projects. ", "categories": [ "git" ], "repo_url": "https://github.com/mtgto/GPM", "title": "GPM", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS application to comfortably browse and search through your Messages.app history. ", "categories": [ "chat" ], "repo_url": "https://github.com/glaurent/MessagesHistoryBrowser", "title": "MessagesHistoryBrowser", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "GitHub contribution streak tracking menubar app. ", "categories": [ "git" ], "repo_url": "https://github.com/jamieweavis/streaker", "title": "Streaker", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/jamieweavis/streaker/main/.github/screenshot.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "macOS status bar application for tracking code review process within the team. ", "categories": [ "git" ], "repo_url": "https://github.com/marcinreliga/TeamStatus-for-GitHub", "title": "TeamStatus-for-GitHub", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/marcinreliga/TeamStatus-for-GitHub/master/doc/preview.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Managing Pull Requests and Issues For GitHub & GitHub Enterprise. ", "categories": [ "git" ], "repo_url": "https://github.com/ptsochantaris/trailer", "title": "Trailer", "icon_url": "", "screenshots": [ "http://ptsochantaris.github.io/trailer/images/ipadscreenshot-820-1.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Xit is a graphical tool for working with git repositories. ", "categories": [ "git" ], "repo_url": "https://github.com/Uncommon/Xit", "title": "Xit", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/Uncommon/Xit/master/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Full feature terminal based sequence editor for interactive rebase.", "categories": [ "git" ], "repo_url": "https://github.com/MitMaro/git-interactive-rebase-tool", "title": "Git Interactive Rebase Tool", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/MitMaro/git-interactive-rebase-tool/master/docs/assets/images/girt-demo.gif" ], "official_site": "https://gitrebasetool.mitmaro.ca/", "languages": [ "rust" ] }, { "short_description": "Tool for iOS developers to build and deploy Development, Ad-Hoc and In-house (Enterprise) applications directly to the devices from your Dropbox account. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation", "title": "AppBox", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/getappbox/Home/master/Images/UploadIPA-Dark.png", "https://raw.githubusercontent.com/getappbox/Home/master/Images/Dashboard-Dark.png", "https://raw.githubusercontent.com/getappbox/Home/master/Images/AppURL.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Tool for generating icons in all sizes as required by macOS and iOS apps. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/kuyawa/AppIcons", "title": "AppIcons", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/kuyawa/Gallery/master/AppIcons/appicons.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Gives you indication about the average iOS / macOS app stores review times. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/arbel03/AppStoreReviewTimes", "title": "AppStoreReviewTimes", "icon_url": "", "screenshots": [ "https://i.imgur.com/Y0jr8lF.png", "https://i.imgur.com/rwBYris.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "App that lets you open .car files and browse/extract their images.", "categories": [ "ios--macos" ], "repo_url": "https://github.com/insidegui/AssetCatalogTinkerer", "title": "Asset Catalog Tinkerer", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/insidegui/AssetCatalogTinkerer/master/screenshot.png", "https://raw.githubusercontent.com/insidegui/AssetCatalogTinkerer/master/screenshot_themestore.png", "https://raw.githubusercontent.com/insidegui/AssetCatalogTinkerer/master/quicklook_thumb.png" ], "official_site": "", "languages": [ "objective_c", "swift" ] }, { "short_description": "Assets is a macOS app that manages assets for your development projects (Xcode, web, etc). ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/e7711bbear/Assets", "title": "Assets", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Attabench is a microbenchmarking app for macOS, designed to measure and visualize the performance of Swift code. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/attaswift/Attabench", "title": "Attabench", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/attaswift/Attabench/master/Images/Attabench-screenshot.png", "https://raw.githubusercontent.com/attaswift/Attabench/master/Images/Header.png", "https://raw.githubusercontent.com/attaswift/Attabench/master/Images/SampleBenchmark.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Takes path for your assets images and creates appiconset and imageset for you in just one click. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/angelvasa/AVXCAssets-Generator", "title": "AVXCAssets Generator", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Small application to monitor your GitHub project web page in a native macOS app :octocat:! ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/JustinFincher/BoardForGitHub", "title": "Board For GitHub", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/JustinFincher/BoardForGitHub/master/DemoImgs/1.jpg", "https://raw.githubusercontent.com/JustinFincher/BoardForGitHub/master/DemoImgs/2.jpg", "https://raw.githubusercontent.com/JustinFincher/BoardForGitHub/master/DemoImgs/Banner.jpg" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "macOS app for submitting radars. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/br1sk/brisk", "title": "Brisk", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/br1sk/brisk/master/.github/AppIcon.png", "https://raw.githubusercontent.com/br1sk/brisk/master/.github/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "iOS Calabash Launcher is a macOS app that helps you run and manage Calabash tests on your Mac. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/xing/calabash-launcher", "title": "calabash-launcher", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/18147900/32694248-d8c2d7c8-c73b-11e7-8803-81590d61fbf9.png", "https://user-images.githubusercontent.com/18147900/32609402-e9b05aa2-c55f-11e7-99d6-c2c1b5b8195d.png", "https://user-images.githubusercontent.com/18147900/34467506-8ca05b50-eef4-11e7-9ca0-1373ba7ddd19.png", "https://user-images.githubusercontent.com/4619244/32549703-b6356bfc-c48a-11e7-92f0-1e24a985f0dd.png", "https://user-images.githubusercontent.com/18147900/32503133-c04ee05e-c3dc-11e7-8394-3c0eb5b0105b.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Cleaner for Xcode.app built with react-native-macOS. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/waylybaye/XcodeCleaner", "title": "Cleaner for Xcode", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Native Apple macOS app for testing HTTP/REST endpoints. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/mmattozzi/cocoa-rest-client", "title": "CocoaRestClient", "icon_url": "", "screenshots": [ "https://mmattozzi.github.io/cocoa-rest-client/screenshots/screenshot-1.png", "https://mmattozzi.github.io/cocoa-rest-client/screenshots/screenshot-2.png", "https://mmattozzi.github.io/cocoa-rest-client/screenshots/screenshot-4.png", "https://mmattozzi.github.io/cocoa-rest-client/screenshots/screenshot-5.png", "https://mmattozzi.github.io/cocoa-rest-client/screenshots/screenshot-6.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "macOS App to explore CoreImage Filters. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/KrisYu/FilterShop", "title": "FilterShop", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/KrisYu/FilterShop/master/showcase.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS app to generate app icons. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/onmyway133/IconGenerator", "title": "IconGenerator", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/onmyway133/IconGenerator/master/Screenshots/gif.gif", "https://raw.githubusercontent.com/onmyway133/IconGenerator/master/Screenshots/banner.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Create Xcode image catalogs (xcassets) on the fly. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/raphaelhanneken/iconizer", "title": "Iconizer", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/raphaelhanneken/iconizer/master/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "App for macOS which is designed to generate consistent sized icons of an existing application in various states, jiggling (shaking) etc. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/SAP/macos-icon-generator", "title": "Icons.app", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "overdue Swift rewrite of Injection.", "categories": [ "ios--macos" ], "repo_url": "https://github.com/johnno1962/InjectionIII", "title": "InjectionIII", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c", "swift" ] }, { "short_description": "iOS Images Extractor is a Mac app to normalize, decode, and extract images from iOS apps. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/devcxm/iOS-Images-Extractor", "title": "iOS Images Extractor", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/devcxm/iOS-Images-Extractor/master/iOSImagesExtractor/iOSImagesExtractor/Images.xcassets/AppIcon.appiconset/AppIcon-256.png", "https://cloud.githubusercontent.com/assets/8568955/7927878/874f0594-0918-11e5-9fe3-452372f5affd.gif" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "iSimulator is a GUI utility to control the Simulator and manage the app installed on the simulator. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/wigl/iSimulator", "title": "iSimulator", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "The debug application for Apple Push Notification Service (APNs). ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/KnuffApp/Knuff", "title": "Knuff", "icon_url": "", "screenshots": [ "https://cloud.githubusercontent.com/assets/499192/12481271/36b610e0-c048-11e5-9be6-ee9e996036a2.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Intuitive app to display transparent images on screen. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/yuhua-chen/LayerX", "title": "LayerX", "icon_url": "", "screenshots": [ "http://img.youtube.com/vi/35KixjZBDjY/0.jpg" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Mac app to localize your iOS and macOS projects. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/cristibaluta/Localizable.strings", "title": "Localizable.strings", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Localizations is an macOS app that manages your Xcode project localization files (.strings). ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/e7711bbear/Localizations", "title": "Localizations", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simple macOS editor app to help you manage iOS app localizations by allowing you to edit all the translations side by side. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/igorkulman/iOSLocalizationEditor", "title": "Localization Editor", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS app for convenient access to the system color panel. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/nvzqz/Menubar-Colors", "title": "Menubar Colors", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/nvzqz/Menubar-Colors/master/Example.jpg" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "App to customize your Touch Bar as you want. ", "categories": [ "touch-bar" ], "repo_url": "https://github.com/toxblh/MTMR", "title": "MyTouchbarMyRules", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS app which helps you manage dependency releases in your Podfile. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/kizitonwose/PodsUpdater", "title": "PodsUpdater", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/kizitonwose/PodsUpdater/master/Assets/screenshot_2.png", "https://raw.githubusercontent.com/kizitonwose/PodsUpdater/master/Assets/screenshot_1.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Apple iOS/macOS Provisioning Profiles management,.provisionprofile, .mobileprovision files manager tool for mac. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/shaojiankui/ProfilesManager", "title": "ProfilesManager", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/shaojiankui/ProfilesManager/master/demo.jpg" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "macOS app to test push notifications on iOS and Android. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/onmyway133/PushNotifications", "title": "PushNotifications", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/onmyway133/PushNotifications/master/Screenshots/TeamId.png", "https://raw.githubusercontent.com/onmyway133/PushNotifications/master/Screenshots/iOSToken.png", "https://raw.githubusercontent.com/onmyway133/PushNotifications/master/Screenshots/Android.png", "https://raw.githubusercontent.com/onmyway133/PushNotifications/master/Screenshots/ios.png", "https://raw.githubusercontent.com/onmyway133/PushNotifications/master/Screenshots/KeyId.png", "https://raw.githubusercontent.com/onmyway133/PushNotifications/master/Screenshots/Key.png", "https://raw.githubusercontent.com/onmyway133/PushNotifications/master/Screenshots/iOSCertificate.png", "https://raw.githubusercontent.com/onmyway133/PushNotifications/master/Screenshots/AndroidServerKey.png", "https://raw.githubusercontent.com/onmyway133/PushNotifications/master/Screenshots/Certificate.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "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. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/InjoyDeng/ResignTool", "title": "ResignTool", "icon_url": "", "screenshots": [ "https://i.imgur.com/H8kRoPf.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "MacOS application for creating AppIcon for iOS and Android apps.", "categories": [ "ios--macos" ], "repo_url": "https://github.com/onurgenes/Resizr", "title": "Resizr", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "iOS Push Notification Debug App. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/shaojiankui/SmartPush", "title": "SmartPush", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/shaojiankui/SmartPush/master/demo.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Small application to display your designs on the Touch Bar of the new MacBook Pro. ", "categories": [ "touch-bar" ], "repo_url": "https://github.com/touchbar/Touch-Bar-Preview", "title": "Touch Bar Preview", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Use the Touch Bar on any Mac. ", "categories": [ "touch-bar" ], "repo_url": "https://github.com/sindresorhus/touch-bar-simulator", "title": "Touch Bar Simulator", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "iOS/Android app deployment tool for macOS. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/iseebi/TransporterPad", "title": "TransporterPad", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Unofficial WWDC app for macOS. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/insidegui/WWDC", "title": "WWDC", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Powerful app for downloading subtitle for each WWDC session video since 2013 in (srt) format. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/ssamadgh/WWDCsrt", "title": "WWDC.srt", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/ssamadgh/WWDCsrt/master/WWDCSubGetter/Assets.xcassets/AppIcon.appiconset/Icon_256x256.png", "https://raw.githubusercontent.com/ssamadgh/WWDCsrt/master/ScreenShots/Session02.png", "https://raw.githubusercontent.com/ssamadgh/WWDCsrt/master/ScreenShots/VideoLink.png", "https://raw.githubusercontent.com/ssamadgh/WWDCsrt/master/ScreenShots/TextFile.png", "https://raw.githubusercontent.com/ssamadgh/WWDCsrt/master/ScreenShots/Session01.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Tool to convert Xcode .xib to .storyboard files. ", "categories": [ "ios--macos" ], "repo_url": "https://github.com/novemberfiveco/xib2Storyboard", "title": "xib2Storyboard", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "macOS app to convert JSON objects into Swift structs (currently targets Swift 4 and Codable). ", "categories": [ "json-parsing" ], "repo_url": "https://github.com/zadr/j2s", "title": "j2s", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simple macOS app to generate Swift Object Mapper classes from JSON. ", "categories": [ "json-parsing" ], "repo_url": "https://github.com/AppCraft-LLC/json-mapper", "title": "JSON Mapper", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "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. ", "categories": [ "json-parsing" ], "repo_url": "https://github.com/Ahmed-Ali/JSONExport", "title": "JSONExport", "icon_url": "", "screenshots": [ "https://cloud.githubusercontent.com/assets/5157350/5228493/72693010-7713-11e4-9e42-625a8590424a.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Template based highly customizable macOS app to generate classes from JSON string, supports many languages. ", "categories": [ "json-parsing" ], "repo_url": "https://github.com/chanonly123/Json-Model-Generator", "title": "JSON to Model class", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/chanonly123/Json-Model-Generator/master/demo1.jpg" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simple macOS app for uploading files to Amazon Web Services. ", "categories": [ "web-development" ], "repo_url": "https://github.com/RafalWilinski/s3-uploader", "title": "aws-s3-uploader", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/RafalWilinski/s3-uploader/master/upload_anim.gif" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "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. ", "categories": [ "web-development" ], "repo_url": "https://github.com/TheNewNormal/corectl.app", "title": "Corectl App for macOS", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/TheNewNormal/corectl.app/master/corectl_app.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "CoreOS VM is macOS status bar app which allows in an easy way to control CoreOS VM on your Mac. ", "categories": [ "web-development" ], "repo_url": "https://github.com/TheNewNormal/coreos-osx", "title": "CoreOS VM", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/TheNewNormal/coreos-osx/master/coreos-osx.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "HTTP Toolkit is a cross-platform tool to intercept, debug & mock HTTP. ", "categories": [ "web-development" ], "repo_url": "https://github.com/httptoolkit/httptoolkit-desktop", "title": "HTTP Toolkit", "icon_url": "https://httptoolkit.com/icon-600.png", "screenshots": [ "https://raw.githubusercontent.com/httptoolkit/httptoolkit.tech/master/src/images/inspect-screenshot.png", "https://raw.githubusercontent.com/httptoolkit/httptoolkit.tech/master/src/images/intercept-screenshot.png", "https://raw.githubusercontent.com/httptoolkit/httptoolkit.tech/master/src/images/edit-screenshot.png" ], "official_site": "https://httptoolkit.com/", "languages": [ "typescript" ] }, { "short_description": "A lightweight open-source API Development, Testing & Mocking platform", "categories": [ "web-development" ], "repo_url": "https://github.com/requestly/requestly", "title": "Requestly", "icon_url": "https://raw.githubusercontent.com/requestly/requestly/master/app/public/favicon.png", "screenshots": [ "https://github.com/user-attachments/assets/a962b213-8744-4ffc-bd04-fcf891f48914", "https://github.com/user-attachments/assets/7bc00c7e-c280-40eb-9a2a-c070ecdea662" ], "official_site": "https://requestly.com", "languages": [ "javascript" ] }, { "short_description": "Insomnia is a cross-platform REST client, built on top of Electron. ", "categories": [ "web-development" ], "repo_url": "https://github.com/Kong/insomnia", "title": "Insomnia", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/getinsomnia/insomnia/master/screenshots/main.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "macOS app to let you access iTunesConnect. ", "categories": [ "web-development" ], "repo_url": "https://github.com/trulyronak/itunesconnect", "title": "iTunesConnect", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "KubeMonitor is a macOS app that displays information about your active Kubernetes cluster in your menu bar. ", "categories": [ "web-development" ], "repo_url": "https://github.com/Daniel-Sanche/KubeMonitor", "title": "KubeMonitor", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/DanSanche/KubeMonitor/master/Screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "KubeSwitch lists the available kubernetes cluster contexts on the mac, in Mac's Menu bar.", "categories": [ "web-development" ], "repo_url": "https://github.com/nsriram/KubeSwitch", "title": "KubeSwitch", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/nsriram/KubeSwitch/master/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Dedicated Mac app for website auditing and crawling. ", "categories": [ "web-development" ], "repo_url": "https://github.com/RoyalIcing/Lantern", "title": "Lantern", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simple Menu Bar (Status Bar) App for macOS listing local Bonjour websites (as Safari 11 no longer has Bonjour Bookmarks). ", "categories": [ "web-development" ], "repo_url": "https://github.com/plan44/localSites", "title": "LocalSites", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Evaluate Nodejs/JS code snippets from Menubar. ", "categories": [ "web-development" ], "repo_url": "https://github.com/vsaravind007/nodeScratchpad", "title": "nodeScratchpad", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS app for monitoring the status of cloud services. ", "categories": [ "web-development" ], "repo_url": "https://github.com/inket/stts", "title": "stts", "icon_url": "", "screenshots": [ "https://i.imgur.com/OAK3hR0.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Node and Attribute viewer for Chef ", "categories": [ "other-development" ], "repo_url": "https://github.com/Yasumoto/ChefInspector", "title": "ChefInspector", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/Yasumoto/ChefInspector/master/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Browser for macOS Mach-O binaries. ", "categories": [ "other-development" ], "repo_url": "https://github.com/dcsch/macho-browser", "title": "macho-browser", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Browser based GUI for **LLDB** Debugger. ", "categories": [ "other-development" ], "repo_url": "https://github.com/ant4g0nist/vegvisir", "title": "vegvisir", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/ant4g0nist/vegvisir/master/Screenshots/funcs.png", "https://raw.githubusercontent.com/ant4g0nist/vegvisir/master/Screenshots/sections.png", "https://raw.githubusercontent.com/ant4g0nist/vegvisir/master/Screenshots/blank.png", "https://raw.githubusercontent.com/ant4g0nist/vegvisir/master/Screenshots/auto_suggest.png", "https://raw.githubusercontent.com/ant4g0nist/vegvisir/master/Screenshots/help.png", "https://raw.githubusercontent.com/ant4g0nist/vegvisir/master/Screenshots/strings.png", "https://raw.githubusercontent.com/ant4g0nist/vegvisir/master/Screenshots/target_create.png", "https://raw.githubusercontent.com/ant4g0nist/vegvisir/master/Screenshots/funcs_imported.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Easily search and download macOS apps from the huge `homebrew cask` app catalog. ", "categories": [ "downloader" ], "repo_url": "https://github.com/yep/app-downloader", "title": "App Downloader", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Native macOS video/audio downloader. Think of it as a youtube downloader that works on many sites. ", "categories": [ "downloader" ], "repo_url": "https://github.com/Kevin-De-Koninck/Get-It", "title": "Get It", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A full-featured download manager. ", "categories": [ "downloader" ], "repo_url": "https://github.com/agalwood/Motrix", "title": "Motrix", "icon_url": "https://github.com/agalwood/Motrix/blob/master/build/256x256.png", "screenshots": [ "https://raw.githubusercontent.com/agalwood/Motrix/master/screenshots/motrix-task-list-empty-light%402x.png", "https://raw.githubusercontent.com/agalwood/Motrix/master/screenshots/motrix-task-list-downloading-light%402x.png", "https://raw.githubusercontent.com/agalwood/Motrix/master/screenshots/motrix-task-list-empty-dark%402x.png", "https://raw.githubusercontent.com/agalwood/Motrix/master/screenshots/motrix-task-list-downloading-dark%402x.png" ], "official_site": "https://motrix.app/", "languages": [ "javascript" ] }, { "short_description": "macOS Video Downloader written in Swift and Objective-C.", "categories": [ "downloader" ], "repo_url": "https://github.com/Pjirlip/Pillager", "title": "Pillager", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/Pjirlip/Pillager/master/docu/pillagerpreview.png", "https://raw.githubusercontent.com/Pjirlip/Pillager/master/docu/useffmpeg.gif" ], "official_site": "", "languages": [ "objective_c", "swift" ] }, { "short_description": "desktop application for downloading Udemy Courses. ", "categories": [ "downloader" ], "repo_url": "https://github.com/FaisalUmair/udemy-downloader-gui", "title": "udemy-downloader-gui", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "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. ", "categories": [ "downloader" ], "repo_url": "https://github.com/DenBeke/YouTube-Downloader-for-macOS", "title": "YouTube Downloader for macOS", "icon_url": "", "screenshots": [ "https://denbeke.be/blog/wp-content/uploads/2017/11/Youtube-downloader-macOS-Swift.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A simple CSV editor for macOS.", "categories": [ "csv" ], "repo_url": "https://github.com/jakob/TableTool", "title": "TableTool", "icon_url": "https://github.com/jakob/TableTool/raw/master/Table%20Tool/Images.xcassets/AppIcon.appiconset/icon_128x128@2x.png", "screenshots": [], "official_site": "https://apps.apple.com/app/table-tool/id1122008420", "languages": [ "objective_c" ] }, { "short_description": "GUI for editing, visualizing, and manipulating JSON data. ", "categories": [ "json" ], "repo_url": "https://github.com/wellsjo/JSON-Splora", "title": "JSON-Splora", "icon_url": "", "screenshots": [ "https://i.imgur.com/CiXIrrg.gif", "https://raw.githubusercontent.com/wellsjo/JSON-Splora/master/app/assets/logos/logo.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Dead simple JSON editor using josdejong/jsoneditor", "categories": [ "json" ], "repo_url": "https://github.com/fand/json-editor-app", "title": "JSON Editor", "icon_url": "https://user-images.githubusercontent.com/1403842/73547507-70f89d00-4482-11ea-9559-545e5f82459a.png", "screenshots": [ "https://user-images.githubusercontent.com/1403842/73547401-2ecf5b80-4482-11ea-8b03-753c1621c116.png" ], "official_site": "", "languages": [ "typescript" ] }, { "short_description": "Tree-structured markdown editor for macOS, Windows, and Linux. ", "categories": [ "markdown" ], "repo_url": "https://github.com/gingko/client", "title": "Gingko", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/gingko/client/master/docs/images/screenshot-alien-screenplay.png" ], "official_site": "", "languages": [ "elm" ] }, { "short_description": "Markdown editor for macOS. ", "categories": [ "markdown" ], "repo_url": "https://github.com/MacDownApp/macdown", "title": "MacDown", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Realtime preview markdown editor for macOS Windows and Linux. ", "categories": [ "markdown" ], "repo_url": "https://github.com/marktext/marktext/", "title": "Mark Text", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "A modern MacOS markdown editor. ", "categories": [ "markdown" ], "repo_url": "https://github.com/lukakerr/Pine", "title": "Pine", "icon_url": "", "screenshots": [ "https://i.imgur.com/ptzSBmo.jpg", "https://camo.githubusercontent.com/14fd8828c4ab0e59f62cd7457fff295fe8113f26/68747470733a2f2f692e696d6775722e636f6d2f767841614e65582e706e67", "https://camo.githubusercontent.com/77b139742c8d23e154de89331b5fcfd3672878bf/68747470733a2f2f692e696d6775722e636f6d2f354c51314c6c342e706e67" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A Markdown Editor for the 21st century.", "categories": [ "markdown" ], "repo_url": "https://github.com/Zettlr/Zettlr", "title": "Zettlr", "icon_url": "https://raw.githubusercontent.com/Zettlr/Zettlr/master/resources/icons/png/512x512.png", "screenshots": [ "https://raw.githubusercontent.com/Zettlr/Zettlr/develop/resources/screenshots/zettlr_view.png" ], "official_site": "https://www.zettlr.com/", "languages": [ "javascript", "typescript" ] }, { "short_description": "Community plugins list, theme list, and releases of Obsidian. ", "categories": [ "markdown" ], "repo_url": "https://github.com/obsidianmd/obsidian-releases", "title": "Obsidian plugins & themes", "icon_url": "", "screenshots": [ "" ], "official_site": "https://obsidian.md/", "languages": [ "javascript" ] }, { "short_description": "MarkEdit is a free and open-source Markdown editor, for macOS. It's just like TextEdit on Mac but dedicated to Markdown.", "categories": [ "markdown" ], "repo_url": "https://github.com/MarkEdit-app/MarkEdit", "title": "MarkEdit", "icon_url": "https://is1-ssl.mzstatic.com/image/thumb/Purple126/v4/47/0b/09/470b096f-fa45-b056-7f71-9cdde6b5c392/AppIcon-85-220-4-2x.png/460x0w.png", "screenshots": [ "https://github.com/MarkEdit-app/MarkEdit/blob/main/Screenshots/01.png", "https://github.com/MarkEdit-app/MarkEdit/raw/main/Screenshots/02.png", "https://github.com/MarkEdit-app/MarkEdit/blob/main/Screenshots/03.png" ], "official_site": "https://markedit.app/", "languages": [ "swift", "typescript" ] }, { "short_description": "Text editor for exact sciences with built-in KaTeX/AsciiMath support. ", "categories": [ "tex" ], "repo_url": "https://github.com/qilin-editor/qilin-app", "title": "Qilin Editor", "icon_url": "", "screenshots": [ "https://i.imgur.com/VOGLGv5.png", "https://i.imgur.com/LYzVw99.png", "https://i.imgur.com/utXxWLf.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Lightweight Plain-Text Editor for macOS. ", "categories": [ "text" ], "repo_url": "https://github.com/coteditor/CotEditor", "title": "CotEditor", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/coteditor/CotEditor/master/screenshot@2x.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Lightweight Code Editor (IDE) for macOS. ", "categories": [ "ide", "editors", "text" ], "repo_url": "https://github.com/AuroraEditor/AuroraEditor", "title": "AuroraEditor", "icon_url": "https://avatars.githubusercontent.com/u/106490518", "screenshots": [ "https://user-images.githubusercontent.com/63672227/187914690-2277654c-6cab-4738-b151-1c85947bea8b.jpg" ], "official_site": "https://auroraeditor.com", "languages": [ "swift" ] }, { "short_description": "Text editor for macOS. ", "categories": [ "text" ], "repo_url": "https://github.com/macvim-dev/macvim", "title": "MacVim", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "c" ] }, { "short_description": "A terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the capabilities of modern terminals.", "categories": [ "text" ], "repo_url": "https://github.com/zyedidia/micro", "title": "micro", "icon_url": "https://raw.githubusercontent.com/zyedidia/micro/master/assets/micro-logo.svg", "screenshots": [ "https://micro-editor.github.io/screenshots/micro-monokai.png", "https://micro-editor.github.io/screenshots/micro-one-dark.png", "https://micro-editor.github.io/screenshots/micro-darcula.png", "https://micro-editor.github.io/screenshots/micro-twilight.png", "https://micro-editor.github.io/screenshots/micro-railscast.png", "https://micro-editor.github.io/screenshots/micro-solarized.png", "https://micro-editor.github.io/screenshots/micro-atom-dark.png", "https://micro-editor.github.io/screenshots/micro-gruvbox.png", "https://micro-editor.github.io/screenshots/micro-material.png", "https://micro-editor.github.io/screenshots/micro-gotham.png", "https://micro-editor.github.io/screenshots/micro-zenburn.png" ], "official_site": "https://micro-editor.github.io", "languages": [ "go" ] }, { "short_description": "Plain text editor for macOS with customizable themes. ", "categories": [ "text" ], "repo_url": "https://github.com/brunophilipe/noto", "title": "Noto", "icon_url": "", "screenshots": [ "https://i.imgur.com/BlqwbV7.png", "https://i.imgur.com/SXh8o7n.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "TextMate is a graphical text editor for macOS. ", "categories": [ "text" ], "repo_url": "https://github.com/textmate/textmate", "title": "TextMate", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/textmate/textmate/gh-pages/images/screenshot.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Refined Neovim experience for macOS. ", "categories": [ "text" ], "repo_url": "https://github.com/qvacua/vimr", "title": "VimR", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Use native picture-in-picture with browsers such as Google Chrome for HTML5 videos. ", "categories": [ "extensions" ], "repo_url": "https://github.com/Capevace/BetterPiP", "title": "BetterPiP", "icon_url": "", "screenshots": [ "https://media.giphy.com/media/3b7gn1cvDnjDk9Kngv/giphy-downsized-large.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "PiPifier is a native macOS 10.12 Safari extension that lets you use every HTML5 video in Picture in Picture mode. ", "categories": [ "extensions" ], "repo_url": "https://github.com/arnoappenzeller/PiPifier", "title": "PiPifier", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/arnoappenzeller/PiPifier/master/macOS/Images/demo.gif", "https://raw.githubusercontent.com/arnoappenzeller/PiPifier/master/macOS/Images/Banner.png", "https://raw.githubusercontent.com/arnoappenzeller/PiPifier/master/macOS/Images/pipifier_ios_usage.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Add the Picture-in-Picture Functionality to YouTube, Netflix, Plex and other video broadcasting services in macOS. ", "categories": [ "extensions" ], "repo_url": "https://github.com/bfmatei/PiPTool", "title": "PiPTool", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "This Xcode extension enables you to make a code selection and export it to a snippets. Available on Mac AppStore.", "categories": [ "extensions" ], "repo_url": "https://github.com/bow-swift/nef-plugin", "title": "nef", "icon_url": "https://raw.githubusercontent.com/bow-swift/bow-art/master/assets/nef-brand-xcode-shadow.png", "screenshots": [ "https://raw.githubusercontent.com/bow-swift/nef-plugin/master/assets/nef-plugin-action-export.png", "https://raw.githubusercontent.com/bow-swift/nef-plugin/master/assets/nef-xcode-preferences.png" ], "official_site": "https://nef.bow-swift.io/", "languages": [ "swift" ] }, { "short_description": "Swimat is an Xcode plug-in to format your Swift code.", "categories": [ "extensions" ], "repo_url": "https://github.com/Jintin/Swimat", "title": "Swimat", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/Jintin/Swimat/master/README/preview.gif" ], "official_site": "https://jintin.github.io/Swimat/", "languages": [ "swift" ] }, { "short_description": "Clipy is a Clipboard extension app for macOS. ", "categories": [ "finder" ], "repo_url": "https://github.com/Clipy/Clipy", "title": "Clipy", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/Clipy/Clipy/master/Resources/clipy_logo.png", "https://clipy-app.com/img/screenshot1.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Clipboard manager with advanced features", "categories": [ "finder" ], "repo_url": "https://github.com/hluk/CopyQ", "title": "CopyQ", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder. ", "categories": [ "finder", "terminal" ], "repo_url": "https://github.com/onmyway133/FinderGo", "title": "Finder Go", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Execute custom scripts from the MacOS context menu (CTRL+click) in Finder. ", "categories": [ "finder" ], "repo_url": "https://github.com/Mortennn/FiScript", "title": "FiScript", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/Mortennn/FiScript/master/Images/landingNoText.png", "https://raw.githubusercontent.com/Mortennn/FiScript/master/Images/logo.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Finder toolbar app to open current folder in Visual Studio Code. ", "categories": [ "finder" ], "repo_url": "https://github.com/sozercan/OpenInCode", "title": "OpenInCode", "icon_url": "", "screenshots": [ "https://i.imgur.com/F5ZrCmS.gif" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Turn-based tactical strategy game, featuring both single-player and online multiplayer combat. ", "categories": [ "games" ], "repo_url": "https://github.com/wesnoth/wesnoth", "title": "Battle for Wesnoth", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "The DOS game emulator that’s fit for your Mac.", "categories": [ "games" ], "repo_url": "https://github.com/alunbestor/Boxer", "title": "Boxer", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp", "objective_c" ] }, { "short_description": "Powerful emulator for Nintendo GameCube and Wii games. ", "categories": [ "games" ], "repo_url": "https://github.com/dolphin-emu/dolphin", "title": "Dolphin", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "Retro video game emulation for macOS. ", "categories": [ "games" ], "repo_url": "https://github.com/OpenEmu/OpenEmu", "title": "OpenEmu", "icon_url": "", "screenshots": [ "http://openemu.org/img/intro-md.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Re-implementation of RollerCoaster Tycoon 2. ", "categories": [ "games" ], "repo_url": "https://github.com/OpenRCT2/OpenRCT2", "title": "OpenRCT2", "icon_url": "", "screenshots": [ "https://camo.githubusercontent.com/888d993a9716208446bd0d5a762977d6b7993058/68747470733a2f2f692e696d6775722e636f6d2f6537434b3553632e706e67" ], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "An elegant Go/Baduk/Weiqi board and SGF editor for a more civilized age.", "categories": [ "games" ], "repo_url": "https://github.com/SabakiHQ/Sabaki", "title": "Sabaki", "icon_url": "", "screenshots": [], "official_site": "http://sabaki.yichuanshen.de", "languages": [ "javascript" ] }, { "short_description": "Turn your screen into a playable level of Mario. ", "categories": [ "games" ], "repo_url": "https://github.com/AaronRandall/Screentendo", "title": "Screentendo", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/AaronRandall/Screentendo/master/Screentendo/Screentendo.gif" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Beautiful, powerful chess application.", "categories": [ "games" ], "repo_url": "https://github.com/daylen/stockfish-mac", "title": "Stockfish", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp", "objective_c" ] }, { "short_description": "Animated sprite editor & pixel art tool (Windows, macOS, Linux).", "categories": [ "graphics" ], "repo_url": "https://github.com/aseprite/aseprite", "title": "Aseprite", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp", "c" ] }, { "short_description": "Tool to capture screenshot and recognize text by online ocr apis. ", "categories": [ "graphics" ], "repo_url": "https://github.com/sfragrance/CaptuocrToy", "title": "CaptuocrToy", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/gragrance/CaptuocrToy/master/screenshot.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Gif capture app for macOS. ", "categories": [ "graphics" ], "repo_url": "https://github.com/onmyway133/GifCapture", "title": "GifCapture", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/onmyway133/GifCapture/master/Images/gifcapture.png", "https://raw.githubusercontent.com/onmyway133/GifCapture/master/Images/Icon.png", "https://raw.githubusercontent.com/onmyway133/GifCapture/master/Images/g2.gif", "https://raw.githubusercontent.com/onmyway133/GifCapture/master/Images/g3.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Video to GIF maker with a graphical interface capable of cropping, adding text, seeking, and trimming. ", "categories": [ "graphics" ], "repo_url": "https://github.com/lettier/gifcurry", "title": "Gifcurry", "icon_url": "", "screenshots": [ "https://i.imgur.com/KFZyEqq.png", "https://i.imgur.com/ByyCNuk.gif" ], "official_site": "", "languages": [ "haskell" ] }, { "short_description": "Convert videos to high-quality GIFs. ", "categories": [ "graphics" ], "repo_url": "https://github.com/sindresorhus/Gifski", "title": "Gifski", "icon_url": "https://raw.githubusercontent.com/sindresorhus/Gifski/master/Stuff/AppIcon-readme.png", "screenshots": [ "https://raw.githubusercontent.com/sindresorhus/Gifski/master/Stuff/screenshot2.jpg", "https://raw.githubusercontent.com/sindresorhus/Gifski/master/Stuff/screenshot1.jpg", "https://raw.githubusercontent.com/sindresorhus/Gifski/master/Stuff/screenshot3.jpg", "https://raw.githubusercontent.com/sindresorhus/Gifski/master/Stuff/screenshot4.jpg" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Proof of concept Mac drawing application. ", "categories": [ "graphics" ], "repo_url": "https://github.com/CleanCocoa/InfiniteCanvas", "title": "InfiniteCanvas", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/CleanCocoa/InfiniteCanvas/master/assets/title-sketch.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS application for designing HTML5 SVG (Scalable Vector Graphics) art and animation with a WebKit web view. ", "categories": [ "graphics" ], "repo_url": "https://github.com/dsward2/macSVG", "title": "macSVG", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/dsward2/macSVG/master/README_images/macsvg-screenshot.jpg" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Choose your Material colours and copy the hex code. ", "categories": [ "graphics" ], "repo_url": "https://github.com/BafS/Material-Colors-native", "title": "Material Colors Native", "icon_url": "", "screenshots": [ "https://i.imgur.com/jIJ4Gcf.gif" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "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. ", "categories": [ "graphics" ], "repo_url": "https://github.com/pencil2d/pencil", "title": "Pencil2D Animation", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "ScreenToLayers is a macOS application to easily capture your screen as a layered PSD file.", "categories": [ "graphics" ], "repo_url": "https://github.com/duyquoc/ScreenToLayers", "title": "ScreenToLayers for macOS", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/duyquoc/ScreenToLayers/master/Others/presentation.png" ], "official_site": "", "languages": [ "objective_c", "css" ] }, { "short_description": "Gaphor is the simple modeling tool for UML and SysML.", "categories": [ "graphics" ], "repo_url": "https://github.com/gaphor/gaphor", "title": "Gaphor", "icon_url": "", "screenshots": [], "official_site": "https://gaphor.org", "languages": [ "python" ] }, { "short_description": "Oni is a modern take on modal editing code editor focused on developer productivity. ", "categories": [ "ide" ], "repo_url": "https://github.com/onivim/oni", "title": "Oni", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript", "typescript" ] }, { "short_description": "Code editor developed by Microsoft. ", "categories": [ "ide" ], "repo_url": "https://github.com/Microsoft/vscode", "title": "Visual Studio Code", "icon_url": "", "screenshots": [ "https://cloud.githubusercontent.com/assets/11839736/16642200/6624dde0-43bd-11e6-8595-c81885ba0dc2.png" ], "official_site": "", "languages": [ "typescript" ] }, { "short_description": "VSCodium is a community-driven, freely-licensed binary distribution of Microsoft's VS Code with all telemetry removed. ", "categories": [ "ide" ], "repo_url": "https://github.com/VSCodium/vscodium", "title": "VSCodium", "icon_url": "https://raw.githubusercontent.com/VSCodium/vscodium/master/icons/icon.png", "screenshots": [], "official_site": "https://vscodium.com/", "languages": [ "typescript" ] }, { "short_description": "CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever.", "categories": [ "ide", "editors" ], "repo_url": "https://github.com/CodeEditApp/CodeEdit", "title": "CodeEdit", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/806104/194004176-3143d19f-1ad9-449c-bd41-8c4f9998f44b.png" ], "official_site": "https://www.codeedit.app/", "languages": [ "swift" ] }, { "short_description": "Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.", "categories": [ "ide", "editors", "text" ], "repo_url": "https://github.com/geany/geany", "title": "Geany", "icon_url": "https://raw.githubusercontent.com/geany/geany/master/icons/48x48/geany.png", "screenshots": [ "https://www.geany.org/media/uploads/screenshots/geany_dark_2019-05-20.png" ], "official_site": "https://www.geany.org/", "languages": [ "c", "c++" ] }, { "short_description": "Zed is an open source, high-performance, and multiplayer code editor", "categories": [ "ide", "editors" ], "repo_url": "https://github.com/zed-industries/zed", "title": "Zed", "icon_url": "https://zed.dev/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Flogo_square_36_white.1fd89961.png&w=48&q=75", "screenshots": [ "" ], "official_site": "https://zed.dev", "languages": [ "rust" ] }, { "short_description": "ubiquitous text editor", "categories": [ "ide" ], "repo_url": "https://github.com/vim/vim", "title": "Vim", "icon_url": "", "screenshots": [ "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Vim-search-copen-quickfix.png/640px-Vim-search-copen-quickfix.png" ], "official_site": "https://www.vim.org/", "languages": [ "C", "Vim script" ] }, { "short_description": "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. ", "categories": [ "ide" ], "repo_url": "https://github.com/pkulchenko/ZeroBraneStudio", "title": "ZeroBraneStudio", "icon_url": "", "screenshots": [ "https://studio.zerobrane.com/images/debugging.png" ], "official_site": "", "languages": [ "lua" ] }, { "short_description": "Eclipse is an open-source integrated development environment (IDE) used in computer programming, featuring a base workspace and an extensible plug-in system for customizing the environment.", "categories": [ "ide", "development" ], "repo_url": "https://github.com/eclipse-platform/eclipse.platform", "title": "Eclipse", "icon_url": "", "screenshots": [], "official_site": "https://www.eclipse.org", "languages": [ "java" ] }, { "short_description": "macOS app which assembles and disassembles animated png files. ", "categories": [ "images" ], "repo_url": "https://github.com/shgodoroja/APNGb", "title": "APNGb", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Remove image metadata with drag and drop, multi-core batch processing, and dark mode.", "categories": [ "images" ], "repo_url": "https://github.com/szTheory/exifcleaner", "title": "ExifCleaner", "icon_url": "https://exifcleaner.com/images/icon.png", "screenshots": [ "https://exifcleaner.com/images/screenshot.png", "https://exifcleaner.com/images/batchprocessing.png", "https://exifcleaner.com/images/darkmode.png" ], "official_site": "https://exifcleaner.com", "languages": [ "javascript" ] }, { "short_description": "Insane(ly slow but wicked good) PNG image optimization. ", "categories": [ "images" ], "repo_url": "https://github.com/chrissimpkins/Crunch", "title": "Crunch", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "python" ] }, { "short_description": "macOS Status Bar App for quick sketch. ", "categories": [ "images" ], "repo_url": "https://github.com/wddwycc/Freehand", "title": "Freehand", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/wddwycc/Freehand/master/_images/demo.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Gimp is GNU Image Manipulation Program. ", "categories": [ "images" ], "repo_url": "https://github.com/GNOME/gimp", "title": "Gimp", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "c" ] }, { "short_description": "Edit icons and then export to Xcode, icns, ico, favicon, macOS iconset, or a custom collection. ", "categories": [ "images", "ios--macos" ], "repo_url": "https://github.com/liamrosenfeld/Iconology", "title": "Iconology", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/liamrosenfeld/Iconology/main/Iconology/Assets.xcassets/Logo.imageset/logo-long-black.svg" ], "official_site": "https://apps.apple.com/us/app/iconology/id1463452867", "languages": [ "swift" ] }, { "short_description": "Mac GUI for pngquant, pngnq and posterizer.", "categories": [ "images" ], "repo_url": "https://github.com/kornelski/ImageAlpha", "title": "ImageAlpha", "icon_url": "", "screenshots": [ "https://pngmini.com/screenshot-1.3.png" ], "official_site": "", "languages": [ "objective_c", "python" ] }, { "short_description": "Imagine is a desktop app for compression of PNG and JPEG, with a modern and friendly UI. ", "categories": [ "images" ], "repo_url": "https://github.com/meowtec/Imagine", "title": "Imagine", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "typescript" ] }, { "short_description": "Katana is a simple screenshot utility for macOS that lives in your menubar.", "categories": [ "images" ], "repo_url": "https://github.com/bluegill/katana", "title": "Katana", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript", "css" ] }, { "short_description": "macOS app for finding and lost forgotten photos on your disks. ", "categories": [ "images" ], "repo_url": "https://github.com/gergelysanta/photominer", "title": "PhotoMiner", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/gergelysanta/photominer/master/AppStore/Screenshots/06.png", "https://raw.githubusercontent.com/gergelysanta/photominer/master/AppStore/Screenshots/02.png", "https://raw.githubusercontent.com/gergelysanta/photominer/master/AppStore/Screenshots/04.png", "https://raw.githubusercontent.com/gergelysanta/photominer/master/AppStore/Screenshots/03.png", "https://raw.githubusercontent.com/gergelysanta/photominer/master/AppStore/Screenshots/05.png", "https://raw.githubusercontent.com/gergelysanta/photominer/master/AppStore/Screenshots/07.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS menubar app for automating screenshots. ", "categories": [ "images" ], "repo_url": "https://github.com/crilleengvall/Screenbar", "title": "Screenbar", "icon_url": "", "screenshots": [ "https://www.screenbar.net/assets/images/screenbar-window.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "WebPonize is a macOS App for converting PNG, JPEG, animated (or not) GIF images into WebP.", "categories": [ "images" ], "repo_url": "https://github.com/1000ch/WebPonize", "title": "WebPonize", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift", "c" ] }, { "short_description": "macOS application for controlling AnnePro keyboard over bluetooth. ", "categories": [ "keyboard" ], "repo_url": "https://github.com/msvisser/AnnePro-mac", "title": "AnnePro-mac", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Handy tool for macOS allowing you to switch Fn keys' mode based on active application. ", "categories": [ "keyboard" ], "repo_url": "https://github.com/Pyroh/Fluor", "title": "Fluor", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Karabiner-Elements configuration manager, rescue to bloated karabiner.json ", "categories": [ "keyboard" ], "repo_url": "https://github.com/yqrashawn/GokuRakuJoudo", "title": "GokuRakuJoudo", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "clojure" ] }, { "short_description": "Karabiner (KeyRemap4MacBook) is a powerful utility for keyboard customization.", "categories": [ "keyboard" ], "repo_url": "https://github.com/tekezo/Karabiner", "title": "Karabiner", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp", "objective_c" ] }, { "short_description": "Karabiner-Elements is a powerful utility for keyboard customization on macOS Sierra (10.12) or later.", "categories": [ "keyboard" ], "repo_url": "https://github.com/pqrs-org/Karabiner-Elements", "title": "Karabiner-Elements", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp", "objective_c" ] }, { "short_description": "Better input source switcher for macOS. ", "categories": [ "keyboard" ], "repo_url": "https://github.com/hatashiro/kawa", "title": "Kawa", "icon_url": "", "screenshots": [ "https://cloud.githubusercontent.com/assets/1013641/9109734/d73505e4-3c72-11e5-9c71-49cdf4a484da.gif", "https://raw.githubusercontent.com/hatashiro/kawa/master/resource/png/logo.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Keystroke visualizer.", "categories": [ "keyboard" ], "repo_url": "https://github.com/keycastr/keycastr", "title": "Keycastr", "icon_url": "", "screenshots": [ "https://github.com/keycastr/keycastr/blob/5a9a9e5b498aad7f3bc26e3c2c95862359dbf3e4/assets/preview.png" ], "official_site": "", "languages": [ "Objective-C" ] }, { "short_description": "Switch the right application ASAP. ", "categories": [ "keyboard" ], "repo_url": "https://github.com/gbammc/Thor", "title": "Thor", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/gbammc/Thor/master/screenshot_settings.png", "https://raw.githubusercontent.com/gbammc/Thor/master/screenshot_list.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A software attempt to address the \"double key press\" issue on Apple's butterfly keyboard ", "categories": [ "keyboard" ], "repo_url": "https://github.com/aahung/Unshaky", "title": "Unshaky", "icon_url": "", "screenshots": [ "https://github.com/aahung/Unshaky/blob/master/README/menubar.png", "https://github.com/aahung/Unshaky/blob/master/README/how-unshaky-works.png" ], "official_site": "https://unshaky.nestederror.com/", "languages": [ "swift" ] }, { "short_description": "Menubar/taskbar Gmail App for Windows and macOS. ", "categories": [ "mail" ], "repo_url": "https://github.com/amitmerchant1990/correo", "title": "Correo", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Fast and Simple Email Client.", "categories": [ "mail" ], "repo_url": "https://github.com/dinhvh/dejalu", "title": "dejalu", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/dinhviethoa/dejalu/master/screenshot.jpg" ], "official_site": "", "languages": [ "cpp", "objective_c" ] }, { "short_description": "💌 A beautiful, fast and maintained fork of @nylas Mail by one of the original authors", "categories": [ "mail" ], "repo_url": "https://github.com/Foundry376/Mailspring", "title": "Mailspring", "icon_url": "", "screenshots": [], "official_site": "https://getmailspring.com/", "languages": [ "javascript" ] }, { "short_description": "Cross Platform messaging and emailing app that combines common web applications into one.", "categories": [ "mail" ], "repo_url": "https://github.com/ramboxapp/community-edition", "title": "Rambox", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript", "css" ] }, { "short_description": "3D medical imaging reconstruction software", "categories": [ "medical", "images" ], "repo_url": "https://github.com/invesalius/invesalius3/", "title": "InVesalius", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/wiki/invesalius/invesalius3/figures/screen_1.png", "https://raw.githubusercontent.com/wiki/invesalius/invesalius3/figures/screen_2.png", "https://raw.githubusercontent.com/wiki/invesalius/invesalius3/figures/screen_3.png" ], "official_site": "", "languages": [ "python" ] }, { "short_description": "Status bar Mac application to overcome time constrained WiFi networks. ", "categories": [ "menubar" ], "repo_url": "https://github.com/alvesjtiago/airpass", "title": "Airpass", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "The missing macOS bluetooth headset battery indicator app.", "categories": [ "menubar" ], "repo_url": "https://github.com/jariz/Akku", "title": "Akku", "icon_url": "https://camo.githubusercontent.com/653ba2421bda421e22443d9e2d9a6b314c0ad0367e71305e6b2ae40efc3f9b51/68747470733a2f2f6a6172692e6c6f6c2f725237364a3559736e552e706e67", "screenshots": [ "https://camo.githubusercontent.com/0f9f9231ff083edead13ad239d7a73566e7b1933c3f176e11ce04e7e624bb24a/68747470733a2f2f6a6172692e6c6f6c2f384f516d4c6e794b72752e706e67" ], "official_site": "", "languages": [ "swift", "python", "ruby" ] }, { "short_description": "Keep your MAC address random for privacy (intuitive GUI for ifconfig)", "categories": [ "menubar" ], "repo_url": "https://github.com/halo/LinkLiar", "title": "LinkLiar", "icon_url": "", "screenshots": [ "https://cdn.jsdelivr.net/gh/halo/LinkLiar@master/docs/screenshot_3.0.1b.svg" ], "official_site": "https://halo.github.io/LinkLiar/", "languages": [ "swift" ] }, { "short_description": "macOS menubar status indicator. ", "categories": [ "menubar" ], "repo_url": "https://github.com/tonsky/AnyBar", "title": "AnyBar", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "The missing Applications Menu for macOS.", "categories": [ "menubar" ], "repo_url": "https://github.com/barseghyanartur/app-menu", "title": "app-menu", "icon_url": "https://github.com/barseghyanartur/app-menu/blob/main/ApplicationMenu/Assets.xcassets/AppIcon.appiconset/icon_32x32.png", "screenshots": [ "https://github.com/barseghyanartur/app-menu/blob/main/Docs/app_menu_screenshot.jpg", "https://github.com/barseghyanartur/app-menu/blob/main/Docs/app_menu_configuration_dir_access.jpg" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Put the output from any script or program into your macOS Menu Bar. ", "categories": [ "menubar" ], "repo_url": "https://github.com/matryer/xbar", "title": "xbar", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Simple menu bar macOS application for displaying lists of your iCloud Tabs and Reading List. ", "categories": [ "menubar" ], "repo_url": "https://github.com/josh-/CloudyTabs", "title": "CloudyTabs", "icon_url": "", "screenshots": [ "https://joshparnham.com/projects/cloudytabs/CloudyTabs.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Simple menu bar weather app for macOS written in Swift. ", "categories": [ "menubar" ], "repo_url": "https://github.com/inderdhir/DatWeatherDoe", "title": "DatWeatherDoe", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simple (bare-bones) macOS menubar extra to apply display presets. ", "categories": [ "menubar" ], "repo_url": "https://github.com/Kwpolska/DisplayMenu", "title": "DisplayMenu", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS status bar app that allows control over the gpu on dual gpu macbooks. ", "categories": [ "menubar" ], "repo_url": "https://github.com/CodySchrank/gSwitch", "title": "gSwitch", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS System Monitor (cpu, memory, network, fan and battery) for the Status Bar. ", "categories": [ "menubar" ], "repo_url": "https://github.com/iglance/iGlance", "title": "iGlance", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "import, manage and switch between your Kubernetes contexts on Mac. ", "categories": [ "menubar" ], "repo_url": "https://github.com/turkenh/KubeContext", "title": "KubeContext", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/turkenh/KubeContext/master/Image/SS3.png", "https://raw.githubusercontent.com/turkenh/KubeContext/master/Image/SS4.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS app to change the screen brightness on the menubar. ", "categories": [ "menubar" ], "repo_url": "https://github.com/lucasbento/menubar-brightness", "title": "Menubar Brightness", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "CPU, memory, disk, and network monitoring tools for macOS. ", "categories": [ "menubar" ], "repo_url": "https://github.com/yujitach/MenuMeters", "title": "MenuMeters", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Monitor Bar app supports three modes, compact, normal, extra. It monitors battery, Disk, Memory, CPU, Network bandwidth, Wi-Fi.", "categories": [ "menubar" ], "repo_url": "https://github.com/tidiemme/monitorbar", "title": "Monitor Bar", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "Swift" ] }, { "short_description": "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. ", "categories": [ "menubar" ], "repo_url": "https://github.com/isaiasmatewos/night-shift-control", "title": "Night Shift Control", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/isaiasmatewos/night-shift-control/master/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Quickly hacked up PSI macOS status bar app. ", "categories": [ "menubar" ], "repo_url": "https://github.com/nikhilsh/PSIBar", "title": "PSIBar", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A mac menu bar app that provides note taking functionality though a quick dropdown menu. ", "categories": [ "menubar" ], "repo_url": "https://github.com/alexrosenfeld10/Quickeys", "title": "Quickeys", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/alexrosenfeld10/Quickeys/master/Images/Quickeys.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Small menu bar utility that lets you use your third-party mouse's side buttons for navigation across a variety of apps.", "categories": [ "menubar" ], "repo_url": "https://github.com/archagon/sensible-side-buttons", "title": "SensibleSideButtons", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c", "c" ] }, { "short_description": "macOS menu bar app that gives you more control over Night Shift. ", "categories": [ "menubar" ], "repo_url": "https://github.com/thompsonate/Shifty", "title": "Shifty", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/thompsonate/Shifty/master/docs/en/images/prefs-general-screenshot-shadow.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Is an easy to use, open-source, native colour picker for macOS.", "categories": [ "menubar", "utilities" ], "repo_url": "https://github.com/superhighfives/pika", "title": "Pika", "icon_url": "https://user-images.githubusercontent.com/449385/103492506-4dbd3700-4e23-11eb-97ca-44a959f171c6.png", "screenshots": [ "https://user-images.githubusercontent.com/449385/103492507-4e55cd80-4e23-11eb-9366-d31c2bb74030.png" ], "official_site": "https://superhighfives.com/pika", "languages": [ "swift", "metal" ] }, { "short_description": "macOS app to visualize Pi-hole information.", "categories": [ "menubar" ], "repo_url": "https://github.com/Bunn/PiStats", "title": "Pi Stats", "icon_url": "https://raw.githubusercontent.com/Bunn/PiStats/master/images/icon.png", "screenshots": [ "https://raw.githubusercontent.com/Bunn/PiStats/master/images/screenshot.png" ], "official_site": "", "languages": [ "swift", "objective_c" ] }, { "short_description": "Powerful macOS menu bar customization tool.", "categories": [ "menubar" ], "repo_url": "https://github.com/swiftbar/SwiftBar", "title": "SwiftBar", "icon_url": "https://swiftbar.app/images/icon.png", "screenshots": [], "official_site": "https://swiftbar.app", "languages": [ "swift" ] }, { "short_description": "A minimal and beautiful lyrics app that stays in the menu bar of macOS. ", "categories": [ "music" ], "repo_url": "https://github.com/AnaghSharma/Carol", "title": "Carol", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "c_sharp" ] }, { "short_description": "Tiny menu bar app that listens iTunes and Spotify to detect chords of songs! ", "categories": [ "music" ], "repo_url": "https://github.com/cemolcay/ChordDetector", "title": "ChordDetector", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Deezer Desktop app for Windows, Linux and macOS. ", "categories": [ "music" ], "repo_url": "https://github.com/imanel/deezplayer", "title": "DeezPlayer", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "coffee_script" ] }, { "short_description": "macOS app to visualise your iTunes library as graphs. ", "categories": [ "music" ], "repo_url": "https://github.com/Zac-Garby/iTunes-Graphs", "title": "iTunes Graphs", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/Zac-Garby/iTunes-Graphs/master/screenshot2.png", "https://raw.githubusercontent.com/Zac-Garby/iTunes-Graphs/master/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simple Spotify lyrics viewer menu bar app for macOS in Swift. ", "categories": [ "music" ], "repo_url": "https://github.com/mamal72/lyricsify-mac", "title": "lyricsify", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/mamal72/lyricsify-mac/master/screenshots/en.png", "https://raw.githubusercontent.com/mamal72/lyricsify-mac/master/screenshots/fa.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "SoundCloud for macOS and Windows. ", "categories": [ "music" ], "repo_url": "https://github.com/salomvary/soundcleod", "title": "SoundCleod", "icon_url": "", "screenshots": [ "https://camo.githubusercontent.com/a29d773a5a06dcca271d137ab82b46b8609bade4/68747470733a2f2f7261772e6769746875622e636f6d2f73616c6f6d766172792f736f756e64636c656f642f6d61737465722f73637265656e73686f742e6a7067s", "https://camo.githubusercontent.com/8c4c858d36597bca72f9eea033f42f6882efc048/68747470733a2f2f7261772e6769746875622e636f6d2f73616c6f6d766172792f736f756e64636c656f642f6d61737465722f73637265656e73686f742d6461726b2e6a7067" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Command-line tool to customize the official Spotify client. Supports Windows, MacOS and Linux.", "categories": [ "music" ], "repo_url": "https://github.com/spicetify/spicetify-cli", "title": "spicetify-cli", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/spicetify/spicetify-cli/master/.github/assets/logo.png" ], "official_site": "https://spicetify.app/", "languages": [ "javascript" ] }, { "short_description": "Virtualization for other operating systems.", "categories": [ "development" ], "repo_url": "https://github.com/utmapp/", "title": "utmapp", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/utmapp/UTM/main/screenmac.png" ], "official_site": "https://mac.getutm.app/", "languages": [ "swift", "objective_c" ] }, { "short_description": "Control Spotify without leaving your terminal. :notes: ", "categories": [ "music" ], "repo_url": "https://github.com/ersel/spotify-cli-mac", "title": "Spotify-Cli-Mac", "icon_url": "", "screenshots": [ "https://asciinema.org/a/ejbbvaa8833wq4xn4d2xuc9jx.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "macOS wrapper for music.youtube.com. ", "categories": [ "music" ], "repo_url": "https://github.com/steve228uk/YouTube-Music", "title": "YouTube-Music", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/steve228uk/YouTube-Music/master/screenshots/screenshot-1.png", "https://raw.githubusercontent.com/steve228uk/YouTube-Music/master/screenshots/screenshot-2.png", "https://raw.githubusercontent.com/steve228uk/YouTube-Music/master/screenshots/screenshot-3.png", "https://raw.githubusercontent.com/steve228uk/YouTube-Music/master/screenshots/screenshot-4.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Basic/Classic Hacker News app, used as a Cocoa & Swift learning platform. ", "categories": [ "news" ], "repo_url": "https://github.com/ngquerol/Diurna", "title": "Diurna", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/ngquerol/Diurna/master/diurna.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Hacker News Delivered to Desktop. ", "categories": [ "news" ], "repo_url": "https://github.com/owenthereal/hacker-menu", "title": "hacker-menu", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/jingweno/hacker-menu/master/images/screenshot.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Feed reader for macOS. ", "categories": [ "news" ], "repo_url": "https://github.com/Ranchero-Software/NetNewsWire", "title": "NetNewsWire", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Vienna is a RSS/Atom newsreader for macOS. ", "categories": [ "news" ], "repo_url": "https://github.com/ViennaRSS/vienna-rss", "title": "Vienna", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Note-taking application made for programmers just like you. ", "categories": [ "notes" ], "repo_url": "https://github.com/BoostIO/BoostNote-Legacy", "title": "Boostnote", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/BoostIO/Boostnote/master/resources/repository/top.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Little app that you can use as a quick note taking or todo app.", "categories": [ "notes" ], "repo_url": "https://github.com/Kilian/fromscratch", "title": "FromScratch", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript", "css" ] }, { "short_description": "Notes manager for macOS/iOS: modern notational velocity (nvALT) on steroids. ", "categories": [ "notes" ], "repo_url": "https://github.com/glushchenko/fsnotes", "title": "FSNotes", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/glushchenko/fsnotes/master/code.png", "https://f001.backblazeb2.com/file/og-files/ios.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS. ", "categories": [ "notes" ], "repo_url": "https://github.com/laurent22/joplin", "title": "joplin", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Notebook viewer for macOS. ", "categories": [ "notes" ], "repo_url": "https://github.com/tuxu/nbviewer-app", "title": "Jupyter Notebook Viewer", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simple note taking application. ", "categories": [ "notes" ], "repo_url": "https://github.com/jmcfarlane/notable", "title": "notable", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/jmcfarlane/notable/master/docs/images/notable.png", "https://raw.githubusercontent.com/jmcfarlane/notable/master/docs/images/unsaved-changes.png", "https://raw.githubusercontent.com/jmcfarlane/notable/master/docs/images/help.png", "https://raw.githubusercontent.com/jmcfarlane/notable/master/docs/images/tabs.png", "https://raw.githubusercontent.com/jmcfarlane/notable/master/docs/images/encrypted.png", "https://raw.githubusercontent.com/jmcfarlane/notable/master/docs/images/search.png", "https://raw.githubusercontent.com/jmcfarlane/notable/master/docs/images/edit.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Notes is a macOS application built to create notes, using text amongst other formats: images, videos, contacts, and etc. ", "categories": [ "notes" ], "repo_url": "https://github.com/SauvageP/Notes", "title": "Notes", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simple note taking app for macOS and iOS which uses Realm and CloudKit for syncing. ", "categories": [ "notes" ], "repo_url": "https://github.com/insidegui/NoteTaker", "title": "NoteTaker", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/insidegui/NoteTaker/master/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simplest way to keep notes. ", "categories": [ "notes" ], "repo_url": "https://github.com/Automattic/simplenote-macos", "title": "Simplenote", "icon_url": "", "screenshots": [ "https://simplenoteblog.files.wordpress.com/2017/12/screen-shot-2017-12-22-at-9-05-33-am.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Safe place for your notes, thoughts, and life's work.", "categories": [ "notes" ], "repo_url": "https://github.com/standardnotes/app", "title": "Standard Notes", "icon_url": "", "screenshots": [ ], "official_site": "", "languages": [ "javascript", "css" ] }, { "short_description": "Very simple macOS app to make temporary notes. ", "categories": [ "notes" ], "repo_url": "https://github.com/buddax2/tmpNote", "title": "tmpNote", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/buddax2/tmpNote/master/Resources/screenshot_new.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Unofficial, third-party, community driven Evernote app with a handful of useful features.", "categories": [ "notes" ], "repo_url": "https://github.com/klaudiosinani/tusk", "title": "Tusk", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript", "css" ] }, { "short_description": "Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration.", "categories": [ "markdown", "notes", "productivity" ], "repo_url": "https://github.com/pbek/QOwnNotes", "title": "QOwnNotes", "icon_url": "https://raw.githubusercontent.com/pbek/QOwnNotes/develop/icons/icon.png", "screenshots": [ "https://www.qownnotes.org/screenshots/screenshot.png" ], "official_site": "https://www.qownnotes.org/", "languages": [ "cpp" ] }, { "short_description": "Manage your Homebrew formulas with style using Cakebrew. ", "categories": [ "other" ], "repo_url": "https://github.com/brunophilipe/Cakebrew", "title": "Cakebrew", "icon_url": "", "screenshots": [ "https://www.cakebrew.com/assets/img/app-bg.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "An unofficial DevDocs API documentation viewer.", "categories": [ "other" ], "repo_url": "https://github.com/dteoh/devdocs-macos", "title": "DevDocs for macOS", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/dteoh/devdocs-macos/master/img/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Hosts file manager for macOS. ", "categories": [ "other" ], "repo_url": "https://github.com/2ndalpha/gasmask", "title": "Gas Mask", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Cocoa GUI for /etc/hosts. ", "categories": [ "other" ], "repo_url": "https://github.com/specialunderwear/Hosts.prefpane", "title": "Hosts", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "GUI image optimizer for Mac. ", "categories": [ "other" ], "repo_url": "https://github.com/ImageOptim/ImageOptim", "title": "ImageOptim", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Simple macOS app to preview animations created with Facebook's keyframes framework. ", "categories": [ "other" ], "repo_url": "https://github.com/insidegui/KeyframesPlayer", "title": "Keyframes Player", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/insidegui/KeyframesPlayer/master/screenshot.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Democratizing Code Snippets Management (macOS/Win/Linux). ", "categories": [ "other" ], "repo_url": "https://github.com/hackjutsu/Lepton", "title": "Lepton", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Simple app to send pasteboard items to GitHub's Gist. ", "categories": [ "other" ], "repo_url": "https://github.com/Bunn/macGist", "title": "macGist", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Mac developer tool that creates application bundles from command line scripts. ", "categories": [ "other" ], "repo_url": "https://github.com/sveinbjornt/Platypus", "title": "Platypus", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Swift Logging Utility for Xcode & Google Docs. ", "categories": [ "other" ], "repo_url": "https://github.com/Esqarrouth/QorumLogs", "title": "QorumLogs", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Desktop app for inspecting your React Native projects. macOS, Linux, and Windows. ", "categories": [ "other" ], "repo_url": "https://github.com/jhen0409/react-native-debugger", "title": "React Native Debugger", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/3001525/29451479-6621bf1a-83c8-11e7-8ebb-b4e98b1af91c.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Desktop app for inspecting your React JS and React Native projects. macOS, Linux, and Windows. ", "categories": [ "other" ], "repo_url": "https://github.com/infinitered/reactotron", "title": "Reactotron", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Menu bar macOS app for running rkt in a macOS hypervisor CoreOS VM. ", "categories": [ "other" ], "repo_url": "https://github.com/woofwoofinc/rktmachine", "title": "RktMachine", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/woofwoofinc/rktmachine/master/docs/assets/title.png", "https://raw.githubusercontent.com/woofwoofinc/rktmachine/master/docs/assets/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS app that contains a full Ruby installation (for use with Ruby/Gosu). ", "categories": [ "other" ], "repo_url": "https://github.com/gosu/ruby-app", "title": "Ruby.app", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "ruby" ] }, { "short_description": "Simple SSH shortcut menu for macOS. ", "categories": [ "other" ], "repo_url": "https://github.com/fitztrev/shuttle", "title": "Shuttle", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/fitztrev/shuttle/gh-pages/images/how-shuttle-works.gif" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Simple commands shortcut menu for macOS. ", "categories": [ "other" ], "repo_url": "https://github.com/s00d/switchshuttle", "title": "SwitchShuttle", "icon_url": "https://github.com/s00d/switchshuttle/blob/main/icons/128x128.png?raw=true", "screenshots": [ "https://github.com/s00d/switchshuttle/raw/main/icons/intro.gif?raw=true" ], "official_site": "", "languages": [ "rust" ] }, { "short_description": "Convenient logging during development & release in Swift. ", "categories": [ "other" ], "repo_url": "https://github.com/SwiftyBeaver/SwiftyBeaver", "title": "SwiftyBeaver", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Free and offline password manager. ", "categories": [ "security" ], "repo_url": "https://github.com/swiftyapp/swifty", "title": "Swifty", "icon_url": "https://getswifty.pro/images/brand@2x.png", "screenshots": [ "https://alchaplinsky.com/images/misc/swifty_screen_01.png", "https://alchaplinsky.com/images/misc/swifty_screen_02.png" ], "official_site": "https://getswifty.pro", "languages": [ "javascript" ] }, { "short_description": "Frugal nativemacOS macOS Syncthing application bundle. ", "categories": [ "other" ], "repo_url": "https://github.com/syncthing/syncthing-macos", "title": "syncthing-macosx", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/1050166/48157165-35970f00-e2cf-11e8-8009-10bfbf7fbce2.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Log analysis tool. ", "categories": [ "other" ], "repo_url": "https://github.com/esrlabs/chipmunk", "title": "ChipMunk", "icon_url": "", "screenshots": [ "" ], "official_site": "", "languages": [ "typescript", "rust" ] }, { "short_description": "Mac app for checking Xcode projects for unused resources. ", "categories": [ "other" ], "repo_url": "https://github.com/jeffhodnett/Unused", "title": "Unused", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Manage your vagrant machines in one place with Vagrant Manager for macOS. ", "categories": [ "other" ], "repo_url": "https://github.com/lanayotech/vagrant-manager", "title": "Vagrant Manager", "icon_url": "", "screenshots": [ "https://i.imgur.com/1NTsz6S.gif" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Simple, beautiful podcast app. ", "categories": [ "podcast" ], "repo_url": "https://github.com/z-------------/CPod", "title": "Cumulonimbus", "icon_url": "", "screenshots": [ "https://i.imgur.com/S7K9wrr.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Cast macOS and Linux Audio/Video to your Google Cast and Sonos Devices. ", "categories": [ "podcast" ], "repo_url": "https://github.com/muammar/mkchromecast", "title": "mkchromecast", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "python" ] }, { "short_description": "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. ", "categories": [ "podcast" ], "repo_url": "https://github.com/insidegui/PodcastMenu", "title": "PodcastMenu", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "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). ", "categories": [ "podcast" ], "repo_url": "https://github.com/Podlive/podlive-macos", "title": "Podlive for macOS", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/phranck/podlive-macos/master/screenshot1.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "repo_url": "https://github.com/dyerc/Doughnut", "title": "Doughnut", "screenshots": [ "https://raw.githubusercontent.com/CD1212/Doughnut/master/screenshot.png" ], "short_description": "Podcast player and library for mac", "languages": [ "swift" ], "categories": [ "podcast" ], "icon_url": "", "official_site": "" }, { "short_description": "Elegant Microsoft To-Do desktop app.", "categories": [ "productivity" ], "repo_url": "https://github.com/klaudiosinani/ao", "title": "Ao", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript", "css" ] }, { "short_description": "Cross-platform launcher app. ", "categories": [ "productivity" ], "repo_url": "https://github.com/cerebroapp/cerebro", "title": "Cerebro", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Clipboard manager for macOS. ", "categories": [ "productivity" ], "repo_url": "https://github.com/naotaka/ClipMenu", "title": "ClipMenu", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/naotaka/ClipMenu/master/screenshot.jpg" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "macOS app to plan and organize through timezones. ", "categories": [ "productivity" ], "repo_url": "https://github.com/n0shake/Clocker", "title": "Clocker", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Automate running tasks based on where you are or what you do. ", "categories": [ "productivity" ], "repo_url": "https://github.com/dustinrue/ControlPlane", "title": "ControlPlane", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Clean and simple clipboard manager for developers. ", "categories": [ "productivity" ], "repo_url": "https://github.com/TermiT/flycut", "title": "Flycut", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Cross-platform Text Expander, a powerful replacement for Alfred Snippets", "categories": [ "productivity" ], "repo_url": "https://github.com/espanso/espanso", "title": "espanso", "screenshots": [ "https://raw.githubusercontent.com/federico-terzi/espanso/master/images/example.gif" ], "icon_url": "", "official_site": "https://espanso.org", "languages": [ "rust" ] }, { "short_description": "Record shortcuts in macOS, like Alfred.app. ", "categories": [ "productivity" ], "repo_url": "https://github.com/Clipy/KeyHolder", "title": "KeyHolder", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Kiwix for iOS and macOS, build on Swift. ", "categories": [ "productivity" ], "repo_url": "https://github.com/kiwix/apple", "title": "Kiwix", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS application to write down and connect ideas. ", "categories": [ "productivity" ], "repo_url": "https://github.com/fespinoza/LinkedIdeas", "title": "Linked Ideas", "icon_url": "", "screenshots": [ "https://i.imgur.com/uqb1x43.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Lightweight search-as-you-type clipboard manager. ", "categories": [ "productivity" ], "repo_url": "https://github.com/p0deje/Maccy", "title": "Maccy", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/665846/36135303-8c4f80ae-10b4-11e8-9940-978e228cb6bd.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS open source clipboard manager", "categories": [ "productivity" ], "repo_url": "https://github.com/mattDavo/Yippy", "title": "Yippy", "icon_url": "", "screenshots": [ "https://github.com/mattDavo/Yippy/raw/master/images/screenshot.jpg" ], "official_site": "https://yippy.mattdavo.com", "languages": [ "swift" ] }, { "short_description": "macOS app for organizing files or removing unnecessary files. ", "categories": [ "productivity" ], "repo_url": "https://github.com/shubhambatra3019/macOrganizer", "title": "macOrganizer", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Flexible invoicing desktop app with beautiful & customizable templates. ", "categories": [ "productivity" ], "repo_url": "https://github.com/hql287/Manta", "title": "Manta", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Desktop app that uses the paperless API to manage your document scans. ", "categories": [ "productivity" ], "repo_url": "https://github.com/thomasbrueggemann/paperless-desktop", "title": "Paperless Desktop", "icon_url": "", "screenshots": [ "https://i.imgur.com/F5GNK4X.png", "https://i.imgur.com/FrgAptE.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Nice tool for tagging and archiving tasks. ", "categories": [ "productivity" ], "repo_url": "https://github.com/PDF-Archiver/PDF-Archiver", "title": "PDF Archiver", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Quicksilver is a fast macOS productivity application that gives you the power to control your Mac quickly and elegantly. ", "categories": [ "productivity" ], "repo_url": "https://github.com/quicksilver/Quicksilver", "title": "Quicksilver", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Write anything in a matter of seconds. Create snippets that can substitute text, execute tedious tasks and more. ", "categories": [ "productivity" ], "repo_url": "https://github.com/quickwords/quickwords", "title": "Quickwords", "icon_url": "", "screenshots": [ "https://i.imgur.com/asCk1Ds.png" ], "official_site": "", "languages": [ "javascript", "css" ] }, { "short_description": "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. ", "categories": [ "productivity" ], "repo_url": "https://github.com/SelfControlApp/selfcontrol", "title": "SelfControl", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Simple macOS app to keep TODO-list in status bar. ", "categories": [ "productivity" ], "repo_url": "https://github.com/Onix-Systems/osx-status-bar-todo", "title": "status-bar-todo", "icon_url": "", "screenshots": [ "https://cloud.githubusercontent.com/assets/1434418/21689532/52b0c1ba-d379-11e6-882a-b16d4f8fce00.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Cross-platform electron app that reminds you to take breaks when working with computer. ", "categories": [ "productivity" ], "repo_url": "https://github.com/hovancik/stretchly", "title": "stretchly", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "The task timer for OS X. ", "categories": [ "productivity" ], "repo_url": "https://github.com/joaomoreno/thyme", "title": "Thyme", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Simple Timer app for Mac. ", "categories": [ "productivity" ], "repo_url": "https://github.com/michaelvillar/timer-app", "title": "Timer", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/michaelvillar/timer-app/master/screenshots/light-mode.png", "https://raw.githubusercontent.com/michaelvillar/timer-app/master/screenshots/dark-mode.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Log work hours and get notified when it's time to leave the office and start to live.", "categories": [ "productivity" ], "repo_url": "https://github.com/thamara/time-to-leave", "title": "Time to Leave", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/3754225/94519528-4e549900-0248-11eb-8872-b6fb2d47f43c.jpg", "https://user-images.githubusercontent.com/3754225/94762058-4e79a380-03c4-11eb-8f28-1c480dbf8b5c.png" ], "official_site": "https://timetoleave.app/", "languages": [ "javascript", "css", "html" ] }, { "short_description": "Toggl Desktop app for Windows, Mac and Linux. ", "categories": [ "productivity" ], "repo_url": "https://github.com/toggl-open-source/toggldesktop", "title": "Toggl Desktop", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "Unofficial wrapper application for Trello.com written in Swift. This is almost a \"Hello World\" for a site specific browser. ", "categories": [ "productivity" ], "repo_url": "https://github.com/jlong/TrelloApp", "title": "TrelloApp", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A CLI application for time tracking. ", "categories": [ "productivity" ], "repo_url": "https://github.com/TailorDev/Watson", "title": "Watson", "icon_url": "", "screenshots": [ "https://tailordev.github.io/Watson/img/logo-watson-600px.png", "https://tailordev.github.io/Watson/img/watson-demo.gif" ], "official_site": "", "languages": [ "python" ] }, { "short_description": "An easy-to-use clipboard manager with time saving features that work across all terminals.", "categories": [ "development", "productivity", "terminal" ], "repo_url": "https://github.com/Slackadays/Clipboard", "title": "Clipboard", "icon_url": "https://raw.githubusercontent.com/Slackadays/Clipboard/main/documentation/website/static/cb_small.png", "screenshots": [ "https://raw.githubusercontent.com/Slackadays/Clipboard/main/documentation/website/static/demo.png", "https://raw.githubusercontent.com/Slackadays/Clipboard/main/documentation/readme-assets/ClipboardDemo.gif" ], "official_site": "https://GetClipboard.app", "languages": [ "cpp" ] }, { "short_description": "Unofficial Trello app. ", "categories": [ "productivity" ], "repo_url": "https://github.com/1000ch/whale", "title": "Whale", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/1000ch/whale/master/demo.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Manga reader app for macOS. ", "categories": [ "productivity" ], "repo_url": "https://github.com/sendyhalim/Yomu", "title": "Yomu", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Screensaver inspired by Apple's Event on October 30, 2018. ", "categories": [ "screensaver" ], "repo_url": "https://github.com/pedrommcarrasco/Brooklyn", "title": "Brooklyn", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/pedrommcarrasco/Brooklyn/master/Design/showcase.gif", "https://raw.githubusercontent.com/pedrommcarrasco/Brooklyn/master/Design/preferenceMenu.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Apple TV Aerial Screensaver for macOS. ", "categories": [ "screensaver" ], "repo_url": "https://github.com/JohnCoates/Aerial", "title": "Aerial", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/37544189/47649972-1f76a980-db7f-11e8-910b-1d5d50931ae2.png", "https://cloud.githubusercontent.com/assets/499192/10754100/c0e1cc4c-7c95-11e5-9d3b-842d3acc2fd5.gif", "https://user-images.githubusercontent.com/37544189/47649971-1f76a980-db7f-11e8-97be-d1f90b943c9d.png", "https://user-images.githubusercontent.com/37544189/47649973-1f76a980-db7f-11e8-8aef-301307d48fa2.png", "https://user-images.githubusercontent.com/37544189/47649975-200f4000-db7f-11e8-9e8b-f75c4a5ebde4.png", "https://user-images.githubusercontent.com/37544189/47649974-1f76a980-db7f-11e8-8339-3f0424652b8c.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Utility application helps with selection of images for using as desktop wallpaper or in screensaver on Mac computers. ", "categories": [ "screensaver" ], "repo_url": "https://github.com/ved62/Image-As-Wallpaper", "title": "Image-As-Wallpaper", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Screensaver for macOS. ", "categories": [ "screensaver" ], "repo_url": "https://github.com/leonspok/Irvue-Screensaver", "title": "Irvue", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/leonspok/Irvue-Screensaver/master/README_resources/2.png", "https://raw.githubusercontent.com/leonspok/Irvue-Screensaver/master/README_resources/1.png", "https://raw.githubusercontent.com/leonspok/Irvue-Screensaver/master/README_resources/3.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "iTunes Screensaver Clone for Spotify and Last.fm ", "categories": [ "screensaver" ], "repo_url": "https://github.com/obrhoff/MusaicFM", "title": "MusaicFM", "icon_url": "", "screenshots": [ "https://i.imgur.com/OuF5nOe.jpg" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "The GitHub Matrix Screensaver for macOS. ", "categories": [ "screensaver" ], "repo_url": "https://github.com/winterbe/github-matrix-screensaver", "title": "The GitHub Matrix Screensaver", "icon_url": "", "screenshots": [ "https://winterbe.com/image/matrix-has-you.gif", "https://winterbe.com/image/matrix.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "LuLu is macOS firewall application that aims to block unauthorized (outgoing) network traffic. ", "categories": [ "security" ], "repo_url": "https://github.com/objective-see/LuLu", "title": "LuLu", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Easily configure macOS security settings from the terminal. ", "categories": [ "security" ], "repo_url": "https://github.com/alichtman/stronghold", "title": "stronghold", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/alichtman/stronghold/master/img/stronghold-logo-left.png", "https://raw.githubusercontent.com/alichtman/stronghold/master/img/demo.gif" ], "official_site": "", "languages": [ "python" ] }, { "short_description": "Lightweight cross-platform BitTorrent client. ", "categories": [ "sharing-files" ], "repo_url": "https://github.com/deluge-torrent/deluge", "title": "Deluge", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "python" ] }, { "short_description": "Simple Mac app designed to make uploading images and screenshots to Imgur quick and effortless. ", "categories": [ "sharing-files" ], "repo_url": "https://github.com/mileswd/mac2imgur", "title": "mac2imgur", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Transferring files from one device to another", "categories": [ "sharing-files" ], "repo_url": "https://github.com/nitroshare/nitroshare-desktop", "title": "NitroShare", "icon_url": "", "screenshots": [], "official_site": "https://nitroshare.net", "languages": [ "cpp" ] }, { "short_description": "BitTorrent client in Qt. ", "categories": [ "sharing-files" ], "repo_url": "https://github.com/qbittorrent/qBittorrent", "title": "qBittorrent", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "macOS status bar app for quickly sharing files and URLs. ", "categories": [ "sharing-files" ], "repo_url": "https://github.com/timonus/Rhea", "title": "Rhea", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Official Transmission BitTorrent client repository.", "categories": [ "sharing-files" ], "repo_url": "https://github.com/transmission/transmission", "title": "Transmission", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c", "c" ] }, { "short_description": "Privacy enhanced BitTorrent client with P2P content discovery. ", "categories": [ "sharing-files" ], "repo_url": "https://github.com/Tribler/tribler", "title": "Tribler", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "python" ] }, { "short_description": "Elegant Facebook Messenger desktop app.", "categories": [ "social-networking" ], "repo_url": "https://github.com/sindresorhus/caprine#features", "title": "Caprine", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript", "css" ] }, { "short_description": "Unofficial Facebook Messenger client. ", "categories": [ "social-networking" ], "repo_url": "https://github.com/danielbuechele/goofy", "title": "Goofy", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Leviathan is a iOS and macOS client application for the Mastodon social network. ", "categories": [ "social-networking" ], "repo_url": "https://github.com/Swiftodon/Leviathan", "title": "Leviathan", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS app wrapping Facebook's Messenger for desktop. ", "categories": [ "social-networking" ], "repo_url": "https://github.com/rsms/fb-mac-messenger", "title": "Messenger", "icon_url": "", "screenshots": [ "https://fbmacmessenger.rsms.me/screenshot.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "share and discover your favorite new products and applications. ", "categories": [ "social-networking" ], "repo_url": "https://github.com/producthunt/producthunt-osx", "title": "Product Hunt", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Unofficial [esa](https://esa.io) app. ", "categories": [ "social-networking" ], "repo_url": "https://github.com/1000ch/quail", "title": "Quail", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/1000ch/quail/master/demo.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Unofficial Instagram Desktop App.", "categories": [ "social-networking" ], "repo_url": "https://github.com/terkelg/ramme", "title": "Ramme", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript", "css" ] }, { "short_description": "macOS menubar app to post status quickly. ", "categories": [ "social-networking" ], "repo_url": "https://github.com/KeliCheng/Simpo", "title": "Simpo", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/KeliCheng/Simpo/master/preview.png", "https://raw.githubusercontent.com/KeliCheng/Simpo/master/donate.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A SwiftUI Reddit client for macOS. ", "categories": [ "social-networking" ], "repo_url": "https://github.com/Dimillian/RedditOS", "title": "RedditOS", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/Dimillian/RedditOS/master/Images/image1.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Perpetual artwork streaming app. ", "categories": [ "streaming" ], "repo_url": "https://github.com/michealparks/galeri", "title": "Galeri", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Free and open source software for live streaming and screen recording. ", "categories": [ "streaming" ], "repo_url": "https://github.com/obsproject/obs-studio", "title": "OBS Studio", "icon_url": "", "screenshots": [], "official_site": "https://obsproject.com/", "languages": [ "cpp" ] }, { "short_description": "Advanced battery gauge for macOS. ", "categories": [ "system" ], "repo_url": "https://github.com/raphaelhanneken/apple-juice", "title": "Apple Juice", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/raphaelhanneken/apple-juice/master/screenshot_today.png", "https://raw.githubusercontent.com/raphaelhanneken/apple-juice/master/screenshot_appmenu.png", "https://raw.githubusercontent.com/raphaelhanneken/apple-juice/master/screenshot_notifications.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "App for macOS with a minimalistic UI which lets you quickly throttle down the CPU usage of any running process. ", "categories": [ "system" ], "repo_url": "https://github.com/AppPolice/AppPolice", "title": "AppPolice", "icon_url": "", "screenshots": [ "https://cloud.githubusercontent.com/assets/1557716/12860558/11908a78-cc66-11e5-9998-b4bec11dbfeb.png", "https://cloud.githubusercontent.com/assets/1557716/12860551/ffff72d8-cc65-11e5-9304-4f1341657b5a.png", "https://cloud.githubusercontent.com/assets/1557716/12860559/1193fe42-cc66-11e5-9d4f-8b8af842ea72.png", "https://cloud.githubusercontent.com/assets/1557716/12860549/fdffd054-cc65-11e5-8405-cc224ea4ab3b.png", "https://cloud.githubusercontent.com/assets/1557716/12860557/118f5fcc-cc66-11e5-8822-dc85cbe7bbb9.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Small macOS app that acts as a system cleaner (logs, cache, ...). ", "categories": [ "system" ], "repo_url": "https://github.com/Kevin-De-Koninck/Clean-Me", "title": "Clean-Me", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/Kevin-De-Koninck/Clean-Me/master/resources/Cleam-Me-image1.png", "https://raw.githubusercontent.com/Kevin-De-Koninck/Clean-Me/master/resources/Cleam-Me-image2.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Diagnostics is an application displaying the diagnostic reports from applications on macOS. ", "categories": [ "system" ], "repo_url": "https://github.com/macmade/Diagnostics", "title": "Diagnostics", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/macmade/Diagnostics/master/Resources/Screen.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Easily disable or enable a monitor on your Mac. ", "categories": [ "system" ], "repo_url": "https://github.com/Eun/DisableMonitor", "title": "DisableMonitor", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Linux/Mac fork of FAR Manager v2", "categories": [ "productivity", "utilities" ], "repo_url": "https://github.com/elfmz/far2l", "title": "far2l", "icon_url": "https://raw.githubusercontent.com/elfmz/far2l/master/far2l/DE/icons/far2l.svg", "screenshots": [], "official_site": "", "languages": [ "c", "cpp" ] }, { "short_description": "Monitor your Mac's fan speed and CPU temperature from your Notification Center. ", "categories": [ "system" ], "repo_url": "https://github.com/DanielStormApps/Fanny", "title": "Fanny", "icon_url": "", "screenshots": [ "https://cloud.githubusercontent.com/assets/10573489/26471886/ac78360e-4171-11e7-8b89-1e27fe6a582e.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Android USB tethering driver for macOS. ", "categories": [ "system" ], "repo_url": "https://github.com/jwise/HoRNDIS", "title": "HoRNDIS", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "Free Advanced Android File Transfer Application for macOS", "categories": [ "Android", "File Transfare" ], "repo_url": "https://github.com/ganeshrvel/openmtp", "title": "Open mtp", "icon_url": "https://github.com/ganeshrvel/openmtp/blob/master/app/app.icns", "screenshots": [ "https://raw.githubusercontent.com/ganeshrvel/openmtp/master/blobs/images/file-explorer-bluebg.jpg", "https://raw.githubusercontent.com/ganeshrvel/openmtp/master/blobs/images/file-transfer-bluebg.jpg" ], "official_site": "https://openmtp.ganeshrvel.com/", "languages": [ "English" ] }, { "short_description": "Make your battery information a bit more interesting. ", "categories": [ "system" ], "repo_url": "https://github.com/brianmichel/Juice", "title": "Juice", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/brianmichel/Juice/master/images/cyle-post.png", "https://raw.githubusercontent.com/brianmichel/Juice/master/images/icon-readme.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Prevents your Mac from going to sleep. ", "categories": [ "system" ], "repo_url": "https://github.com/newmarcel/KeepingYouAwake", "title": "KeepingYouAwake", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/newmarcel/KeepingYouAwake/master/Extras/Screenshot@2x.jpg" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Small utility app for macOS that makes sure you know about all the latest updates to the apps you use. ", "categories": [ "system" ], "repo_url": "https://github.com/mangerlahn/Latest", "title": "Latest", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/mangerlahn/Latest/master/latest.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simple network activity monitor for macOS. ", "categories": [ "system" ], "repo_url": "https://github.com/BonzaiThePenguin/Loading", "title": "Loading", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/BonzaiThePenguin/Loading/master/README/en.jpg" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Stop iTunes from opening when you connect your iPhone. ", "categories": [ "system" ], "repo_url": "https://github.com/KrauseFx/overkill-for-mac", "title": "Overkill", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS Application to create standard or customized configuration profiles. ", "categories": [ "system" ], "repo_url": "https://github.com/ProfileCreator/ProfileCreator", "title": "ProfileCreator", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/erikberglund/ProfileCreator/master/resources/screenshots/ProfileCreator.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Sloth is an macOS application that displays a list of all open files and sockets in use by all running applications on your system. ", "categories": [ "system" ], "repo_url": "https://github.com/sveinbjornt/Sloth", "title": "Sloth", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/sveinbjornt/Sloth/master/resources/sloth_icon.png", "https://raw.githubusercontent.com/sveinbjornt/Sloth/master/resources/sloth_screenshot1.jpg", "https://raw.githubusercontent.com/sveinbjornt/Sloth/master/resources/sloth_screenshot2.jpg" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Turbo Boost Switcher is a little application for Mac computers that allows to enable and/or disable the Turbo Boost feature. ", "categories": [ "system" ], "repo_url": "https://github.com/rugarciap/Turbo-Boost-Switcher", "title": "Turbo Boost Switcher", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "macOS application to add a vertical bar to Dock. ", "categories": [ "system" ], "repo_url": "https://github.com/DeromirNeves/DockSeparator", "title": "VerticalBar", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/DeromirNeves/VerticalBar/master/img/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Cross-platform, GPU-accelerated terminal emulator. ", "categories": [ "terminal" ], "repo_url": "https://github.com/alacritty/alacritty", "title": "Alacritty", "icon_url": "https://raw.githubusercontent.com/alacritty/alacritty/master/extra/logo/compat/alacritty-term%2Bscanlines.png", "screenshots": [ "https://cloud.githubusercontent.com/assets/4285147/21585004/2ebd0288-d06c-11e6-95d3-4a2889dbbd6f.png" ], "official_site": "", "languages": [ "rust" ] }, { "short_description": "A tiny terminal emulator for serial port communication (macOS/Linux). ", "categories": [ "terminal" ], "repo_url": "https://github.com/ishuah/bifrost", "title": "Bifrost", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "go" ] }, { "short_description": "macOS console application. ", "categories": [ "terminal" ], "repo_url": "https://github.com/macmade/Console", "title": "Console", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/macmade/Console/master/Assets/MainWindow.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Terminal built on web technologies.", "categories": [ "terminal" ], "repo_url": "https://github.com/vercel/hyper", "title": "Hyper", "icon_url": "", "screenshots": [ "https://assets.zeit.co/image/upload/v1537650716/repositories/hyper/hyper-repo-banner.png" ], "official_site": "", "languages": [ "javascript", "css" ] }, { "short_description": "Terminal emulator for macOS that does amazing things. ", "categories": [ "terminal" ], "repo_url": "https://github.com/gnachman/iTerm2", "title": "iTerm 2", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Cross-platform, fast, feature full, GPU based terminal emulator.", "categories": [ "terminal" ], "repo_url": "https://github.com/kovidgoyal/kitty", "title": "Kitty", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "python", "c" ] }, { "short_description": "App for macOS that opens a new Finder window and changes the current directory to the folder launched by the app. ", "categories": [ "terminal" ], "repo_url": "https://github.com/es-kumagai/OpenTerminal", "title": "OpenTerminal", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Powerful cross-platform terminal emulator, featuring a modern GUI, and offering SSH, serial, Telnet, and SCP client support.", "categories": [ "terminal" ], "repo_url": "https://github.com/Eugeny/tabby", "title": "Tabby", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/Eugeny/tabby/master/docs/readme.png", "https://github.com/Eugeny/tabby/raw/master/docs/readme-terminal.png" ], "official_site": "", "languages": [ "typescript" ] }, { "short_description": "wallpapper is a console application for creating dynamic wallpapers for Mojave. ", "categories": [ "terminal" ], "repo_url": "https://github.com/mczachurski/wallpapper", "title": "wallpapper", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "One-click screenshots, video recordings, app installation for iOS and Android ", "categories": [ "utilities" ], "repo_url": "https://github.com/mortenjust/androidtool-mac", "title": "Android tool for Mac", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/mortenjust/androidtool-mac/master/Demos/plugging%20in.gif", "https://raw.githubusercontent.com/mortenjust/androidtool-mac/master/Demos/phonerecording.gif", "https://raw.githubusercontent.com/mortenjust/androidtool-mac/master/Demos/installapk.gif", "https://raw.githubusercontent.com/mortenjust/androidtool-mac/master/Demos/scriptsfolder.gif", "https://raw.githubusercontent.com/mortenjust/androidtool-mac/master/Demos/dualscreenshot.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Control web based media players with the media keys found on Mac keyboards. ", "categories": [ "utilities" ], "repo_url": "https://github.com/beardedspice/beardedspice", "title": "BeardedSpice", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Secure password manager for mac and other platforms. ", "categories": [ "utilities" ], "repo_url": "https://github.com/buttercup/buttercup-desktop", "title": "Buttercup Desktop", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/3869469/35880367-6bd58770-0b86-11e8-879f-d1f9136274a9.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Catch: Broadcatching made easy. ", "categories": [ "utilities" ], "repo_url": "https://github.com/mipstian/catch/", "title": "Catch", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Simple, clean calendar and clock app for macOS. ", "categories": [ "utilities" ], "repo_url": "https://github.com/ekreutz/CornerCal", "title": "CornerCal", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/ekreutz/CornerCal/master/screenshot-01.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "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. ", "categories": [ "utilities" ], "repo_url": "https://github.com/HR/Crypter", "title": "Crypter", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/HR/Crypter/master/.github/Welcome_screen.png", "https://raw.githubusercontent.com/HR/Crypter/master/.github/Settings_screen.png", "https://raw.githubusercontent.com/HR/Crypter/master/.github/Crypter_main_screen.png", "https://raw.githubusercontent.com/HR/Crypter/master/.github/MasterPass_screen.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Small tool to validate epub files for macOS. ", "categories": [ "utilities" ], "repo_url": "https://github.com/josejuanqm/ECheck", "title": "ECheck", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Pick between the light appearance and the dark appearance on a per-app basis with the click of a button ", "categories": [ "utilities" ], "repo_url": "https://github.com/zenangst/Gray", "title": "Gray", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Cocoa application for semi-automated iOS app analysis and evaluation.", "categories": [ "utilities" ], "repo_url": "https://github.com/alessiomaffeis/iOScanX", "title": "iOScanX", "icon_url": "", "screenshots": [ "https://i.imgur.com/4zx0UvT.png", "https://i.imgur.com/0vEOyar.png" ], "official_site": "", "languages": [ "objective_c", "c" ] }, { "short_description": "Screen recorder application built with web technology. ", "categories": [ "utilities" ], "repo_url": "https://github.com/wulkano/kap", "title": "Kap", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Cross-platform community-driven port of the Windows application \"Keepass Password Safe\" ", "categories": [ "utilities" ], "repo_url": "https://github.com/keepassxreboot/keepassxc", "title": "KeePassXC", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "Cross-platform password manager compatible with KeePass. ", "categories": [ "utilities" ], "repo_url": "https://github.com/keeweb/keeweb", "title": "KeeWeb", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Simple screen and microphone audio recorder for macOS. ", "categories": [ "utilities" ], "repo_url": "https://github.com/vishaltelangre/Kyapchar", "title": "Kyapchar", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Intelligent adaptive brightness for your external displays. ", "categories": [ "utilities" ], "repo_url": "https://github.com/alin23/lunar", "title": "Lunar", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Native macOS KeePass client. ", "categories": [ "utilities" ], "repo_url": "https://github.com/MacPass/MacPass", "title": "MacPass", "icon_url": "", "screenshots": [ "https://camo.githubusercontent.com/768f015c1f8777b78ceb2c75bf880133a3668061/68747470733a2f2f7261772e6769746875622e636f6d2f6d737461726b652f4d6163506173732f6d61737465722f4173736574732f53637265656e73686f74732f4d6163506173732e706e67" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Mac Sound Re-Enabler. ", "categories": [ "utilities" ], "repo_url": "https://github.com/dragstor/mac-sound-fix", "title": "mac-sound-fix", "icon_url": "", "screenshots": [ "https://camo.githubusercontent.com/2ec00a08b476bb6b62b64b1813e0b608dd819d6d/68747470733a2f2f692e696d6775722e636f6d2f483338735073662e706e67" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS native app/widget for aria2 download tool. ", "categories": [ "utilities" ], "repo_url": "https://github.com/shincurry/Maria", "title": "Maria", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Meme Maker macOS application for meme creation. ", "categories": [ "utilities" ], "repo_url": "https://github.com/MemeMaker/Meme-Maker-Mac", "title": "Meme Maker", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Remove unnecessary language resources from macOS ", "categories": [ "utilities" ], "repo_url": "https://github.com/IngmarStein/Monolingual", "title": "Monolingual", "icon_url": "", "screenshots": [ "https://ingmarstein.github.io/Monolingual/images/Monolingual-1.6.7-en.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Smooth your mouse's scrolling and reverse the mouse scroll direction ", "categories": [ "utilities" ], "repo_url": "https://github.com/Caldis/Mos", "title": "Mos", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Receive Android notifications on your mac (with PushBullet). ", "categories": [ "utilities" ], "repo_url": "https://github.com/jariz/Noti/", "title": "Noti", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A minimal, open source password manager for macOS. ", "categories": [ "utilities" ], "repo_url": "https://github.com/padloc/padloc", "title": "Padlock", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Cross-platform password management solutions for individuals, teams, and business organizations. ", "categories": [ "utilities" ], "repo_url": "https://github.com/bitwarden/desktop", "title": "Bitwarden", "icon_url": "https://raw.githubusercontent.com/bitwarden/brand/master/icons/256x256.png", "screenshots": [ "https://raw.githubusercontent.com/bitwarden/brand/master/screenshots/desktop-macos-vault.png", "https://raw.githubusercontent.com/bitwarden/brand/master/screenshots/mobile-ios-myvault.png", "https://raw.githubusercontent.com/bitwarden/brand/master/screenshots/cli-macos.png" ], "official_site": "https://bitwarden.com/", "languages": [ "typescript" ] }, { "short_description": "Bitwarden Password Manager in your menu bar", "categories": [ "utilities" ], "repo_url": "https://github.com/jnsdrtlf/bitwarden-menubar", "title": "Bitwarden Menu", "icon_url": "https://github.com/jnsdrtlf/bitwarden-menubar/blob/main/Bitwarden/Assets.xcassets/AppIcon.appiconset/icon%40128.png", "screenshots": [ "https://raw.githubusercontent.com/jnsdrtlf/bitwarden-menubar/main/artwork/screenshot.png" ], "official_site": "", "languages": [ "typescript", "swift" ] }, { "short_description": "Receive native push notifications on macOS, Windows and Linux. ", "categories": [ "utilities" ], "repo_url": "https://github.com/sidneys/pb-for-desktop", "title": "PB for Desktop", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/sidneys/pb-for-desktop/master/resources/screenshots/screenshot-linux.png", "https://raw.githubusercontent.com/sidneys/pb-for-desktop/master/resources/graphics/icon.png", "https://raw.githubusercontent.com/sidneys/pb-for-desktop/master/resources/screenshots/screenshot-macos.png", "https://raw.githubusercontent.com/sidneys/pb-for-desktop/master/resources/screenshots/screenshot-win32.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "A menu bar application that calculates percents. ", "categories": [ "utilities" ], "repo_url": "https://github.com/cemolcay/PercentCalculator", "title": "PercentCalculator", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "ScreenCat is a screen sharing + remote collaboration application.", "categories": [ "utilities" ], "repo_url": "https://github.com/maxogden/screencat", "title": "ScreenCat", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript", "css" ] }, { "short_description": "Add a global delay to Command-Q to stop accidental app quits. ", "categories": [ "utilities" ], "repo_url": "https://github.com/dteoh/SlowQuitApps", "title": "SlowQuitApps", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "SIP softphone for macOS.", "categories": [ "utilities" ], "repo_url": "https://github.com/64characters/Telephone", "title": "Telephone", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c", "swift" ] }, { "short_description": "Blockstack is an internet for decentralized apps where users own their data. The Blockstack Browser allows you to explore the Blockstack internet. ", "categories": [ "utilities" ], "repo_url": "https://github.com/stacks-network/blockstack-browser", "title": "The Blockstack Browser", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Small macOS application to help you scroll to the top. ", "categories": [ "utilities" ], "repo_url": "https://github.com/zenangst/ToTheTop", "title": "ToTheTop", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Keep an eye on what's happening on your machine and in the world. ", "categories": [ "utilities" ], "repo_url": "https://github.com/felixhageloh/uebersicht", "title": "Übersicht", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Flash OS images to SD cards & USB drives, safely and easily. ", "categories": [ "utilities" ], "repo_url": "https://github.com/balena-io/etcher", "title": "Balena Etcher", "icon_url": "", "screenshots": [], "official_site": "https://www.balena.io/etcher", "languages": [ "typescript" ] }, { "short_description": "Nmap - the Network Mapper. ", "categories": [ "utilities" ], "repo_url": "https://github.com/nmap/nmap", "title": "Nmap", "icon_url": "", "screenshots": [], "official_site": "https://nmap.org", "languages": [ "cpp" ] }, { "short_description": "Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions. ", "categories": [ "utilities" ], "repo_url": "https://github.com/wireshark/wireshark", "title": "Wireshark", "icon_url": "", "screenshots": [], "official_site": "https://www.wireshark.org", "languages": [ "cpp" ] }, { "short_description": "Node Version Manager. ", "categories": [ "utilities" ], "repo_url": "https://github.com/nvm-sh/nvm", "title": "NVM", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "shell" ] }, { "short_description": "A rule based custom proxy with GUI for Mac base on clash. ", "categories": [ "vpn--proxy" ], "repo_url": "https://github.com/yichengchen/clashX", "title": "clashX", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Ribose VPN Client macOS Menu App. ", "categories": [ "vpn--proxy" ], "repo_url": "https://github.com/riboseinc/cryptode-mac", "title": "rvc-mac", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Next Generation of ShadowsocksX. ", "categories": [ "vpn--proxy" ], "repo_url": "https://github.com/shadowsocks/ShadowsocksX-NG", "title": "ShadowsocksX-NG", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Rule-based proxy app built with Network Extension for macOS. ", "categories": [ "vpn--proxy" ], "repo_url": "https://github.com/zhuhaow/Specht", "title": "Specht", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/zhuhaow/Specht/master/imgs/splash.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Rule-based proxy app for macOS. ", "categories": [ "vpn--proxy" ], "repo_url": "https://github.com/zhuhaow/SpechtLite", "title": "SpechtLite", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Tunnelblick is a graphic user interface for OpenVPN on macOS. ", "categories": [ "vpn--proxy" ], "repo_url": "https://github.com/Tunnelblick/Tunnelblick", "title": "Tunnelblick", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Acid Cam v2 for macOS distorts video to create art. ", "categories": [ "video" ], "repo_url": "https://github.com/lostjared/Acid.Cam.v2.OSX", "title": "Acid.Cam.v2.OSX", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "Unofficial Apple Events app for macOS. ", "categories": [ "video" ], "repo_url": "https://github.com/insidegui/AppleEvents", "title": "AppleEvents", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Datamosh your videos on macOS. ", "categories": [ "video" ], "repo_url": "https://github.com/maelswarm/Datamosh", "title": "Datamosh", "icon_url": "", "screenshots": [ "https://media.giphy.com/media/13bMkBsTQ7mh32/giphy.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS application used to auto-annotate landmarks from a video. ", "categories": [ "video" ], "repo_url": "https://github.com/xiaohk/FaceData", "title": "Face Data", "icon_url": "", "screenshots": [ "https://i.imgur.com/FEVY2Pu.png", "https://raw.githubusercontent.com/xiaohk/FaceData/master/result.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Video conferencing server for H.323 terminals. ", "categories": [ "video" ], "repo_url": "https://github.com/willamowius/gnugk", "title": "GNU Gatekeeper", "icon_url": "https://avatars2.githubusercontent.com/u/6840544?s=460&v=4", "screenshots": [], "official_site": "https://www.gnugk.org", "languages": [ "cpp" ] }, { "short_description": "Turn any short video into an animated GIF quickly and easily. ", "categories": [ "video" ], "repo_url": "https://github.com/vdel26/gifted", "title": "Gifted", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": " VLC is a free and open source cross-platform multimedia player", "categories": [ "video" ], "repo_url": "https://github.com/videolan/vlc", "title": "VLC", "icon_url": "", "screenshots": [], "official_site": "https://www.videolan.org/vlc/", "languages": [ "c" ] }, { "short_description": "HandBrake is a video transcoder available for Linux, Mac, and Windows. ", "categories": [ "video" ], "repo_url": "https://github.com/HandBrake/HandBrake", "title": "HandBrake", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "c" ] }, { "short_description": "Catch YouTube into your macOS menu bar! ", "categories": [ "video" ], "repo_url": "https://github.com/edanchenkov/MenuTube", "title": "MenuTube", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Easy to use, quick to learn, and surprisingly powerful video editor. ", "categories": [ "video" ], "repo_url": "https://github.com/OpenShot/openshot-qt", "title": "OpenShot", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "python" ] }, { "short_description": "This package allows macOS Finder to display thumbnails, static QuickLook previews, cover art and metadata for most types of video files. ", "categories": [ "video" ], "repo_url": "https://github.com/Marginal/QLVideo", "title": "QuickLook Video", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Subler is an macOS app created to mux and tag mp4 files. ", "categories": [ "video" ], "repo_url": "https://bitbucket.org/galad87/subler/src", "title": "Subler", "icon_url": "https://subler.org/images/Subler.png", "screenshots": [], "official_site": "https://subler.org", "languages": [ "objective_c" ] }, { "short_description": "macOS application to insert quizzes within video playback and play those videos to receiving devices using the LISNR API. ", "categories": [ "video" ], "repo_url": "https://github.com/sahil-a/vidquizcreator", "title": "Vid Quiz Creator", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Streaming torrent app. For Mac, Windows, and Linux. ", "categories": [ "video" ], "repo_url": "https://github.com/webtorrent/webtorrent-desktop", "title": "WebTorrent Desktop", "icon_url": "", "screenshots": [ "https://webtorrent.io/img/screenshot-main.png", "https://webtorrent.io/img/screenshot-player3.png", "https://webtorrent.io/img/WebTorrent.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Nifty macOS application which enables you to browse and download videos from YouTube. ", "categories": [ "video" ], "repo_url": "https://github.com/whoisandy/yoda", "title": "Yoda", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "The modern video player for macOS. ", "categories": [ "player" ], "repo_url": "https://github.com/iina/iina", "title": "IINA", "icon_url": "", "screenshots": [], "official_site": "https://iina.io", "languages": [ "swift" ] }, { "short_description": "3D 180/360 video player for macOS for PSVR with head tracking. ", "categories": [ "player" ], "repo_url": "https://github.com/emoRaivis/MacMorpheus", "title": "MacMorpheus", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/emoRaivis/MacMorpheus/master/wiring_diagram.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Desktop video player built with Haskell that uses GStreamer and GTK+. ", "categories": [ "player" ], "repo_url": "https://github.com/lettier/movie-monad", "title": "Movie Monad", "icon_url": "", "screenshots": [ "https://i.imgur.com/r1btBMF.gif", "https://i.imgur.com/gdsyIMv.png" ], "official_site": "", "languages": [ "haskell" ] }, { "short_description": "Media player on macOS. ", "categories": [ "player" ], "repo_url": "https://github.com/niltsh/MPlayerX", "title": "MPlayerX", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Caption takes the effort out of finding and setting up the right subtitles. ", "categories": [ "subtitles" ], "repo_url": "https://github.com/gielcobben/caption", "title": "Caption", "icon_url": "", "screenshots": [ "https://camo.githubusercontent.com/be0c821b4a653eae2a039484841338d3b035cf17/68747470733a2f2f6769656c636f6262656e2e636f6d2f6769746875622f63617074696f6e2f6769746875625f636f7665722e706e67" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Small macOS application to download subtitles. ", "categories": [ "subtitles" ], "repo_url": "https://github.com/Kevin-De-Koninck/Sub-It", "title": "Sub-It", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Subtitlr is macOS application used to find and download subtitles easily. ", "categories": [ "subtitles" ], "repo_url": "https://github.com/lucijafrkovic/Subtitlr/tree/master", "title": "Subtitlr", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Equinox is an application that allows you to create macOS dynamic wallpapers. ", "categories": [ "wallpaper" ], "repo_url": "https://github.com/rlxone/Equinox", "title": "Equinox", "icon_url": "", "screenshots": [ "https://github.com/rlxone/Equinox/blob/main/repo/screen1.jpg" ], "official_site": "https://equinoxmac.com", "languages": [ "swift" ] }, { "short_description": "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. ", "categories": [ "wallpaper" ], "repo_url": "https://github.com/markcheeky/500-mac-wallpaper", "title": "500-mac-wallpaper", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A macOS application for bringing dedicatedly 18th century Arts to everyone ", "categories": [ "wallpaper" ], "repo_url": "https://github.com/NghiaTranUIT/artify-macos", "title": "Artify", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/NghiaTranUIT/artify-macos/master/images/the-starry-night.jpg", "https://raw.githubusercontent.com/NghiaTranUIT/artify-macos/master/images/logo.png", "https://raw.githubusercontent.com/NghiaTranUIT/artify-macos/master/images/red-vineyards-at-arles-1888.jpg", "https://raw.githubusercontent.com/NghiaTranUIT/artify-macos/master/images/1440_900_the_wanderer_above_the_sea_of_fog.jpg" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "ArtStation set as wallpapers from artwork.rss", "categories": [ "wallpaper" ], "repo_url": "https://github.com/JustinFincher/ASWP-for-macOS", "title": "ArtWall", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Use Bing daily photo as your wallpaper on macOS. ", "categories": [ "wallpaper" ], "repo_url": "https://github.com/pengsrc/BingPaper", "title": "BingPaper", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/pengsrc/BingPaper/master/Screenshots/BingPaper_v0.9.7_en_US.jpg", "https://raw.githubusercontent.com/pengsrc/BingPaper/master/Screenshots/BingPaper_v0.9.7_zh_CN.jpg" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Win / Linux / macOS tool for managing and cycling desktop wallpapers. ", "categories": [ "wallpaper" ], "repo_url": "https://github.com/VioletGiraffe/desktop-wallpaper-switcher", "title": "Desktop Wallpaper Switcher", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "cpp" ] }, { "short_description": "pyDailyChanger is a program that changes your wallpaper daily. ", "categories": [ "wallpaper" ], "repo_url": "https://github.com/IngoMeyer441/pyDailyChanger", "title": "pyDailyChanger", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "python" ] }, { "short_description": "Muzei wallpaper app for macOS. ", "categories": [ "wallpaper" ], "repo_url": "https://github.com/naman14/Muzei-macOS", "title": "Muzei", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS app to automatically set your desktop wallpaper to the satellite view overhead. ", "categories": [ "wallpaper" ], "repo_url": "https://github.com/tomtaylor/satellite-eyes", "title": "Satellite Eyes", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/836375/31194770-0950b980-a8fd-11e7-8108-9a08555a0832.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Sunscreen is a fun, lightweight application that changes your desktop wallpaper based on sunrise and sunset. ", "categories": [ "wallpaper" ], "repo_url": "https://github.com/davidcelis/Sunscreen", "title": "Sunscreen", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/davidcelis/Sunscreen/master/images/icon.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "macOS menubar application for navigation through beautiful pictures on the web and set them up as your desktop image. ", "categories": [ "wallpaper" ], "repo_url": "https://github.com/diogosantos/WallpaperMenu", "title": "WallpaperMenu", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "ruby" ] }, { "short_description": "Automatic tiling window manager for macOS. ", "categories": [ "window-management" ], "repo_url": "https://github.com/ianyh/Amethyst", "title": "Amethyst", "icon_url": "", "screenshots": [ "https://ianyh.com/amethyst/images/missioncontrol-shortcuts.png", "https://ianyh.com/amethyst/images/accessibility-window.png", "https://ianyh.com/amethyst/images/windows.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Grid-based keyboard window manager for macOS. ", "categories": [ "window-management" ], "repo_url": "https://github.com/mjolnirapp/AppGrid", "title": "AppGrid", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/sdegutis/AppGrid/master/grid.gif", "https://raw.githubusercontent.com/sdegutis/AppGrid/master/sshot.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "An innovative desktop/window manager for macOS", "categories": [ "window-management" ], "repo_url": "https://github.com/mamiksik/Desktop-Profiles", "title": "Desktop Profiles", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/mamiksik/Desktop-Profiles/master/doc_assets/Themes.gif", "https://raw.githubusercontent.com/mamiksik/Desktop-Profiles/master/doc_assets/iTerm.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Staggeringly powerful macOS desktop automation with Lua.", "categories": [ "window-management" ], "repo_url": "https://github.com/Hammerspoon/hammerspoon", "title": "Hammerspoon", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "lua", "objective_c" ] }, { "short_description": "Lightweight macOS window and app manager scriptable with JavaScript. ", "categories": [ "window-management" ], "repo_url": "https://github.com/kasper/phoenix", "title": "Phoenix", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/kasper/phoenix/master/assets/screenshot.gif" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Managing windows size and position. ", "categories": [ "window-management" ], "repo_url": "https://github.com/fikovnik/ShiftIt", "title": "ShiftIt", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/fikovnik/ShiftIt/develop/artwork/ShiftIt.png", "https://raw.githubusercontent.com/fikovnik/ShiftIt/develop/docs/schreenshot-menu.png", "https://raw.githubusercontent.com/fikovnik/ShiftIt/develop/ShiftIt/AccessibilitySettingsMaverick.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Slate is a window management application similar to Divvy and SizeUp", "categories": [ "window-management" ], "repo_url": "https://github.com/jigish/slate", "title": "Slate", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Spectacle allows you to organize your windows without using a mouse. ", "categories": [ "window-management" ], "repo_url": "https://github.com/eczarny/spectacle", "title": "Spectacle", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "A tiling window manager for macOS based on binary space partitioning.", "categories": [ "window-management" ], "repo_url": "https://github.com/koekeishiya/yabai", "title": "Yabai", "icon_url": "https://raw.githubusercontent.com/koekeishiya/yabai/master/assets/banner/banner.svg?sanitize=true", "screenshots": [ "https://raw.githubusercontent.com/koekeishiya/yabai/master/assets/screenshot.png" ], "official_site": "", "languages": [ "c", "objective_c" ] }, { "short_description": "AltTab brings the power of Windows alt-tab to macOS.", "categories": [ "window-management" ], "repo_url": "https://github.com/lwouis/alt-tab-macos", "title": "AltTab", "icon_url": "https://raw.githubusercontent.com/lwouis/alt-tab-macos/44ac1e1012c677572397c1ab12955b9c54b6a175/resources/icons/app/app.svg", "screenshots": [ "https://alt-tab-macos.netlify.app/public/demo/1-row.jpg", "https://alt-tab-macos.netlify.app/public/demo/2-rows.jpg", "https://alt-tab-macos.netlify.app/public/demo/windows-theme.jpg" ], "official_site": "https://alt-tab-macos.netlify.app/", "languages": [ "swift", "shell" ] }, { "short_description": "Teach your kids the alphabet and how to type.", "categories": [ "other" ], "repo_url": "https://github.com/klaaspieter/letters", "title": "Letters", "icon_url": "", "screenshots": [ "https://camo.githubusercontent.com/9a6e15d41e4976c204add53b0ee9ac95e97ad86f/687474703a2f2f692e67697068792e636f6d2f336f365a73536b78743056326e37396b546d2e676966", "https://user-images.githubusercontent.com/98880/35166585-a81ed35e-fd52-11e7-87e1-9e82a03cc36d.jpg", "https://user-images.githubusercontent.com/98880/35166588-a90e5c12-fd52-11e7-8fcc-45679328392c.jpg", "https://user-images.githubusercontent.com/98880/35166586-a85293c4-fd52-11e7-80d9-ea13dd5e8038.jpg" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Easily toggle the function key on your Mac on a per app basis.", "categories": [ "utilities" ], "repo_url": "https://github.com/thecatalinstan/Funky", "title": "Funky", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "General purpose plain text editor for macOS. Widely known for its live collaboration feature.", "categories": [ "text" ], "repo_url": "https://github.com/subethaedit/SubEthaEdit", "title": "SubEthaEdit", "icon_url": "", "screenshots": [ "https://subethaedit.net/images/screenshots/en-contribute-bright-thumb.png", "https://subethaedit.net/images/screenshots/en-find-bright-thumb.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Best way to watch the latest and greatest videos from your favourite developer conferences for free on your Mac.", "categories": [ "video" ], "repo_url": "https://github.com/zagahr/Conferences.digital", "title": "Conferences.digital", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/zagahr/Conferences.digital/master/.github/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Unofficial desktop app for ProtonMail and Tutanota end-to-end encrypted email providers.", "categories": [ "mail" ], "repo_url": "https://github.com/vladimiry/ElectronMail", "title": "ElectronMail", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/vladimiry/ElectronMail/master/images/search.gif", "https://raw.githubusercontent.com/vladimiry/ElectronMail/master/images/export.gif" ], "official_site": "", "languages": [ "typescript" ] }, { "short_description": "💻 Medis is a beautiful, easy-to-use Mac database management application for Redis.", "categories": [ "database" ], "repo_url": "https://github.com/luin/medis", "title": "Medis", "icon_url": "", "screenshots": [ "https://camo.githubusercontent.com/94bf1d9f514351e5064e6bf9245fc3a48e2a5a8c/687474703a2f2f6765746d656469732e636f6d2f73637265656e2e706e67" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Emoji picker for MacBook Pro Touch Bar. ", "categories": [ "touch-bar" ], "repo_url": "https://github.com/ilyalesik/touch-emoji", "title": "Touch Emoji", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/lm-a/touch-emoji/master/touch-emoji-icon-screenshot.png", "https://raw.githubusercontent.com/lm-a/touch-emoji/master/touch-emoji-recent-screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "repo_url": "https://github.com/LumingYin/ClipboardClear", "official_site": "https://apps.apple.com/app/clear-clipboard-text-format/id1322855232", "title": "Clear Clipboard Text Format", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/LumingYin/ClipboardClear/master/screenshot.jpg" ], "short_description": "Easily clear the format of your clipboard text with Clear Clipboard Text Format.", "languages": [ "objective_c" ], "categories": [ "utilities" ] }, { "short_description": "Finder Toolbar app for macOS to open the current directory in Terminal, iTerm, Hyper or Alacritty.", "categories": [ "finder", "terminal" ], "repo_url": "https://github.com/Ji4n1ng/OpenInTerminal", "title": "OpenInTerminal", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/11001224/78589385-b797b880-7872-11ea-9062-c11a49461598.gif", "https://user-images.githubusercontent.com/11001224/78589369-b36b9b00-7872-11ea-8a9e-e3f23e7ce80e.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Finder Toolbar app to open the current directory in the Terminal", "categories": [ "finder", "terminal" ], "repo_url": "https://github.com/jbtule/cdto", "title": "cd to... ", "icon_url": "https://camo.githubusercontent.com/6bb146cdbf2dc86f51291252a023706f54187374/68747470733a2f2f7261772e6769746875622e636f6d2f6a6274756c652f6364746f2f6d61737465722f67726170686963732f6c696f6e2e706e67", "screenshots": [], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "List of useful Quick Look plugins for developers.", "categories": [ "finder" ], "repo_url": "https://github.com/sindresorhus/quick-look-plugins", "title": "Quick Look plugins", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/sindresorhus/quick-look-plugins/master/screenshots/QLColorCode.png", "https://raw.githubusercontent.com/sindresorhus/quick-look-plugins/master/screenshots/QLStephen.png", "https://raw.githubusercontent.com/sindresorhus/quick-look-plugins/master/screenshots/QLMarkdown.png", "https://raw.githubusercontent.com/sindresorhus/quick-look-plugins/master/screenshots/QuickLookJSON.png", "https://raw.githubusercontent.com/sindresorhus/quick-look-plugins/master/screenshots/qlImageSize.png", "https://raw.githubusercontent.com/sindresorhus/quick-look-plugins/master/screenshots/SuspiciousPackage.png", "https://raw.githubusercontent.com/sindresorhus/quick-look-plugins/master/screenshots/QuickLookASE.png", "https://raw.githubusercontent.com/sindresorhus/quick-look-plugins/master/screenshots/QLVideo.png" ], "official_site": "", "languages": [ "objective_c", "c" ] }, { "short_description": "Display macOS Dock in Touch Bar.", "categories": [ "touch-bar" ], "repo_url": "https://github.com/pock/pock", "title": "Pock", "icon_url": "https://camo.githubusercontent.com/bfb3abeb24e585e9121ce6440167ac2c9f06aeca/68747470733a2f2f706f636b2e6465762f6173736574732f696d672f6272616e642f7765622d69636f6e2d626c61636b2e706e67", "screenshots": [ "https://camo.githubusercontent.com/51a17fe9599c84dddda6aa5540e8cdbebedfce83/68747470733a2f2f706f636b2e6465762f6173736574732f696d672f707265766965772f706f636b5f776964676574732e706e67" ], "official_site": "https://pock.app/", "languages": [ "swift" ] }, { "repo_url": "https://github.com/macmade/Notarize", "title": "Notarize", "screenshots": [ "https://raw.githubusercontent.com/macmade/Notarize/master/Assets/MainWindow.png" ], "short_description": "Notarization status monitoring tool for macOS, supporting multiple developer accounts", "languages": [ "swift" ], "categories": [ "ios--macos" ], "icon_url": "", "official_site": "" }, { "repo_url": "https://github.com/vpeschenkov/Predator", "title": "Predator", "screenshots": [ "https://raw.githubusercontent.com/vpeschenkov/Predator/master/assets/preview.png", "https://raw.githubusercontent.com/vpeschenkov/Predator/master/assets/settings.png" ], "short_description": "A predator-inspired clock screensaver for macOS", "languages": [ "swift" ], "categories": [ "screensaver" ], "icon_url": "", "official_site": "" }, { "repo_url": "https://github.com/amiantos/lifesaver", "icon_url": "", "official_site": "", "title": "Life Saver", "screenshots": [ "https://raw.githubusercontent.com/amiantos/lifesaver/master/Design/screensaver/lifesaver-screenshots-1.1.png", "https://github.com/amiantos/lifesaver/blob/master/Design/tvos/tvos-ss-1.png", "https://github.com/amiantos/lifesaver/blob/master/Design/tvos/tvos-ss-2.png" ], "short_description": "An abstract screensaver based on Conway's Game of Life implemented with SpriteKit", "languages": [ "swift" ], "categories": [ "screensaver" ] }, { "repo_url": "https://github.com/LumingYin/Caption", "icon_url": "", "official_site": "https://apps.apple.com/app/quick-caption/id1363610340", "title": "Quick Caption", "screenshots": [ "https://raw.githubusercontent.com/LumingYin/Caption/master/screenshot.jpg" ], "short_description": "Transcribe and generate caption files (SRT, ASS and FCPXML) without manually entering time codes.", "languages": [ "swift" ], "categories": [ "video" ] }, { "repo_url": "https://github.com/LumingYin/SpeedReader", "official_site": "https://apps.apple.com/app/speed-reader/id1258448209", "title": "Speed Reader", "icon_url": "", "screenshots": [ "https://github.com/LumingYin/SpeedReader/blob/master/speedreader_dark.gif" ], "short_description": "Read faster with the power of silencing vocalization with SpeedReader.", "languages": [ "swift" ], "categories": [ "productivity" ] }, { "short_description": "Rectangle is a window manager heavily based on Spectacle, written in Swift.", "categories": [ "window-management" ], "repo_url": "https://github.com/rxhanson/Rectangle", "title": "Rectangle", "icon_url": "", "screenshots": [], "official_site": "https://rectangleapp.com", "languages": [ "swift" ] }, { "short_description": "Hide MacOS menubar items.", "categories": [ "menubar" ], "repo_url": "https://github.com/Mortennn/Dozer", "title": "Dozer", "icon_url": "https://raw.githubusercontent.com/Mortennn/Dozer/master/Stuff/AppIcon.png", "screenshots": [ "https://raw.githubusercontent.com/Mortennn/Dozer/master/Stuff/demo.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Free, open source, cross-platform audio software", "categories": [ "audio" ], "repo_url": "https://github.com/audacity/audacity", "title": "Audacity", "icon_url": "https://avatars3.githubusercontent.com/u/11648186?s=200&v=4", "screenshots": [ "https://www.audacityteam.org/wp-content/uploads/2017/12/Audacity-220-Mac-normal.png" ], "official_site": "https://www.audacityteam.org/", "languages": [ "c" ] }, { "short_description": "Create beautiful musical scores with LilyPond.", "categories": [ "music" ], "repo_url": "https://github.com/doches/lilypond-ui", "title": "Lilypond UI", "icon_url": "https://raw.githubusercontent.com/doches/lilypond-ui/develop/artwork/icons.iconset/icon_512x512.png", "screenshots": [ "https://raw.githubusercontent.com/doches/lilypond-ui/develop/docs/lilypond-ide.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Extend pages with your own CSS and JS files.", "categories": [ "extensions" ], "repo_url": "https://github.com/fphilipe/PageExtender.app", "title": "PageExtender", "icon_url": "https://raw.githubusercontent.com/fphilipe/PageExtender.app/master/Source/Host/Assets.xcassets/AppIcon.appiconset/256%402x.png", "screenshots": [ "https://phili.pe/posts/introducing-page-extender-for-safari/app.png" ], "official_site": "", "languages": [ "swift", "javascript" ] }, { "short_description": "Automatically mute the sound when headphones disconnect / Mac awake from sleep.", "categories": [ "audio" ], "repo_url": "https://github.com/yonilevy/automute", "title": "AutoMute", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/31284/49688097-ac653900-fb15-11e8-9c48-3db96df5dcbf.png", "https://user-images.githubusercontent.com/31284/49688098-ae2efc80-fb15-11e8-8034-14c67fb69d90.png" ], "official_site": "https://yoni.ninja/automute/", "languages": [ "objective_c" ] }, { "short_description": "BlackHole is a modern macOS virtual audio driver that allows applications to pass audio to other applications with zero additional latency.", "categories": [ "audio" ], "repo_url": "https://github.com/ExistentialAudio/BlackHole", "title": "BlackHole", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "c" ] }, { "short_description": "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.", "categories": [ "audio" ], "repo_url": "https://bitbucket.org/losnoco/cog/src", "title": "Cog", "icon_url": "", "screenshots": [], "official_site": "https://cogx.org/", "languages": [ "objective_c" ] }, { "short_description": "Command-line tool to search files with SQL syntax.", "categories": [ "utilities" ], "repo_url": "https://github.com/jhspetersson/fselect", "title": "fselect", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "rust" ] }, { "short_description": "Cross-platform development IDE.", "categories": [ "ide" ], "repo_url": "https://github.com/livecode/livecode", "title": "LiveCode", "icon_url": "https://livecode.com/wp-content/uploads/2016/05/newdarklogo.png", "screenshots": [], "official_site": "https://livecode.org/", "languages": [ "c" ] }, { "short_description": "Pomodoro Technique Timer for macOS with Touch Bar support.", "categories": [ "productivity" ], "repo_url": "https://github.com/ivoronin/TomatoBar", "title": "TomatoBar", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Mounts archives like disk images.", "categories": [ "utilities" ], "repo_url": "https://github.com/ivoronin/ArchiveMounter", "title": "ArchiveMounter", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Small utility for visualizing disk usage using tree maps.", "categories": [ "utilities" ], "repo_url": "https://git.code.sf.net/p/grandperspectiv/source", "title": "GrandPerspective", "icon_url": "https://grandperspectiv.sourceforge.net/Images/GrandPerspectiveIcon.png", "screenshots": [ "https://grandperspectiv.sourceforge.net/ScreenShots/3_4_1-Folders_Bujumbura.png", "https://grandperspectiv.sourceforge.net/ScreenShots/3_4_1-Filetype_OrigamiMice.png", "https://grandperspectiv.sourceforge.net/ScreenShots/3_4_1-Creation_Heathmap12.png" ], "official_site": "https://grandperspectiv.sourceforge.net", "languages": [ "objective_c" ] }, { "short_description": "PowerShell is a cross-platform automation and configuration tool/framework that works well with your existing tools.", "categories": [ "utilities" ], "repo_url": "https://github.com/powershell/powershell", "title": "PowerShell", "icon_url": "https://raw.githubusercontent.com/PowerShell/PowerShell/master/assets/Powershell_black_64.png", "screenshots": [], "official_site": "", "languages": [ "c_sharp" ] }, { "short_description": "Multi-platform transparent client-side encryption of your files in the cloud.", "categories": [ "security" ], "repo_url": "https://github.com/cryptomator/cryptomator", "title": "Cryptomator", "icon_url": "https://raw.githubusercontent.com/cryptomator/cryptomator/develop/cryptomator.png", "screenshots": [], "official_site": "https://cryptomator.org/", "languages": [ "java" ] }, { "short_description": "Disk encryption with strong security based on TrueCrypt. ", "categories": [ "security" ], "repo_url": "https://github.com/veracrypt/VeraCrypt", "title": "VeraCrypt", "icon_url": "", "screenshots": [], "official_site": "https://www.veracrypt.fr", "languages": [ "c", "cpp" ] }, { "short_description": "Open-source macOS menu bar app to monitor Vercel deployment status in real time.", "categories": [ "menubar" ], "repo_url": "https://github.com/andrewk17/vercel-deployment-menu-bar", "title": "Vercel Deployment Menu Bar", "icon_url": "https://raw.githubusercontent.com/andrewk17/vercel-deployment-menu-bar/main/app-icon.png", "screenshots": [ "https://raw.githubusercontent.com/andrewk17/vercel-deployment-menu-bar/main/vercel-menu-bar-deployment-status-macos.png" ], "official_site": "https://vercel-deployment-menu-bar.vercel.app/", "languages": [ "swift" ] }, { "short_description": "Free to do list & time tracker for programmers & designers with Jira integration.", "categories": [ "productivity", "utilities" ], "repo_url": "https://github.com/johannesjo/super-productivity", "title": "Super Productivity", "icon_url": "https://raw.githubusercontent.com/johannesjo/super-productivity/master/build/icons/512x512.png", "screenshots": [ "https://raw.githubusercontent.com/johannesjo/super-productivity/master/screens/screen_standard.png" ], "official_site": "https://super-productivity.com", "languages": [ "typescript", "javascript" ] }, { "short_description": "Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative.", "categories": [ "productivity", "utilities", "system" ], "repo_url": "https://github.com/spotter-application/spotter", "title": "Spotter", "icon_url": "https://github.com/spotter-application/spotter/blob/main/preview/icon.png", "screenshots": [], "official_site": "", "languages": [ "typescript", "swift" ] }, { "short_description": "Calculator for macOS which working on statusbar.", "categories": [ "productivity", "utilities" ], "repo_url": "https://github.com/varol/Calculeta", "title": "Calculeta", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "No-fuss time management.", "categories": [ "productivity" ], "repo_url": "https://github.com/khrykin/StrategrDesktop", "title": "Strategr", "icon_url": "https://khrykin.github.io/StrategrDesktop/assets/resources/Strategr.png", "screenshots": [ "https://camo.githubusercontent.com/0aab0a8a9be68c3f98628a5c7dc2a09da176ea7a/68747470733a2f2f6b6872796b696e2e6769746875622e696f2f73747261746567722f7265736f75726365732f6d61635f6d61696e5f6f726967696e616c2e706e67", "https://camo.githubusercontent.com/1e9cc6df1bafd86c7f619cca3d4b3c30f9917398/68747470733a2f2f6b6872796b696e2e6769746875622e696f2f73747261746567722f7265736f75726365732f6d61635f626c61636b5f6d61696e2e706e67" ], "official_site": "https://khrykin.github.io/StrategrDesktop/", "languages": [ "cpp", "objective_c" ] }, { "short_description": "Add another lightweight Mac Native MongoDB client.", "categories": [ "database" ], "repo_url": "https://github.com/jeromelebel/MongoHub-Mac", "title": "MongoHub", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "objective_c", "c" ] }, { "short_description": "Safari extension to save your working sessions", "categories": [ "productivity", "extensions" ], "repo_url": "https://github.com/AlexPerathoner/Sessions", "title": "Sessions", "icon_url": "https://raw.githubusercontent.com/AlexPerathoner/Sessions/master/Sessions/Assets.xcassets/AppIcon.appiconset/512-1.png", "screenshots": [ "https://raw.githubusercontent.com/AlexPerathoner/Sessions/master/Screens/Registrazione%20schermo%202019-11-26%20alle%2001.14.21.mov" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Make any website your desktop wallpaper.", "categories": [ "wallpaper", "browser" ], "repo_url": "https://github.com/sindresorhus/Plash", "title": "Plash", "icon_url": "https://user-images.githubusercontent.com/170270/74323095-8d1c0880-4db7-11ea-9c07-3003fb9c3125.png", "screenshots": [ "https://user-images.githubusercontent.com/170270/74323375-0287d900-4db8-11ea-8b26-5566565fa8a1.jpg" ], "official_site": "https://sindresorhus.com/plash", "languages": [ "swift" ] }, { "short_description": "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.", "categories": [ "browser", "productivity" ], "repo_url": "https://github.com/kamranahmedse/pennywise", "title": "Pennywise", "icon_url": "", "screenshots": [ "https://camo.githubusercontent.com/275d176aeaab2b9cf09701a091c8fb7ecfe6256a/68747470733a2f2f692e696d6775722e636f6d2f753766415439392e706e67", "https://camo.githubusercontent.com/71ba8a4a28624f1f102272685f72a80fe70a2c03/68747470733a2f2f692e696d6775722e636f6d2f43654c596f75782e706e673f31", "https://camo.githubusercontent.com/601c0dc538bad004c231201e8fe86e16ed3729d0/68747470733a2f2f692e696d6775722e636f6d2f4262715a6d634b2e706e67", "https://camo.githubusercontent.com/26049b84b4b5d62b95e841d225a493992c78e62f/68747470733a2f2f692e696d6775722e636f6d2f586137696e54592e706e67" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "A simple command line notebook with multi-device sync and web interface.", "categories": [ "notes" ], "repo_url": "https://github.com/dnote/dnote", "title": "Dnote", "icon_url": "https://raw.githubusercontent.com/dnote/dnote/master/assets/logo.png", "screenshots": [ "https://raw.githubusercontent.com/dnote/dnote/master/assets/cli.gif" ], "official_site": "https://www.getdnote.com/", "languages": [ "go", "typescript" ] }, { "short_description": "Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse", "categories": [ "productivity", "extensions", "utilities" ], "repo_url": "https://github.com/artginzburg/MiddleClick-Ventura", "title": "Middleclick", "icon_url": "https://raw.githubusercontent.com/artginzburg/MiddleClick-Ventura/master/MiddleClick/Images.xcassets/AppIcon.appiconset/mouse128x128.png", "screenshots": [ "https://github.com/artginzburg/MiddleClick-Ventura/blob/master/demo.png" ], "official_site": "", "languages": [ "c" ] }, { "repo_url": "https://github.com/ziulev/pomodoro-cycle-app", "official_site": "https://github.com/ziulev/pomodoro-cycle-app/releases", "title": "Pomodoro Cycle", "icon_url": "https://raw.githubusercontent.com/jet8a/pomodoro-cycle-app/master/src/favicon.png", "screenshots": [ "https://raw.githubusercontent.com/jet8a/pomodoro-cycle-app/master/screenshots/preview.gif" ], "short_description": "Pomodoro Cycle for macOS", "languages": [ "typescript" ], "categories": [ "productivity" ] }, { "short_description": "Manage grayscale mode from menu bar.", "categories": [ "utilities", "menubar" ], "repo_url": "https://github.com/rkbhochalya/grayscale-mode", "title": "Grayscale Mode", "icon_url": "https://user-images.githubusercontent.com/12229032/78544116-48d94180-7817-11ea-9612-7a596f897e02.png", "screenshots": [ "https://user-images.githubusercontent.com/12229032/78544215-6b6b5a80-7817-11ea-8b80-12bbbfc16053.jpg", "https://user-images.githubusercontent.com/12229032/78544289-84740b80-7817-11ea-9092-e76fcb027702.jpg" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "An elegant Cross-platform MQTT 5.0 desktop client.", "categories": [ "other-development", "utilities" ], "repo_url": "https://github.com/emqx/MQTTX", "title": "MQTTX", "icon_url": "https://user-images.githubusercontent.com/21299158/74506578-f83f1980-4f34-11ea-834a-694aff07c9d1.png", "screenshots": [ "https://raw.githubusercontent.com/emqx/MQTTX/master/assets/mqttx-gif.gif", "https://raw.githubusercontent.com/emqx/MQTTX/master/assets/mqttx-preview.png" ], "official_site": "", "languages": [ "javascript", "typescript" ] }, { "short_description": "A scriptable scratchpad for developers.", "categories": [ "other-development", "utilities" ], "repo_url": "https://github.com/IvanMathy/Boop", "title": "Boop", "icon_url": "https://raw.githubusercontent.com/IvanMathy/Boop/main/Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_512x512%402x.png", "screenshots": [ "https://raw.githubusercontent.com/IvanMathy/Boop/main/Boop/Documentation/Images/UI.png" ], "official_site": "https://boop.okat.best", "languages": [ "swift", "javascript" ] }, { "short_description": "Replacement for MacOS' volume, brightness and keyboard backlight HUDs.", "categories": [ "menubar", "system", "utilities" ], "repo_url": "https://github.com/AlexPerathoner/SlimHUD", "title": "SlimHUD - Cyanocitta", "icon_url": "https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/master/Screens/Icon1024.png", "screenshots": [ "https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/master/Screens/Animations/animations.gif", "https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/master/Screens/settingsWindow.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Coronavirus tracker app for iOS & macOS with maps & charts.", "categories": [ "ios--macos" ], "repo_url": "https://github.com/MhdHejazi/CoronaTracker", "title": "Corona Tracker", "icon_url": "https://coronatracker.samabox.com/images/icon.svg", "screenshots": [ "https://user-images.githubusercontent.com/121827/77247007-03751b80-6c3e-11ea-91fc-b3d535fda6a2.png", "https://user-images.githubusercontent.com/121827/77246699-e25efb80-6c3a-11ea-8a49-30bd87ff33c0.png" ], "official_site": "https://coronatracker.samabox.com/", "languages": [ "swift" ] }, { "short_description": "An open source, free and hackable screenshot tracker. Re-watch what you've been working on!", "categories": [ "productivity" ], "repo_url": "https://github.com/instance01/mac-screenshot-tracker", "title": "Mac Screenshot Tracker", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/instance01/mac-screenshot-tracker/master/.github/screen1.png", "https://raw.githubusercontent.com/instance01/mac-screenshot-tracker/master/.github/screen2.png" ], "official_site": "", "languages": [ "python" ] }, { "short_description": "Musical Instrument Tuner", "categories": [ "audio" ], "repo_url": "https://github.com/billthefarmer/ctuner", "title": "Tuner", "icon_url": "https://raw.githubusercontent.com/billthefarmer/ctuner/master/swift/Tuner.png", "screenshots": [ "https://raw.githubusercontent.com/billthefarmer/billthefarmer.github.io/master/images/ctuner/Tuner-swift.png", "https://raw.githubusercontent.com/billthefarmer/billthefarmer.github.io/master/images/ctuner/Tuner-preferences.png", "https://raw.githubusercontent.com/billthefarmer/billthefarmer.github.io/master/images/ctuner/Note-filter.png" ], "official_site": "https://billthefarmer.github.io/ctuner/ ", "languages": [ "swift" ] }, { "short_description": "Get the physical location of your device and prints it to standard output", "categories": [ "utilities" ], "repo_url": "https://github.com/fulldecent/corelocationcli", "title": "CoreLocationCLI", "icon_url": "", "screenshots": [ "https://cloud.githubusercontent.com/assets/382183/25063655/52c11234-221d-11e7-81fb-0f8712dac393.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Menu bar app featuring darker than dark dimming, Night Shift fine tuning, and the ability to turn off TouchBar on MacBook Pro. ", "categories": [ "utilities", "menubar" ], "repo_url": "https://github.com/joshjon/nocturnal", "title": "Nocturnal", "icon_url": "https://raw.githubusercontent.com/joshjon/nocturnal/master/Nocturnal/Assets.xcassets/AppIcon.appiconset/Icon-App-256x256%401x.png", "screenshots": [ "https://raw.githubusercontent.com/joshjon/nocturnal/master/Docs/Images/Nocturnal-Screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Menu bar app for your calendar meetings", "categories": [ "utilities", "menubar", "productivity" ], "repo_url": "https://github.com/leits/MeetingBar", "title": "MeetingBar", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/leits/MeetingBar/master/screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Your GitHub notifications on your menu bar.", "categories": [ "git" ], "repo_url": "https://github.com/manosim/gitify", "title": "Gitify", "icon_url": "https://raw.githubusercontent.com/manosim/gitify/master/assets/images/app-icon.ico", "screenshots": [ "https://github.com/manosim/gitify/blob/main/assets/images/press.png" ], "official_site": "https://www.gitify.io/", "languages": [ "javascript" ] }, { "short_description": "Audio Oscilloscope", "categories": [ "audio" ], "repo_url": "https://github.com/billthefarmer/audiotools/tree/master/Scope/swift", "title": "Scope", "icon_url": "https://raw.githubusercontent.com/billthefarmer/audiotools/master/Scope/swift/Scope.png", "screenshots": [ "https://raw.githubusercontent.com/billthefarmer/billthefarmer.github.io/master/images/audiotools/Scope-swift.png" ], "official_site": "https://billthefarmer.github.io/audiotools/", "languages": [ "swift" ] }, { "short_description": "Email Alias solution: protect your real email address.", "categories": [ "mail" ], "repo_url": "https://github.com/simple-login/mac-app", "title": "SimpleLogin", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A simple but powerful tool that helps you make complex layouts for UICollectionView.", "categories": [ "development", "productivity", "utilities" ], "repo_url": "https://github.com/amirdew/CollectionViewPagingLayout", "title": "Layout Designer for UICollectionView", "icon_url": "", "screenshots": [ "https://amir.app/git/layout_designer_preview.gif" ], "official_site": "https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12", "languages": [ "swift" ] }, { "short_description": "Mac app that shows pull request last modified each line of a file", "categories": [ "git" ], "repo_url": "https://github.com/maoyama/GitBlamePR", "title": "GitBlamePR", "icon_url": "https://github.com/maoyama/GitBlamePR/blob/master/GitBlamePR/Assets.xcassets/AppIcon.appiconset/gitblamepr1024.png", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "repo_url": "https://github.com/wynioux/macOS-GateKeeper-Helper", "official_site": "", "title": "macOS GateKeeper Helper", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/wynioux/macOS-GateKeeper-Helper/master/screenshot.png" ], "short_description": "Simple macOS GateKeeper script. It helps you to control your GateKeeper.", "languages": [ "shell" ], "categories": [ "system", "utilities", "security", "terminal" ] }, { "short_description": "Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar.", "repo_url": "https://github.com/insidegui/NoiseBuddy", "title": "NoiseBuddy", "icon_url": "https://raw.githubusercontent.com/insidegui/NoiseBuddy/master/screenshots/NoiseBuddyIcon.png", "screenshots": [], "official_site": "", "languages": [ "swift" ], "categories": [ "audio", "music", "menubar", "utilities" ] }, { "repo_url": "https://github.com/bhj/KaraokeEternal", "official_site": "https://www.karaoke-eternal.com/", "title": "Karaoke Forever", "icon_url": "https://github.com/bhj/KaraokeEternal/blob/master/assets/app.png?raw=true", "screenshots": [ "https://github.com/bhj/KaraokeEternal/blob/master/docs/assets/images/README.jpg?raw=true" ], "short_description": "Host awesome karaoke parties where everyone can queue songs from their phone's browser. Plays MP3+G and MP4 with WebGL visualizations.", "languages": [ "javascript" ], "categories": [ "audio", "music" ] }, { "short_description": "A tiny calendar for that lives in the Mac menu bar.", "categories": [ "menubar", "productivity" ], "repo_url": "https://github.com/sfsam/Itsycal", "title": "Itsycal", "icon_url": "", "screenshots": [ "https://www.mowglii.com/itsycal/itsycalbanner2@2x.png" ], "official_site": "https://www.mowglii.com/itsycal/", "languages": [ "objective_c" ] }, { "short_description": "A Safari Extension providing a toolbar icon that changes its visual appearance if Private Browsing is enabled.", "categories": [ "extensions" ], "repo_url": "https://github.com/ffittschen/IsItPrivate", "title": "Is It Private?", "icon_url": "https://raw.githubusercontent.com/ffittschen/IsItPrivate/master/Assets/AppIcon.png", "screenshots": [ "https://raw.githubusercontent.com/ffittschen/IsItPrivate/master/Assets/Screenshot.png" ], "official_site": "https://florian.codes/projects/is-it-private/", "languages": [ "swift" ] }, { "short_description": "An ultra-light MacOS utility that helps hide menu bar icons", "categories": [ "menubar" ], "repo_url": "https://github.com/dwarvesf/hidden", "title": "Hidden Bar", "icon_url": "https://github.com/dwarvesf/hidden/blob/master/hidden/Assets.xcassets/AppIcon.appiconset/1024x1024.png?raw=true", "screenshots": [ "https://github.com/dwarvesf/hidden/blob/develop/img/tutorial.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Powerful menu bar manager for macOS", "categories": [ "menubar" ], "repo_url": "https://github.com/jordanbaird/Ice", "title": "Ice", "icon_url": "https://github.com/jordanbaird/Ice/blob/main/Ice/Assets.xcassets/AppIcon.appiconset/icon_256x256.png", "screenshots": [ "https://icemenubar.app/gallery/Show%20On%20Hover.mov" ], "official_site": "https://icemenubar.app/", "languages": [ "swift" ] }, { "repo_url": "https://github.com/robaho/seashore", "official_site": "", "title": "Seashore", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/robaho/seashore/master/doc/ss1.png" ], "short_description": "Easy to use macOS image editing application for the rest of us.", "languages": [ "objective_c" ], "categories": [ "images" ] }, { "short_description": "ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease.", "categories": [ "development", "graphics" ], "repo_url": "https://github.com/DigiDNA/ColorSet", "title": "ColorSet", "icon_url": "https://imazing.com/img/colorset/colorset-icon-256x256.png", "screenshots": [ "https://raw.githubusercontent.com/DigiDNA/ColorSet/master/Assets/ColorSet.png" ], "official_site": "https://imazing.com/colorset", "languages": [ "swift", "c_sharp", "objective_c" ] }, { "repo_url": "https://github.com/RocketChat/Rocket.Chat.Electron", "official_site": "https://www.rocket.chat/", "title": "RocketChat", "icon_url": "", "screenshots": [], "short_description": "Free open source chat system for teams. An alternative to Slack that can also be self hosted.", "languages": [ "javascript" ], "categories": [ "chat" ] }, { "short_description": "SQL editor and manager with support for SQLite, MySQL, MariaDB, Postgres, CockroachDB, SQL Server, and Amazon Redshift.", "categories": [ "database" ], "repo_url": "https://github.com/beekeeper-studio/beekeeper-studio", "title": "Beekeeper Studio", "icon_url": "https://raw.githubusercontent.com/beekeeper-studio/beekeeper-studio/master/apps/studio/public/icons/png/512x512.png", "screenshots": [ "https://raw.githubusercontent.com/beekeeper-studio/beekeeper-studio/master/apps/studio/screenshots/beekeeper-studio-demo.gif", "https://raw.githubusercontent.com/beekeeper-studio/beekeeper-studio/master/apps/studio/screenshots/main.png" ], "official_site": "https://www.beekeeperstudio.io", "languages": [ "javascript" ] }, { "short_description": "Plaintextify your clipboard", "categories": [ "utilities" ], "repo_url": "https://github.com/hisaac/PlainPasta", "title": "Plain Pasta", "icon_url": "https://raw.githubusercontent.com/hisaac/PlainPasta/main/Assets/app-icon-512%402x.png", "screenshots": [ "https://raw.githubusercontent.com/hisaac/PlainPasta/main/docs/without-plain-pasta.gif", "https://raw.githubusercontent.com/hisaac/PlainPasta/main/docs/with-plain-pasta.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "a powerful tool to increase download speeds up to 500%", "categories": [ "downloader" ], "repo_url": "https://github.com/subhra74/xdm", "title": "Extream Download Manager", "icon_url": "https://github.com/subhra74/xdm/blob/master/app/src/main/resources/icons/xhdpi/icon.png", "screenshots": [], "official_site": "https://subhra74.github.io/xdm/", "languages": [ "java" ] }, { "repo_url": "https://github.com/powerwolf543/DuplicateFinder", "official_site": "", "title": "Duplicate Finder", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/16394562/94992308-bc3bf000-05bb-11eb-95a9-907ec334c660.png" ], "short_description": "It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder.", "languages": [ "swift" ], "categories": [ "finder", "utilities" ] }, { "repo_url": "https://github.com/DevUtilsApp/DevUtils-app", "official_site": "https://devutils.com", "title": "DevUtils.app", "icon_url": "https://devutils.com/favicon.png", "screenshots": [ "https://devutils.com/screenshot-dark.png" ], "short_description": "Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator...", "languages": [ "swift" ], "categories": [ "utilities", "productivity" ] }, { "short_description": "Cross-platform open source database management tool for Redis ®", "categories": [ "database" ], "repo_url": "https://github.com/uglide/RedisDesktopManager", "title": "Redis Desktop Manager", "icon_url": "https://rdm.dev//static/css/favicon.png?v=2020", "screenshots": [ "https://rdm.dev/static/img/features/all.png?v=20202" ], "official_site": "", "languages": [ "cpp" ] }, { "repo_url": "https://github.com/MonitorControl/MonitorControl", "official_site": "", "title": "MonitorControl", "icon_url": "", "screenshots": [ "https://github.com/MonitorControl/MonitorControl/tree/master/.github" ], "short_description": "Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys.", "languages": [ "swift", "objective_c" ], "categories": [ "audio", "utilities" ] }, { "short_description": "Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.", "categories": [ "browser" ], "repo_url": "https://chromium.googlesource.com/chromium/src/", "title": "Chromium", "icon_url": "", "screenshots": [], "official_site": "https://www.chromium.org/", "languages": [ "javascript", "cpp", "c" ] }, { "repo_url": "https://github.com/doekman/osagitfilter", "official_site": "", "title": "osagitfilter", "icon_url": "", "screenshots": [], "short_description": "Filter to put OSA languages (AppleScript, JavaScript) into git, as if they where plain text-files.", "languages": [ "shell", "applescript" ], "categories": [ "git" ] }, { "repo_url": "https://github.com/mpv-player/mpv", "official_site": "https://mpv.io", "title": "MPV", "icon_url": "https://mpv.io/images/mpv-logo-128-0baae5aa.png", "screenshots": [ "https://mpv.io/images/mpv-screenshot-34cd36ae.jpg" ], "short_description": "Lightweight, highly configurable media player.", "languages": [ "c" ], "categories": [ "audio", "player", "music", "video" ] }, { "repo_url": "https://github.com/RobotsAndPencils/XcodesApp", "official_site": "", "title": "Xcodes.app", "short_description": "The easiest way to install and switch between multiple versions of Xcode.", "icon_url": "https://raw.githubusercontent.com/RobotsAndPencils/XcodesApp/main/icon.png", "screenshots": [ "https://raw.githubusercontent.com/RobotsAndPencils/XcodesApp/main/screenshot.png" ], "categories": [ "ios--macos" ], "languages": [ "swift" ] }, { "repo_url": "https://github.com/b3z/reventlou", "official_site": "", "title": "reventlou", "icon_url": "", "screenshots": [ "https://github.com/b3z/reventlou/blob/master/assets/screenshot.png" ], "short_description": "Personal database as an information management system.", "categories": [ "database", "productivity", "text" ], "languages": [ "typescript", "swift" ] }, { "repo_url": "https://github.com/sqlectron/sqlectron-gui", "official_site": "https://sqlectron.github.io/", "title": "sqlectron", "icon_url": "https://sqlectron.github.io/logos/logo-square-180px.png", "screenshots": [ "https://sqlectron.github.io/demos/sqlectron-demo-gui-v1.31.0.gif" ], "short_description": "A simple and lightweight SQL client desktop/terminal with cross database and platform support.", "categories": [ "database", "productivity" ], "languages": [ "typescript" ] }, { "short_description": "RSS & Atom feed reader that lives in the system status bar.", "categories": [ "menubar", "news", "utilities" ], "repo_url": "https://github.com/relikd/barss", "title": "baRSS – Menu Bar RSS Reader", "icon_url": "https://raw.githubusercontent.com/relikd/baRSS/main/baRSS/Artwork/application-icon.svg", "screenshots": [ "https://raw.githubusercontent.com/relikd/baRSS/main/screenshot.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "macOS system monitor in your menu bar", "categories": [ "system", "utilities", "menubar" ], "repo_url": "https://github.com/exelban/stats", "title": "Stats", "icon_url": "https://raw.githubusercontent.com/exelban/stats/master/Stats/Supporting%20Files/Assets.xcassets/AppIcon.appiconset/256.png", "screenshots": [ "https://camo.githubusercontent.com/0e25eeb8b466356b0bcd847d064da3084baa5aed9bf53fab3bad2f0f0fbd1ee9/68747470733a2f2f7365726869792e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f4769746875625f7265706f2f73746174732f706f7075707325334676322e332e322e706e673f7633" ], "official_site": "", "languages": [ "swift" ] }, { "repo_url": "https://github.com/87kangsw/ThenGenerator", "official_site": "", "title": "ThenGenerator", "icon_url": "https://raw.githubusercontent.com/87kangsw/ThenGenerator/main/.github/images/icon_512x512.png", "screenshots": [ "https://raw.githubusercontent.com/87kangsw/ThenGenerator/main/.github/images/property.png" ], "short_description": "Xcode Source Editor Extension for 'Then'", "languages": [ "swift" ], "categories": [ "extensions", "productivity", "utilities" ] }, { "short_description": "Note-taking app with many organizational options.", "categories": [ "markdown", "notes" ], "repo_url": "https://github.com/hbowie/notenik-swift", "title": "Notenik", "icon_url": "https://notenik.app/images/notenik.png", "screenshots": [ "https://notenik.app/images/notenik-list-and-display.jpg" ], "official_site": "https://notenik.app", "languages": [ "swift" ] }, { "short_description": "🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis. ", "categories": [ "productivity", "notes", "markdown" ], "repo_url": "https://github.com/lostdesign/linked", "title": "linked", "icon_url": "https://github.com/lostdesign/linked/blob/master/appIcon/icon.png", "screenshots": [ "https://user-images.githubusercontent.com/5164617/112966541-9f3b4080-914a-11eb-9dff-00ea2a121b93.png", "https://user-images.githubusercontent.com/5164617/112368648-97f3dd00-8cdb-11eb-8865-0203264d420b.png" ], "official_site": "https://uselinked.com", "languages": [ "javascript", "vue", "css" ] }, { "short_description": "Spotify widget for Notification Center.", "categories": [ "audio" ], "repo_url": "https://github.com/fabiusBile/Spotify4BigSur", "title": "Spotify4BigSur", "icon_url": "", "screenshots": [ "https://github.com/fabiusBile/Spotify4BigSur/blob/master/medium_light.png?raw=true" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Real-time strategy game of ancient warfare", "categories": [ "games" ], "repo_url": "https://svn.wildfiregames.com/public/ps/trunk/", "title": "0 A.D.", "icon_url": "https://play0ad.com/wp-content/themes/nova/images/logo.png", "screenshots": [ "https://play0ad.com/wp-content/gallery/screenshots/EgyptianPyramids.jpg", "https://play0ad.com/wp-content/gallery/screenshots/screenshot0088.png" ], "official_site": "https://play0ad.com", "languages": [ "cpp" ] }, { "short_description": "A keystroke launcher for macOS (and Windows) like Spotlight or Alfred.", "categories": [ "productivity" ], "repo_url": "https://github.com/oliverschwendener/ueli", "title": "Ueli", "icon_url": "", "screenshots": [ "https://github.com/oliverschwendener/ueli/blob/dev/assets/feature-simple-folder-search.png?raw=true" ], "official_site": "https://ueli.app/", "languages": [ "typescript" ] }, { "short_description": "Discover and listen to music from Hype Machine.", "categories": [ "music", "audio", "player", "streaming" ], "repo_url": "https://github.com/wulkano/Plug", "title": "Plug", "icon_url": "https://raw.githubusercontent.com/wulkano/Plug/1ae6383ad9ad7026ce6fad4f1ea7ce3356c1f722/Plug/Images.xcassets/AppIcon.appiconset/256.png", "screenshots": [ "https://raw.githubusercontent.com/wulkano/Plug/1ae6383ad9ad7026ce6fad4f1ea7ce3356c1f722/Media/screenshot.jpg" ], "official_site": "https://www.plugformac.com/", "languages": [ "swift" ] }, { "short_description": "A MenuBar app to automatically audit your Mac for basic security hygiene.", "categories": [ "menubar", "security" ], "repo_url": "https://github.com/paretoSecurity/pareto-mac/", "title": "Pareto Security", "icon_url": "https://github.com/ParetoSecurity/pareto-mac/blob/main/assets/icon.png?raw=true", "screenshots": [ "https://user-images.githubusercontent.com/239513/126497099-1b89a8ef-68f2-4aae-9f05-f124748685d2.png" ], "official_site": "https://paretosecurity.com/", "languages": [ "swift" ] }, { "short_description": "Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives.", "categories": [ "extensions", "browser", "security" ], "repo_url": "https://github.com/smmr-software/privacy-redirect-safari", "title": "Privacy Redirect for Safari", "icon_url": "", "screenshots": [], "official_site": "", "languages": [ "swift" ] }, { "short_description": "A Beautiful Open Source RSS & Podcast App Powered by Getstream.io", "categories": [ "news", "podcast" ], "repo_url": "https://github.com/GetStream/Winds", "title": "Winds", "icon_url": "https://raw.githubusercontent.com/GetStream/Winds/23c0e6d44cf57d65960094c5b238820e502b16b1/app/public/favicons/favicon-256x256.png", "screenshots": [ "https://camo.githubusercontent.com/a632526f284f114b74e16c393ce5ccac4ddefa48e168d7f81f5b3fa0be6abe5e/68747470733a2f2f692e696d6775722e636f6d2f573166706f77562e706e67", "https://camo.githubusercontent.com/6041b4f4b94786f08926fb72b1a99c4f72031d104c3100bf1a360ff9dc90276d/68747470733a2f2f692e696d6775722e636f6d2f416c56674454672e706e67", "https://camo.githubusercontent.com/2c483da82086b0b3b34ca830bef20c369bc2dad69cf821160139c6bc16cf62fb/68747470733a2f2f692e696d6775722e636f6d2f7a6157744e66562e706e67", "https://camo.githubusercontent.com/22169746bd679f718abc946763175a2d7d9ee37dcab67289748a7cfb6f8aaae1/68747470733a2f2f692e696d6775722e636f6d2f746832343772412e706e67", "https://camo.githubusercontent.com/cda2850aa41cf19f52977012b205864b713b8acd71e2de27fbce37bb37e36ecc/68747470733a2f2f692e696d6775722e636f6d2f443377743757332e706e67" ], "official_site": "https://getstream.io/winds/", "languages": [ "javascript" ] }, { "short_description": "Soduto is a KDEConnect compatible application for macOS. It gives AirDrop like integration and allows file and clipboard sharing between your phones, desktops and tablets.", "categories": [ "sharing-files" ], "repo_url": "https://github.com/soduto/Soduto", "title": "Soduto", "icon_url": "https://soduto.com/images/site-logo.png", "screenshots": [], "official_site": "https://soduto.com/", "languages": [ "swift", "objective_c" ] }, { "short_description": "macOS status monitoring app written in SwiftUI.", "categories": [ "system", "utilities", "menubar" ], "repo_url": "https://github.com/gao-sun/eul", "title": "eul", "icon_url": "https://raw.githubusercontent.com/gao-sun/eul/master/Resource/Assets.xcassets/eul.imageset/eul%403x.png", "screenshots": [ "https://user-images.githubusercontent.com/14722250/105626766-f718ab00-5e6c-11eb-9761-661ff85c8faf.jpg" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "One-window text editor with syntax highlighting.", "categories": [ "text" ], "repo_url": "https://github.com/CodingFriends/Tincta", "title": "Tincta", "icon_url": "https://raw.githubusercontent.com/CodingFriends/Tincta/master/Source/app_icon.iconset/icon_512x512.png", "screenshots": [], "official_site": "https://codingfriends.github.io/Tincta/", "languages": [ "objective_c" ] }, { "short_description": "Redis management with SwiftUI.", "categories": [ "database" ], "repo_url": "https://github.com/cmushroom/redis-pro", "title": "redis-pro", "icon_url": "https://github.com/cmushroom/redis-pro/blob/main/redis-pro/Assets.xcassets/AppIcon.appiconset/redis%40256.png", "screenshots": [ "https://user-images.githubusercontent.com/2920167/125376778-4f614c00-e3be-11eb-8c11-7195e4cdb665.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Unix epoch timestamp flip clock screensaver.", "categories": [ "screensaver" ], "repo_url": "https://github.com/chrstphrknwtn/epoch-flip-clock-screensaver", "title": "Epoch Flip Clock Screensaver", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/chrstphrknwtn/epoch-flip-clock/master/epochFlipClock.png" ], "official_site": "", "languages": [ "objective_c" ] }, { "short_description": "Create tasks, manage due dates, and filter with powerful perspectives.", "categories": [ "productivity" ], "repo_url": "https://github.com/Shabang-Systems/Condution", "title": "Condution", "icon_url": "https://www.condution.com/static/media/logo.457b66ae.png", "screenshots": [ "https://www.condution.com/static/media/demo.528a92c2.png" ], "official_site": "https://www.condution.com", "languages": [ "javascript" ] }, { "short_description": "The swiss army knife of lossless video/audio editing without re-encoding.", "categories": [ "audio", "video" ], "repo_url": "https://github.com/mifi/lossless-cut", "title": "LosslessCut", "icon_url": "https://raw.githubusercontent.com/mifi/lossless-cut/master/src/icon.svg", "screenshots": [ "https://raw.githubusercontent.com/mifi/lossless-cut/master/main_screenshot.jpg" ], "official_site": "https://mifi.no/losslesscut/", "languages": [ "javascript" ] }, { "short_description": "Inspect the system pasteboards.", "categories": [ "development" ], "repo_url": "https://github.com/sindresorhus/Pasteboard-Viewer", "title": "Pasteboard Viewer", "icon_url": "https://raw.githubusercontent.com/sindresorhus/Pasteboard-Viewer/3ab9545e24050a0ca60ab102e9c303345af8da10/Stuff/AppIcon.png", "screenshots": [ "https://raw.githubusercontent.com/sindresorhus/Pasteboard-Viewer/3ab9545e24050a0ca60ab102e9c303345af8da10/Stuff/screenshot1.jpg" ], "official_site": "https://sindresorhus.com/pasteboard-viewer", "languages": [ "swift" ] }, { "short_description": "The chess app that comes with macOS.", "categories": [ "games" ], "repo_url": "https://opensource.apple.com/source/Chess/Chess-410.4.1/", "title": "Chess", "icon_url": "https://opensource.apple.com/source/Chess/Chess-410.4.1/MBChess/Images.xcassets/AppIcon.appiconset/icon_256x256.png", "screenshots": [ "https://upload.wikimedia.org/wikipedia/commons/8/83/Chess_screenshot.png" ], "official_site": "https://www.apple.com/", "languages": [ "objective-c" ] }, { "short_description": "The most advanced ad blocking extension for Safari", "categories": [ "extensions" ], "repo_url": "https://github.com/adguardteam/adguardforsafari", "title": "AdGuard for Safari", "icon_url": "https://camo.githubusercontent.com/b615bb7db1b9bc94567aec6e80a120c6f0bff13d64cc48e962ddf785cc7b18fd/68747470733a2f2f63646e2e616467756172642e636f6d2f7075626c69632f416467756172642f436f6d6d6f6e2f616467756172645f7361666172692e737667", "screenshots": [ "https://camo.githubusercontent.com/30d586bf934b280622aeac16949d86bb67184250b2b7902b9ea7fcf53e35ca39/68747470733a2f2f63646e2e616467756172642e636f6d2f7075626c69632f416467756172642f436f6d6d6f6e2f7361666172695f66696c746572732e706e673f" ], "official_site": "https://adguard.com/en/welcome.html", "languages": [ "javascript" ] }, { "short_description": "Dynamic Dark Mode is the app you are looking for to power up Dark Mode on macOS Mojave and beyond.", "categories": [ "games" ], "repo_url": "https://github.com/ApolloZhu/Dynamic-Dark-Mode", "title": "Dynamic Dark Mode", "icon_url": "", "screenshots": [ "https://user-images.githubusercontent.com/10842684/54065701-b240e800-41f2-11e9-8f7a-5d502ab27c4e.png" ], "official_site": "https://apollozhu.github.io/Dynamic-Dark-Mode/", "languages": [ "swift" ] }, { "short_description": "All-in-One status bar button, hide MacBook Pro's notch, dark mode, AirPods, Shortcuts", "categories": [ "menubar", "utilities" ], "repo_url": "https://github.com/jacklandrin/OnlySwitch", "title": "OnlySwitch", "icon_url": "https://www.jacklandrin.com/wp-content/uploads/2021/12/only_switch_256.png", "screenshots": [ "https://www.jacklandrin.com/wp-content/uploads/2022/01/onlySwitch_17.png" ], "official_site": "https://www.jacklandrin.com/2021/12/01/onlyswitch/", "languages": [ "swift" ] }, { "short_description": "🏈 Cache CocoaPods for faster rebuild and indexing Xcode project.", "categories": [ "utilities" ], "repo_url": "https://github.com/swiftyfinch/Rugby", "title": "Rugby", "icon_url": "", "screenshots": [ "https://github.com/swiftyfinch/Rugby/blob/main/Assets/Preview.jpg" ], "official_site": "https://swiftyfinch.github.io/en/2021-03-09-rugby-story/", "languages": [ "swift" ] }, { "short_description": "Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline: modeling, rigging, animation, simulation, rendering, compositing, motion tracking, and video editing.", "categories": [ "graphics" ], "repo_url": "https://projects.blender.org/", "title": "Blender", "icon_url": "https://download.blender.org/branding/blender_logo_socket.png", "screenshots": [ "https://www.blender.org/wp-content/uploads/2019/07/blender_render-1280x720.jpg?x94097", "https://www.blender.org/wp-content/uploads/2019/07/blender_vfx-1280x720.jpg?x94097", "https://www.blender.org/wp-content/uploads/2019/07/modeling02-1280x720.jpg?x94097", "https://www.blender.org/wp-content/uploads/2019/07/hero_p31_screenshot-1280x720.jpg?x94097", "https://www.blender.org/wp-content/uploads/2019/07/vse_custom_grade-1280x720.jpg?x94097", "https://www.blender.org/wp-content/uploads/2019/07/animation01-1280x720.jpg?x94097" ], "official_site": "https://www.blender.org", "languages": [ "c", "cpp", "python" ] }, { "short_description": "Krita is a cross-platform application for creating digital art files from scratch like illustrations, concept art, matte painting, textures, comics and animations.", "categories": [ "graphics", "images" ], "repo_url": "https://invent.kde.org/graphics/krita", "title": "Krita", "icon_url": "https://invent.kde.org/graphics/krita/-/raw/master/pics/krita.png", "screenshots": [ "https://krita.org/wp-content/uploads/2019/08/krita-ui-40.png" ], "official_site": "https://krita.org/en/", "languages": [ "cpp", "python", "c" ] }, { "short_description": "Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client.", "categories": [ "mail", "chat" ], "repo_url": "https://hg.mozilla.org/mozilla-central", "title": "Thunderbird", "icon_url": "https://www.mozilla.org/media/img/trademarks/thunderbird_logo_100.09facb8b4189.png", "screenshots": [ "https://www.thunderbird.net/media/img/l10n/en-US/thunderbird/landing/screenshot-mac.png", "https://www.thunderbird.net/media/img/l10n/en-US/thunderbird/calendar/screenshot-mac.png", "https://www.thunderbird.net/media/img/thunderbird/features/addon-manager.png" ], "official_site": "https://www.thunderbird.net/en-US/", "languages": [ "cpp", "javascript", "rust" ] }, { "short_description": "Make drag-and-drop easier using DropPoint. Helps to drag content without having to open side-by-side windows.", "categories": [ "productivity", "utility" ], "repo_url": "https://github.com/GameGodS3/DropPoint", "title": "DropPoint", "icon_url": "https://raw.githubusercontent.com/GameGodS3/DropPoint/main/static/media/pngLogo/droppoint%405x.png", "screenshots": [ "https://i.imgur.com/QkUPoOb.gif", "https://i.imgur.com/WElktc0.gif" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "FreeCAD is an open-source 3D parametric modeler", "categories": [ "graphics" ], "repo_url": "https://github.com/FreeCAD/FreeCAD", "title": "FreeCAD", "icon_url": "", "screenshots": [ "https://www.freecad.org/images/feature-03.jpg" ], "official_site": "https://www.freecad.org/", "languages": [ "c++", "python" ] }, { "short_description": "Use BibDesk to edit and manage your bibliography", "categories": [ "notes", "tex", "productivity" ], "repo_url": "https://sourceforge.net/projects/bibdesk/", "title": "BibDesk", "icon_url": "https://a.fsdn.com/allura/p/bibdesk/icon?f6c30e19f66fad4b1c03c8fdcf0a46685d328f3a1b5eb1acb95a4bd74e4a2913?&w=180", "screenshots": [ "https://bibdesk.sourceforge.io/screenshots/Publication.png", "https://bibdesk.sourceforge.io/screenshots/Main-Window.png" ], "official_site": "https://bibdesk.sourceforge.io", "languages": [ "objective_c" ] }, { "short_description": "Inkscape is a Free and open source vector graphics editor.", "categories": [ "images" ], "repo_url": "https://gitlab.com/inkscape/inkscape", "title": "Inkscape", "icon_url": "", "screenshots": [ "https://media.inkscape.org/media/resources/file/inkscape-0.48-moonlight-views.png" ], "official_site": "https://inkscape.org/", "languages": [ "c++" ] }, { "short_description": "IntelliJ IDEA is an integrated development environment written in Java for developing computer software", "categories": [ "ide" ], "repo_url": "https://github.com/JetBrains/intellij-community", "title": "IntelliJ IDEA Community Edition", "icon_url": "", "screenshots": [ "https://www.jetbrains.com/idea/img/screenshots/idea_overview_5_1@2x.png" ], "official_site": "https://www.jetbrains.com/idea/", "languages": [ "java" ] }, { "short_description": "A software suite for electronic design automation.", "categories": [ "development" ], "repo_url": "https://gitlab.com/kicad/code/kicad", "title": "KiCad", "icon_url": "", "screenshots": [], "official_site": "https://www.kicad.org/", "languages": [ "cpp", "c" ] }, { "short_description": "dupeGuru is a tool to find duplicate files on your computer. It can scan using file names and file contents.", "categories": [ "finder", "utilities" ], "repo_url": "https://github.com/arsenetar/dupeguru/", "title": "dupeGuru", "icon_url": "https://raw.githubusercontent.com/arsenetar/dupeguru/master/images/dgse_logo_128.png", "screenshots": [], "official_site": "https://dupeguru.voltaicideas.net/", "languages": [ "objective_c" ] }, { "short_description": "OpenRocket is a cross-platform utility tool to model and simulate model rockets and their flight characteristics.", "categories": [ "utilities" ], "repo_url": "https://github.com/openrocket/openrocket", "title": "OpenRocket", "icon_url": "", "screenshots": [], "official_site": "https://openrocket.info/", "languages": [ "java" ] }, { "short_description": "Cyberduck is a libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure & OneDrive, Google Drive and Dropbox.", "categories": [ "sharing-files" ], "repo_url": "https://github.com/iterate-ch/cyberduck", "title": "Cyberduck", "icon_url": "", "screenshots": [ "https://cdn.cyberduck.io/img/mac/browser-bookmarks.png", "https://cdn.cyberduck.io/img/mac/browser.png" ], "official_site": "https://cyberduck.io", "languages": [ "java" ] }, { "short_description": "App icon assets generator written in SwiftUI", "categories": [ "productivity", "utilities" ], "repo_url": "https://github.com/Mas0nSun/Slime", "title": "Slime", "icon_url": "https://user-images.githubusercontent.com/20198012/142772870-e2106600-e49f-4498-bd26-b635ceb1c671.png", "screenshots": [ "https://user-images.githubusercontent.com/20198012/143677189-c13cc444-5e2c-4342-9e22-27a7bff64915.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Clendar is an universal calendar app. Written in SwiftUI.", "categories": [ "ios--macos", "productivity" ], "repo_url": "https://github.com/vinhnx/Clendar", "title": "Clendar", "icon_url": "https://camo.githubusercontent.com/c63c8927ca2496caf5952a76c4d6989f388a583bc4225d05fd5aa4b7e4dfbf29/68747470733a2f2f6973332d73736c2e6d7a7374617469632e636f6d2f696d6167652f7468756d622f507572706c653132342f76342f30662f34642f33312f30663464333138352d636633372d633938352d343633312d6135623134623732646261302f41707049636f6e2d302d31785f55303037656d61726b6574696e672d302d31302d302d38352d3232302e706e672f3233307830772e77656270", "screenshots": [ "https://user-images.githubusercontent.com/1097578/143703321-bb867392-e0c5-4f67-93a0-e299164b0acf.png", "https://user-images.githubusercontent.com/1097578/143700120-e377dc4c-51c0-4089-9295-b5cd4da95f41.png" ], "official_site": "https://apps.apple.com/us/app/clendar-a-calendar-app/id1548102041", "languages": [ "swift" ] }, { "short_description": "Beautiful calculator app for macOS", "categories": [ "utilities", "productivity", "other" ], "repo_url": "https://github.com/nikolaeu/numi", "title": "Numi", "icon_url": "", "screenshots": [ "https://camo.githubusercontent.com/8ae63f55d6518e83f9b5782eda1b5d998c5d86313a594ded060a26d4442d9a3d/68747470733a2f2f6e756d692e6170702f696d616765732f6e756d692d73637265656e73686f742d79656c6c6f772e706e67" ], "official_site": "https://numi.app/", "languages": [ "javascript" ] }, { "short_description": "Application to spoof your iOS or iPhoneSimulator location.", "categories": [ "development", "ios--macos", "utilities" ], "repo_url": "https://github.com/Schlaubischlump/LocationSimulator", "title": "LocationSimulator", "icon_url": "https://raw.githubusercontent.com/Schlaubischlump/LocationSimulator/master/LocationSimulator/Assets.xcassets/AppIcon.appiconset/AppIcon_512%402x.png", "screenshots": [ "https://raw.githubusercontent.com/Schlaubischlump/LocationSimulator/master/Preview/screenshot.png" ], "official_site": "https://schlaubischlump.github.io/LocationSimulator", "languages": [ "swift" ] }, { "title": "M-Courtyard", "short_description": "Desktop app for fine-tuning LLMs on Apple Silicon Macs with zero code. Import documents, generate training datasets with AI, LoRA fine-tune, test, and export to Ollama — entirely offline.", "categories": [ "development" ], "repo_url": "https://github.com/Mcourtyard/m-courtyard", "icon_url": "https://raw.githubusercontent.com/Mcourtyard/m-courtyard/main/app/src-tauri/icons/128x128.png", "screenshots": [ "https://raw.githubusercontent.com/Mcourtyard/m-courtyard/main/docs/screenshots/dashboard.png", "https://raw.githubusercontent.com/Mcourtyard/m-courtyard/main/docs/screenshots/data-preparation.png", "https://raw.githubusercontent.com/Mcourtyard/m-courtyard/main/docs/screenshots/training-progress.png" ], "official_site": "https://github.com/Mcourtyard/m-courtyard", "languages": [ "typescript", "rust", "python" ] }, { "short_description": "Simple SQL Client for lightweight data analysis.", "categories": [ "database" ], "repo_url": "https://github.com/bdash-app/bdash", "title": "Bdash", "icon_url": "https://github.com/bdash-app/bdash/blob/master/build/icon.png", "screenshots": [ "https://raw.githubusercontent.com/bdash-app/bdash/1.2.2/assets/capture1.png", "https://raw.githubusercontent.com/bdash-app/bdash/1.2.2/assets/capture2.png" ], "official_site": "", "languages": [ "javascript" ] }, { "short_description": "Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript.", "categories": [ "ide", "development" ], "repo_url": "https://github.com/brackets-cont/brackets", "title": "Brackets", "icon_url": "https://brackets.io/img/brackets.svg", "screenshots": [ "https://brackets.io/img/hero.png" ], "official_site": "https://brackets.io/", "languages": [ "javascript" ] }, { "short_description": "Cross platform configuration tool for the Betaflight firmware.", "categories": [ "utilities", "other" ], "repo_url": "https://github.com/betaflight/betaflight-configurator", "title": "Betaflight Configurator", "icon_url": "https://pbs.twimg.com/profile_images/1061367585436925957/HoDOKWlp_400x400.jpg", "screenshots": [ "https://lh3.googleusercontent.com/di77U8MJEDNqdZ3UQugKJy6TEDtHsPegDH8fOaCM0m8E7zImA6bW1epvftG5LdpUsxE-eAkJtKAfDqIvOf-RXr8VUhg=w640-h400-e365-rj-sc0x00ffffff" ], "official_site": "https://betaflight.com/", "languages": [ "javascript" ] }, { "short_description": "Powerful yet simple to use screenshot software.", "categories": [ "images" ], "repo_url": "https://github.com/flameshot-org/flameshot", "title": "Flameshot", "icon_url": "https://raw.githubusercontent.com/flameshot-org/flameshot/master/data/img/app/flameshot.png", "screenshots": [ "https://raw.githubusercontent.com/flameshot-org/flameshot/master/data/img/preview/animatedUsage.gif" ], "official_site": "https://flameshot.org", "languages": [ "cpp" ] }, { "short_description": "A graphical Git client designed to help you understand and manage your source code history.", "categories": [ "development", "git" ], "repo_url": "https://github.com/gitahead/gitahead/", "title": "GitAhead", "icon_url": "", "screenshots": [ ], "official_site": "https://gitahead.github.io/gitahead.com/", "languages": [ "cpp", "c" ] }, { "short_description": "Nix is a reproducible package manager alternative to Homebrew, with over 80,000 packages.", "categories": [ "utilities" ], "repo_url": "https://github.com/NixOS/nix", "title": "nix-package-manager", "icon_url": "", "screenshots": [], "official_site": "https://nixos.org/explore.html", "languages": [ "c++", "shell", "nix" ] }, { "short_description": "Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions.", "categories": [ "system" ], "repo_url": "https://gitlab.com/wireshark/wireshark/-/tree/master", "title": "Wireshark", "icon_url": "", "screenshots": [], "official_site": "https://www.wireshark.org/", "languages": [ "c", "c++" ] }, { "short_description": "zoxide is a smarter cd command for your terminal.", "categories": [ "finder", "terminal", "utilities" ], "repo_url": "https://github.com/ajeetdsouza/zoxide", "title": "zoxide", "icon_url": "", "screenshots": [ "https://raw.githubusercontent.com/ajeetdsouza/zoxide/c392a8bb75af098b3906ed66595e79f05af92d1a/contrib/tutorial.webp" ], "official_site": "", "languages": [ "rust" ] }, { "short_description": "Widelands is a free, open source real-time strategy game with singleplayer campaigns and a multiplayer mode. The game was inspired by Settlers II™ (© Bluebyte) but has significantly more variety and depth to it.", "categories": [ "games" ], "repo_url": "https://github.com/widelands/widelands", "title": "Widelands", "icon_url": "https://www.widelands.org/static/img/logo.png", "screenshots": [ "https://www.widelands.org/static/img/welcome.jpg" ], "official_site": "https://www.widelands.org", "languages": [ "c++", "python", "lua", "javascript" ] }, { "short_description": "An editor for macOS", "categories": [ "editors" ], "repo_url": "https://github.com/ChimeHQ/Chime", "title": "Chime", "icon_url": "", "screenshots": [ "https://www.chimehq.com/assets/images/laptop-frame-large.png" ], "official_site": "https://www.chimehq.com/", "languages": [ "swift" ] }, { "short_description": "Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application.", "categories": [ "database" ], "repo_url": "https://github.com/dbgate/dbgate", "title": "DbGate", "icon_url": "https://raw.githubusercontent.com/dbgate/dbgate/master/app/icon.png", "screenshots": [ "https://dbgate.org/assets/screenshots/datagrid.png", "https://dbgate.org/assets/screenshots/query.png", "https://dbgate.org/assets/screenshots/diagram.png", "https://dbgate.org/assets/screenshots/redis.png", "https://dbgate.org/assets/screenshots/export.png", "https://dbgate.org/assets/screenshots/darkmode.png", "https://dbgate.org/assets/screenshots/querydesigner.png", "https://dbgate.org/assets/screenshots/mongosave.png", "https://dbgate.org/assets/screenshots/dbcompare.png" ], "official_site": "https://dbgate.org", "languages": [ "javascript", "typescript" ] }, { "short_description": "Readest is a modern, feature-rich ebook reader designed for avid readers.", "categories": [ "productivity" ], "repo_url": "https://github.com/readest/readest", "title": "Readest", "icon_url": "https://raw.githubusercontent.com/readest/readest/main/apps/readest-app/public/icon.png", "screenshots": [ "https://raw.githubusercontent.com/readest/readest/main/data/screenshots/annotations.png", "https://raw.githubusercontent.com/readest/readest/main/data/screenshots/tts_control.png", "https://raw.githubusercontent.com/readest/readest/main/data/screenshots/wikipedia_vertical.png", "https://raw.githubusercontent.com/readest/readest/main/data/screenshots/dark_mode.png", "https://raw.githubusercontent.com/readest/readest/main/data/screenshots/theming_dark_mode.png" ], "official_site": "https://readest.com", "languages": [ "typescript" ] }, { "short_description": "A Hex Editor for Reverse Engineers.", "categories": [ "Editors", "IDE" ], "repo_url": "https://github.com/WerWolv/ImHex/", "title": "ImHex", "icon_url": "https://raw.githubusercontent.com/WerWolv/ImHex/master/resources/dist/windows/icon.ico", "screenshots": [ "https://raw.githubusercontent.com/WerWolv/ImHex/master/resources/projects/splash_screen.svg" ], "official_site": "https://imhex.werwolv.net/", "languages": [ "c++" ] }, { "short_description": "MacOS menu bar app for launching iOS  and Android 🤖 emulators.", "categories": [ "menubar" ], "repo_url": "https://github.com/okwasniewski/MiniSim", "title": "MiniSim", "icon_url": "https://github.com/okwasniewski/MiniSim/blob/main/MiniSim/Assets.xcassets/AppIcon.appiconset/256.png", "screenshots": [ "https://user-images.githubusercontent.com/52801365/223483262-aa3bad72-2948-4893-87a0-578e5d3d8e89.png" ], "official_site": "https://www.minisim.app/", "languages": [ "swift" ] }, { "short_description": "A simple screenshotting utility for thinking clearly.", "categories": [ "productivity", "menubar", "utilities" ], "repo_url": "https://github.com/salemhilal/ScreenHint", "title": "ScreenHint", "icon_url": "https://raw.githubusercontent.com/salemhilal/ScreenHint/main/ScreenHint/Assets.xcassets/AppIcon.appiconset/Icon-1024.png?raw=true", "screenshots": [ "https://github.com/salemhilal/screenhint-site/blob/main/src/static/img/features/screenhint-in-action.png?raw=true", "https://github.com/salemhilal/screenhint-site/blob/main/src/static/img/features/code-hints.png?raw=true", "https://github.com/salemhilal/screenhint-site/blob/main/src/static/img/features/bike-ride-hints.png?raw=true" ], "official_site": "https://screenhint.com", "languages": [ "swift" ] }, { "short_description": "Instant messaging application that can connect to XMPP (Jabber), IRC and more.", "categories": [ "chat" ], "repo_url": "https://github.com/adium/adium", "title": "Adium", "icon_url": "https://camo.githubusercontent.com/a71922d7e707859df12b40be9c5b7f84b2c3562b55b1bc145986b119abb8d136/68747470733a2f2f616469756d2e696d2f696d616765732f6c6f676f2e706e67", "screenshots": [ "https://adiumx.com/blog/uploads/2009/03/twitter-full.png" ], "official_site": "https://adium.im/", "languages": [ "c" ] }, { "short_description": "TRex is the easiest way to copy the uncopyable text from images, YouTube videos, Zoom calls and more. If you can see it - you can copy it. TRex captures any text right into your Clipboard with magic of OCR.", "categories": [ "utilities" ], "repo_url": "https://github.com/amebalabs/TRex", "title": "TRex", "icon_url": "https://raw.githubusercontent.com/amebalabs/TRex/main/Resources/logo.png", "screenshots": [ "https://raw.githubusercontent.com/amebalabs/TRex/main/Resources/screenshot.png", "https://raw.githubusercontent.com/amebalabs/TRex/main/Resources/demo.gif" ], "official_site": "https://trex.ameba.co/", "languages": [ "swift" ] }, { "short_description": "An all-in-one digital audio workstation (DAW) and plugin suite", "categories": [ "audio", "music" ], "repo_url": "https://github.com/stargatedaw/stargate", "title": "StargateDAW", "icon_url": "https://avatars.githubusercontent.com/u/93949110?s=200&v=4", "screenshots": [ "https://raw.githubusercontent.com/stargatedaw/stargate/main/assets/audio_item.png", "https://raw.githubusercontent.com/stargatedaw/stargate/main/assets/note_item.png", "https://raw.githubusercontent.com/stargatedaw/stargate/main/assets/plugins.png", "https://raw.githubusercontent.com/stargatedaw/stargate/main/assets/routing.png", "https://raw.githubusercontent.com/stargatedaw/stargate/main/assets/sequencer.png", "https://raw.githubusercontent.com/stargatedaw/stargate/main/assets/va1.png" ], "official_site": "", "languages": [ "c", "python" ] }, { "short_description": "A fully open source and end-to-end encrypted note taking alternative to Evernote.", "categories": [ "notes", "text" ], "repo_url": "https://github.com/streetwriters/notesnook", "title": "Notesnook", "icon_url": "https://github.com/streetwriters/notesnook/blob/master/fastlane/metadata/android/en-US/images/icon.png?raw=true", "screenshots": [ "https://notesnook.com/_next/static/images/hero-image-dark-1920@1x-6aeda670e2531cef9a81e47766eb6cbf.webp" ], "official_site": "https://notesnook.com", "languages": [ "javascript", "typescript" ] }, { "short_description": "Your ultimate GPT companion for seamless access on your Mac", "repo_url": "https://github.com/nsmet/omniprompt-gpt-mac-app", "title": "OmniPrompt", "icon_url": "", "screenshots": [], "official_site": "https://omniprompt.app/", "categories": [ "productivity", "utilities" ], "languages": [ "swift" ] }, { "short_description": "gPodder is a simple, open source podcast client.", "categories": [ "podcast" ], "repo_url": "https://github.com/gpodder/gpodder", "title": "gPodder", "icon_url": "https://raw.githubusercontent.com/gpodder/gpodder/master/share/icons/hicolor/64x64/apps/gpodder.png", "screenshots": [ "https://gpodder.github.io/assets/screenshot-2022-03-24-crop.png" ], "official_site": "https://gpodder.github.io/", "languages": [ "python" ] }, { "short_description": "JustTags in a macOS app for working with BERTLV EMV tags.", "categories": [ "development" ], "repo_url": "https://github.com/kaphacius/just-tags", "title": "JustTags", "icon_url": "https://github.com/kaphacius/just-tags/raw/main/JustTags/Assets.xcassets/AppIcon.appiconset/icon_512_256x2.png?raw=true", "screenshots": [ "https://github.com/kaphacius/just-tags/raw/main/Screenshots/02_view.png?raw=true", "https://github.com/kaphacius/just-tags/raw/main/Screenshots/04_diff.png?raw=true" ], "official_site": "https://kaphacius.github.io/just-tags/", "languages": [ "swift" ] }, { "short_description": "Smotrite is a system monitor for macOS, which just work.", "categories": [ "utilities" ], "repo_url": "https://github.com/Lukentui/smotrite-app", "title": "Smotrite", "icon_url": "https://raw.githubusercontent.com/Lukentui/smotrite-app/main/etc/icons/512x512x32.png", "screenshots": [ "https://raw.githubusercontent.com/Lukentui/smotrite-app/main/etc/screenshots/1.png", "https://raw.githubusercontent.com/Lukentui/smotrite-app/main/etc/screenshots/2.png" ], "official_site": "", "languages": [ "typescript" ] }, { "short_description": "App that allows you to gather everything you need for work in one place, organized by projects and workflows, and have a quick access to them.", "categories": [ "productivity" ], "repo_url": "https://github.com/FreeterApp/Freeter", "title": "Freeter", "icon_url": "https://raw.githubusercontent.com/FreeterApp/Freeter/master/src/assets/app-icons/256.png", "screenshots": [ "https://freeter.io/images/app-screen.png" ], "official_site": "https://freeter.io/", "languages": [ "typescript" ] }, { "short_description": "User-friendly GUI app for Homebrew Casks. Install, update, and uninstall apps with a single click.", "categories": [ "downloader" ], "repo_url": "https://github.com/milanvarady/Applite", "title": "Applite", "icon_url": "https://aerolite.dev/img/applite/AppliteIcon512.png", "screenshots": [ "https://aerolite.dev/img/applite/discover-page.png", "https://aerolite.dev/img/applite/productivity.png" ], "official_site": "https://aerolite.dev/applite", "languages": [ "swift" ] }, { "short_description": "Video editing software designed for motion effects and versatility.", "categories": ["graphics"], "repo_url": "https://github.com/cartesiancs/nugget-app", "title": "Nugget", "icon_url": "https://raw.githubusercontent.com/cartesiancs/nugget-app/refs/heads/main/assets/icons/png/512x512.png", "screenshots": [ "https://raw.githubusercontent.com/cartesiancs/nugget-app/refs/heads/main/.github/screenshotv1.png" ], "official_site": "", "languages": ["typescript"] }, { "short_description": "Replace the Git CLI with a clear UI and AI assist.", "categories": [ "git" ], "repo_url": "https://github.com/maoyama/Tempo", "title": "Tempo", "icon_url": "https://raw.githubusercontent.com/maoyama/Tempo/refs/heads/main/GitClient/Assets.xcassets/AppIcon.appiconset/icon1024.png", "screenshots": [ "https://raw.githubusercontent.com/maoyama/Tempo/refs/heads/main/Screenshots/Screenshot.png", "https://raw.githubusercontent.com/maoyama/Tempo/refs/heads/main/Screenshots/Screenshot2.png" ], "official_site": "", "languages": [ "swift" ] }, { "short_description":"Simple and free working time recording.", "categories":[ "menubar", "productivity" ], "repo_url":"https://github.com/WINBIGFOX/timescribe", "title":"TimeScribe", "icon_url":"https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/public/icon.png", "screenshots":[ "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/menubar_light.png", "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/dayview_en_light.webp", "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/app_activity_en_light.webp", "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/absences_en_light.webp", "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/start_break_en_light.webp" ], "official_site":"https://timescribe.app", "languages":[ "css", "javascript", "typescript" ] }, { "short_description":"A lightweight app for formatting and correcting Swift syntax.", "categories":[ "development", "editors", "ios--macos" ], "repo_url":"https://github.com/csprasad/DevLint", "title":"DevLint", "icon_url":"https://raw.githubusercontent.com/csprasad/DevLint/main/.github/images/Icon.png", "screenshots":[ "https://raw.githubusercontent.com/csprasad/DevLint/main/.github/images/App_screen_light.png", "https://raw.githubusercontent.com/csprasad/DevLint/main/.github/images/App_screen_light.png" ], "official_site":"", "languages":[ "swift" ] }, { "short_description": "Simple and free working time recording.", "categories": [ "menubar", "productivity" ], "repo_url": "https://github.com/WINBIGFOX/timescribe", "title": "TimeScribe", "icon_url": "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/public/icon.png", "screenshots": [ "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/menubar_light.png", "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/dayview_en_light.webp", "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/app_activity_en_light.webp", "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/absences_en_light.webp", "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/start_break_en_light.webp" ], "official_site": "https://timescribe.app", "languages": [ "css", "javascript", "typescript" ] }, { "short_description": "Quickly calculate column widths and get correct results for your grid.", "categories": [ "utilities", "development" ], "repo_url": "https://github.com/Slllava/gridfy", "title": "Gridfy", "icon_url": "https://raw.githubusercontent.com/Slllava/gridfy/refs/heads/main/Gridfy/Assets.xcassets/Icons/AppIcon.appiconset/Icon-512.png", "screenshots": [ "https://raw.githubusercontent.com/Slllava/gridfy/refs/heads/main/media/pr-01.png", "https://raw.githubusercontent.com/Slllava/gridfy/refs/heads/main/media/pr-02.png", "https://raw.githubusercontent.com/Slllava/gridfy/refs/heads/main/media/pr-03.png" ], "official_site": "https://gridfy.astroon.pro/", "languages": [ "javascript", "typescript" ] }, { "short_description": "Archive manager for macOS. Preview (nested) archives without extracting them. Extract single files.", "categories": [ "utilities" ], "repo_url": "https://github.com/sarensw/MacPacker/", "title": "MacPacker", "icon_url": "https://macpacker.app/icon_512x512@2x.png", "screenshots": [ "https://macpacker.app/main.png" ], "official_site": "https://macpacker.app/", "languages": [ "swift" ] }, { "short_description": "Remote pair programming app.", "categories": [ "Other" ], "repo_url": "https://github.com/gethopp/hopp", "title": "Hopp", "icon_url": "https://dlh49gjxx49i3.cloudfront.net/logo-light.png", "screenshots": [ "https://docs.gethopp.app/_astro/screenshare.w05eQI3z_7tfaK.webp" ], "official_site": "https://gethopp.app/", "languages": [ "rust", "typescript", "go" ] }, { "short_description": "Switch between open applications on macOS with a Windows-like Alt+Tab experience.", "categories": [ "window-management" ], "repo_url": "https://github.com/lwouis/alt-tab-macos", "title": "AltTab", "icon_url": "https://github.com/lwouis/alt-tab-macos/blob/master/resources/icons/app/app.svg", "screenshots": [ "https://github.com/lwouis/alt-tab-macos/raw/master/docs/public/demo/frontpage.jpg" ], "official_site": "https://alt-tab-macos.netlify.app/", "languages": [ "swift" ] }, { "short_description": "Ice is a versatile menu bar manager that goes beyond hiding and showing items to offer a rich set of productivity features.", "categories": [ "productivity", "utilities", "window-management" ], "repo_url": "https://github.com/jordanbaird/Ice", "title": "Ice", "icon_url": "https://icemenubar.app/gallery/Ice%20Cube.png?ts=1737648866", "screenshots": [ "https://icemenubar.app/gallery/ice-bar.png", "https://icemenubar.app/gallery/menu-bar-item-search.png" ], "official_site": "https://icemenubar.app/", "languages": [ "swift" ] }, { "short_description": "LibreCAD is a free Open Source CAD application for Windows, Apple and Linux. Support and documentation are free from our large, dedicated community of users, contributors and developers.", "categories": [ "graphics" ], "repo_url": "https://github.com/LibreCAD/LibreCAD", "title": "LibreCAD", "icon_url": "https://github.com/LibreCAD/LibreCAD/blob/master/desktop/media/logo/librecad_logo.svg", "screenshots": [ "https://librecad.org/img/welcome.png" ], "official_site": "https://librecad.org", "languages": [ "c++", "c" ] }, { "short_description": "Create file and folder structures from plain text descriptions.", "categories": [ "productivity", "utilities" ], "repo_url": "https://github.com/filearchitect/app", "title": "File Architect", "icon_url": "https://raw.githubusercontent.com/filearchitect/app/main/app-icon.png", "screenshots": [ "https://raw.githubusercontent.com/filearchitect/app/main/docs/screenshots/filearchitect-main.png" ], "official_site": "https://filearchitect.com", "languages": [ "typescript", "rust" ] }, { "short_description": "Instant thought capture for macOS. Global hotkey summons a post-it note, type and close. Notes stored as plain markdown files.", "categories": [ "notes" ], "repo_url": "https://github.com/0xMassi/stik_app", "title": "Stik", "icon_url": "", "screenshots": [], "official_site": "https://stik.ink", "languages": [ "rust", "typescript" ] }, { "short_description": "24/7 screen and audio recording with AI-powered search. Local-first, privacy-focused rewind alternative.", "categories": [ "productivity", "utilities" ], "repo_url": "https://github.com/screenpipe/screenpipe", "title": "Screenpipe", "icon_url": "https://raw.githubusercontent.com/screenpipe/screenpipe/main/apps/screenpipe-app-tauri/src-tauri/icons/128x128.png", "screenshots": [ "https://screenpi.pe/og-image.png" ], "official_site": "https://screenpi.pe", "languages": [ "rust", "typescript" ] }, { "short_description": "A simple macOS menu bar utility that lets you glue two windows together so that they behave (mostly) as one.", "categories": [ "window-management" ], "repo_url": "https://github.com/Conxt/WindowGlue", "title": "Window Glue", "icon_url": "https://github.com/Conxt/WindowGlue/raw/main/Assets/Icon-MacOS-256x256.png", "screenshots": [ "https://github.com/Conxt/WindowGlue/raw/main/Assets/Screen.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "An application that can dock any window to the edge of the screen.", "categories": [ "window-management", "productivity" ], "repo_url": "https://github.com/xicheng148/Dockit", "title": "Dockit", "icon_url": "https://github.com/XiCheng148/Dockit/blob/main/Resources/dmg-icon.svg?raw=true", "screenshots": [ "https://github.com/XiCheng148/Dockit/blob/main/Resources/preview.gif?raw=true" ], "official_site": "[official site](https://dockit-docs.pages.dev/?s=open-sourse-mac-os-apps)", "languages": [ "swift" ] }, { "short_description": "Input Source Pro is macOS utility designed for multilingual users who frequently switch input sources.", "categories": [ "keyboard", "utilities", "ios--macos" ], "repo_url": "https://github.com/runjuu/InputSourcePro/", "title": "Input Source Pro", "icon_url": "https://camo.githubusercontent.com/858c5c213d9937d100e0837f6f37f67652457acada5fd1f17253060da568e5e1/68747470733a2f2f696e707574736f757263652e70726f2f696d672f6170702d69636f6e2e706e67", "screenshots": [], "official_site": "https://inputsource.pro", "languages": [ "swift" ] }, { "short_description": "Window management made elegant.", "categories": [ "window-management" ], "repo_url": "https://github.com/MrKai77/Loop", "title": "Loop", "icon_url": "https://github.com/MrKai77/Loop/raw/develop/assets/graphics/Classic.png", "screenshots": [ "https://github.com/MrKai77/Loop/raw/develop/assets/graphics/loop_demo.gif" ], "official_site": "", "languages": [ "swift" ] }, { "short_description": "Clipboard manager with Touch ID protection, AES-256-GCM encryption, and sensitive data detection.", "categories": [ "productivity", "utilities", "security" ], "repo_url": "https://github.com/sane-apps/SaneClip", "title": "SaneClip", "icon_url": "https://raw.githubusercontent.com/sane-apps/SaneClip/main/Resources/Assets.xcassets/AppIcon.appiconset/icon_256x256%402x.png", "screenshots": [ "https://raw.githubusercontent.com/sane-apps/SaneClip/main/docs/images/screenshot-popover.png", "https://raw.githubusercontent.com/sane-apps/SaneClip/main/docs/images/screenshot-settings.png" ], "official_site": "https://saneclip.com", "languages": [ "swift" ] }, { "short_description": "System-level ad and tracker blocker via /etc/hosts with 200+ curated blocklists and Touch ID protection.", "categories": [ "security", "utilities" ], "repo_url": "https://github.com/sane-apps/SaneHosts", "title": "SaneHosts", "icon_url": "https://raw.githubusercontent.com/sane-apps/SaneHosts/main/SaneHosts/Assets.xcassets/AppIcon.appiconset/icon_256x256%402x.png", "screenshots": [ "https://raw.githubusercontent.com/sane-apps/SaneHosts/main/website/screenshot.png" ], "official_site": "https://sanehosts.com", "languages": [ "swift" ] }, { "short_description": "Universal indie sales tracker for LemonSqueezy, Gumroad, and Stripe with on-device privacy.", "categories": [ "productivity", "utilities" ], "repo_url": "https://github.com/sane-apps/SaneSales", "title": "SaneSales", "icon_url": "https://raw.githubusercontent.com/sane-apps/SaneSales/main/Resources/Assets.xcassets/AppIcon.appiconset/icon_256x256%402x.png", "screenshots": [ "https://raw.githubusercontent.com/sane-apps/SaneSales/main/docs/images/screenshot-mac-dashboard.png", "https://raw.githubusercontent.com/sane-apps/SaneSales/main/docs/images/screenshot-mac-charts.png", "https://raw.githubusercontent.com/sane-apps/SaneSales/main/docs/images/screenshot-iphone-dashboard.png" ], "official_site": "https://sanesales.com", "languages": [ "swift" ] }, { "short_description": "Finder extension with 51+ right-click actions for file management, image conversion, and developer tools.", "categories": [ "finder", "utilities" ], "repo_url": "https://github.com/sane-apps/SaneClick", "title": "SaneClick", "icon_url": "https://raw.githubusercontent.com/sane-apps/SaneClick/main/SaneClick/Resources/Assets.xcassets/AppIcon.appiconset/icon_256x256%402x.png", "screenshots": [ "https://raw.githubusercontent.com/sane-apps/SaneClick/main/docs/screenshots/main-window.png" ], "official_site": "https://saneclick.com", "languages": [ "swift" ] }, { "short_description": "Privacy-first menu bar manager with Touch ID lock, Always-Hidden Zone, and automation triggers.", "categories": [ "menubar", "utilities" ], "repo_url": "https://github.com/sane-apps/SaneBar", "title": "SaneBar", "icon_url": "https://raw.githubusercontent.com/sane-apps/SaneBar/main/Resources/Assets.xcassets/AppIcon.appiconset/icon_256x256%402x.png", "screenshots": [ "https://raw.githubusercontent.com/sane-apps/SaneBar/main/docs/images/icon-panel.png", "https://raw.githubusercontent.com/sane-apps/SaneBar/main/docs/images/second-menu-bar.png" ], "official_site": "https://sanebar.com", "languages": [ "swift" ] }, { "short_description": "Yet Another PiP Extension. Finds all HTML5 videos on a webpage and allows you to play them in Picture-in-Picture mode from the Safari toolbar.", "categories": [ "extensions", "video" ], "repo_url": "https://github.com/leonspok/Yape", "title": "Yape", "icon_url": "https://github.com/leonspok/Yape/raw/master/README%20resources/app_icon.png", "screenshots": [ "https://github.com/leonspok/Yape/raw/master/README%20resources/example_screenshot.png", "https://github.com/leonspok/Yape/raw/master/README%20resources/preferences_screenshot.png" ], "official_site": "", "languages": [ "swift" ] }, { "title": "muCommander", "short_description": "A lightweight, cross-platform file manager with a dual-pane interface.", "categories": [ "finder" ], "repo_url": "https://github.com/mucommander/mucommander", "icon_url": "", "screenshots": [], "official_site": "https://www.mucommander.com/", "languages": [ "java" ] }, { "title": "WireGuard", "short_description": "Fast, Modern, Secure VPN Tunnel.", "categories": [ "vpn--proxy" ], "repo_url": "https://git.zx2c4.com/wireguard-apple/", "icon_url": "", "screenshots": [], "official_site": "https://www.wireguard.com/", "languages": [ "swift" ] }, { "title": "FileZilla", "short_description": "Free open-source FTP, FTPS, and SFTP client.", "categories": [ "sharing-files", "downloader" ], "repo_url": "https://sourceforge.net/projects/filezilla/", "icon_url": "", "screenshots": [], "official_site": "https://filezilla-project.org", "languages": [ "c++" ] }, { "title": "Gramps", "short_description": "A genealogy program that is both intuitive for hobbyists and feature-complete for professional genealogists.", "categories": [ "other" ], "repo_url": "https://github.com/gramps-project/gramps", "icon_url": "https://raw.githubusercontent.com/gramps-project/gramps/maintenance/gramps60/images/gramps.png", "screenshots": [], "official_site": "https://gramps-project.org", "languages": [ "python" ] }, { "title": "MacNTop", "short_description": "macOS menu bar system monitor with retro CRT aesthetics.", "categories": [ "system", "menubar" ], "repo_url": "https://github.com/CorvidLabs/MacNTop", "icon_url": "", "screenshots": [], "official_site": "https://github.com/CorvidLabs/MacNTop", "languages": [ "swift" ] } ] } ================================================ FILE: buildServer.json ================================================ { "name": "xcode build server", "version": "0.2", "bspVersion": "2.0", "languages": [ "c", "cpp", "objective-c", "objective-cpp", "swift" ], "argv": [ "/usr/local/bin/xcode-build-server" ], "workspace": "/Users/serhii.londar/Documents/GitHub/open-source-mac-os-apps/.github/ReadmeGenerator.xcodeproj/project.xcworkspace", "build_root": "/Users/serhii.londar/Library/Developer/Xcode/DerivedData/ReadmeGenerator-gmebhtnoakzlbseqgzuedvuuxjxb", "scheme": "ReadmeGenerator", "kind": "xcode" } ================================================ FILE: categories.json ================================================ { "categories": [ { "title": "Audio", "id": "audio", "description": "" }, { "title": "Backup", "id": "backup", "description": "" }, { "title": "Browser", "id": "browser", "description": "" }, { "title": "Chat", "id": "chat", "description": "" }, { "title": "Cryptocurrency", "id": "cryptocurrency", "description": "" }, { "title": "Database", "id": "database", "description": "" }, { "title": "Development", "id": "development", "description": "" }, { "title": "Downloader", "id": "downloader", "description": "" }, { "title": "Editors", "id": "editors", "description": "" }, { "title": "Extensions", "id": "extensions", "description": "" }, { "title": "Finder", "id": "finder", "description": "" }, { "title": "Games", "id": "games", "description": "" }, { "title": "Graphics", "id": "graphics", "description": "" }, { "title": "IDE", "id": "ide", "description": "" }, { "title": "Images", "id": "images", "description": "" }, { "title": "Keyboard", "id": "keyboard", "description": "" }, { "title": "Mail", "id": "mail", "description": "" }, { "title": "Medical", "id": "medical", "description": "" }, { "title": "Menubar", "id": "menubar", "description": "" }, { "title": "Music", "id": "music", "description": "" }, { "title": "News", "id": "news", "description": "" }, { "title": "Notes", "id": "notes", "description": "" }, { "title": "Other", "id": "other", "description": "" }, { "title": "Player", "id": "player", "description": "" }, { "title": "Podcast", "id": "podcast", "description": "" }, { "title": "Productivity", "id": "productivity", "description": "" }, { "title": "Screensaver", "id": "screensaver", "description": "" }, { "title": "Security", "id": "security", "description": "" }, { "title": "Sharing Files", "id": "sharing-files", "description": "" }, { "title": "Social Networking", "id": "social-networking", "description": "" }, { "title": "Streaming", "id": "streaming", "description": "" }, { "title": "System", "id": "system", "description": "" }, { "title": "Terminal", "id": "terminal", "description": "" }, { "title": "Touch Bar", "id": "touch-bar", "description": "" }, { "title": "Utilities", "id": "utilities", "description": "" }, { "title": "VPN & Proxy", "id": "vpn--proxy", "description": "" }, { "title": "Video", "id": "video", "description": "" }, { "title": "Wallpaper", "id": "wallpaper", "description": "" }, { "title": "Window Management", "id": "window-management", "description": "" }, { "title": "Git", "id": "git", "parent": "development", "description": "" }, { "title": "iOS / macOS", "id": "ios--macos", "parent": "development", "description": "" }, { "title": "JSON Parsing", "id": "json-parsing", "parent": "development", "description": "" }, { "title": "Web Development", "id": "web-development", "parent": "development", "description": "" }, { "title": "Other Development", "id": "other-development", "parent": "development", "description": "" }, { "title": "CSV", "id": "csv", "parent": "editors", "description": "" }, { "title": "JSON", "id": "json", "parent": "editors", "description": "" }, { "title": "Markdown", "id": "markdown", "parent": "editors", "description": "" }, { "title": "TeX", "id": "tex", "parent": "editors", "description": "" }, { "title": "Text", "id": "text", "parent": "editors", "description": "" } ] }