diff --git a/.github/deploy.sh b/.github/deploy.sh deleted file mode 100644 index 73711b1..0000000 --- a/.github/deploy.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -set -e - -echo ${TRAVIS_EVENT_TYPE} -echo ${TRAVIS_BRANCH} - -if [[ ${TRAVIS_EVENT_TYPE} != 'push' ]] -then - exit -fi - -if [[ ${TRAVIS_BRANCH} != 'master' ]] -then - exit -fi - -git checkout master - -git config user.name "serhii-londar" -git config user.email "serhii.londar@gmail.com" - -echo add readme -git add README.md - -echo commit -git commit -m "Generate README" - -echo push -git push --quiet "https://${DANGER_GITHUB_API_TOKEN}@github.com/serhii-londar/open-source-mac-os-apps.git" master:master > /dev/null 2>&1 diff --git a/.github/main.swift b/.github/main.swift index 688b685..b77295e 100644 --- a/.github/main.swift +++ b/.github/main.swift @@ -8,18 +8,49 @@ import Foundation -let header = """ -[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://vshymanskyy.github.io/StandWithUkraine) +// 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 +

+

- -

- -# Awesome macOS open source applications - -

-Awesome -Join the chat at gitter + Audio • + Backup • + Browser • + Chat • + Crypto • + Database • + Dev • + Editors • + Graphics • + Productivity • + Utilities

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! @@ -30,30 +61,40 @@ To receive all new or popular applications you can join our [telegram channel](h 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: -- ![c_icon] - C language. -- ![cpp_icon] - C++ language. -- ![c_sharp_icon] - C# language. -- ![clojure_icon] - Clojure language. -- ![coffee_script_icon] - CoffeeScript language. -- ![css_icon] - CSS language. -- ![go_icon] - Go language. -- ![elm_icon] - Elm language. -- ![haskell_icon] - Haskell language. -- ![javascript_icon] - JavaScript language. -- ![lua_icon] - Lua language. -- ![metal_icon] - Metal language. -- ![objective_c_icon] - Objective-C language. -- ![python_icon] - Python language. -- ![ruby_icon] - Ruby language. -- ![rust_icon] - Rust language. -- ![shell_icon] - Shell language. -- ![swift_icon] - Swift language. -- ![typescript_icon] - TypeScript language. - +| 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) @@ -107,9 +148,12 @@ You can see in which language an app is written. Currently there are following l ## Applications """ +} let footer = """ +
⬆️ Back to Top
+ ## Contributors Thanks to all the people who contribute: @@ -165,6 +209,11 @@ class JSONApplication: Codable { 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 @@ -175,9 +224,13 @@ class JSONApplication: Codable { 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) { + 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 @@ -186,6 +239,10 @@ class JSONApplication: Codable { self.screenshots = screenshots self.categories = categories self.officialSite = officialSite + self.homebrewCask = homebrewCask + self.macOSVersion = macOSVersion + self.appStoreID = appStoreID + self.deprecated = deprecated } } @@ -238,6 +295,26 @@ class ReadmeGenerator { 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) @@ -246,41 +323,109 @@ class ReadmeGenerator { 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 { - readmeString.append(String.enter + String.section + String.space + category.title + String.enter) - var categoryApplications = applications.filter({ $0.categories.contains(category.id) }) - categoryApplications = categoryApplications.sorted(by: { $0.title < $1.title }) + // 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 { - readmeString.append(String.enter + String.subsection + String.space + subcategory.title + String.enter) - var categoryApplications = applications.filter({ $0.categories.contains(subcategory.id) }) - categoryApplications = categoryApplications.sorted(by: { $0.title < $1.title }) + // 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)) - print("Finish") + + // 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) + 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 { @@ -297,25 +442,189 @@ extension JSONApplication { var markdownDescription = String.empty var languages: String = String.empty for lang in self.languages { - languages.append("![\(lang)\(String.iconPrefix)] ") + languages.append(languageIconHTML(for: lang) + " ") } - markdownDescription.append("- [\(self.title)](\(self.repoURL)) - \(self.shortDescription) \(languages)") - /* - if self.screenshots.count > 0 { - var screenshotsString = String.empty - screenshotsString += (String.space + Constants.detailsBeginString + String.space) - self.screenshots.forEach({ - screenshotsString += (String.space + (NSString(format: Constants.srcLinePattern as NSString, $0 as CVarArg) as String) + String.space) - }) - screenshotsString += (String.space + Constants.detailsEndString + String.space) - markdownDescription.append(screenshotsString) - } - */ + // 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") + + // Collapsible extra details (languages, links, screenshots) indented to belong to the list item + let indent = " " + markdownDescription.append("\n" + indent + "
\n") + markdownDescription.append(indent + "More\n") + markdownDescription.append(indent + "

\n\n") + + // Add languages + markdownDescription.append(" **Languages:** \(languages)\n\n") + + // Add download/badge section + 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 and license badges as additional improvements + let starsBadge = "GitHub stars" + let licenseBadge = "License" + badges.append(starsBadge) + 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 badges.isEmpty == false { + markdownDescription.append(" **Links:** \(badges.joined(separator: "   "))\n\n") + } + + // Add official site if available + if !self.officialSite.isEmpty { + markdownDescription.append(" **Website:** [\(self.officialSite)](\(self.officialSite))\n\n") + } + + // Add screenshots with lazy loading to improve page load performance + if self.screenshots.count > 0 { + markdownDescription.append(" **Screenshots:**\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-16.png", label: "C"), + "cpp": .init(fileName: "cpp-16.png", label: "C++"), + "c_sharp": .init(fileName: "csharp-16.png", label: "C#"), + "clojure": .init(fileName: "clojure-16.png", label: "Clojure"), + "coffee_script": .init(fileName: "coffeescript-16.png", label: "CoffeeScript"), + "css": .init(fileName: "css-16.png", label: "CSS"), + "elm": .init(fileName: "elm-16.png", label: "Elm"), + "go": .init(fileName: "golang-16.png", label: "Go"), + "haskell": .init(fileName: "haskell-16.png", label: "Haskell"), + "java": .init(fileName: "java-16.png", label: "Java"), + "javascript": .init(fileName: "javascript-16.png", label: "JavaScript"), + "lua": .init(fileName: "Lua-16.png", label: "Lua"), + "objective_c": .init(fileName: "objective-c-16.png", label: "Objective-C"), + "python": .init(fileName: "python-16.png", label: "Python"), + "ruby": .init(fileName: "ruby-16.png", label: "Ruby"), + "rust": .init(fileName: "rust-16.png", label: "Rust"), + "shell": .init(fileName: "shell-16.png", label: "Shell"), + "swift": .init(fileName: "swift-16.png", label: "Swift"), + "typescript": .init(fileName: "typescript-16.png", label: "TypeScript") + ] + let key = languageKey.lowercased() + if let icon = icons[key] { + return "\(icon.label) icon" + } 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" diff --git a/.github/weekly-digest.yml b/.github/weekly-digest.yml deleted file mode 100644 index 11abe61..0000000 --- a/.github/weekly-digest.yml +++ /dev/null @@ -1,7 +0,0 @@ -# Configuration for weekly-digest - https://github.com/apps/weekly-digest -publishDay: mon -canPublishIssues: true -canPublishPullRequests: true -canPublishContributors: true -canPublishStargazers: true -canPublishCommits: true \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d96d2e8..81dfcbb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,9 +7,8 @@ jobs: generate-readme: runs-on: macos-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - run: swift ./.github/main.swift - - run: chmod +x ./.github/deploy.sh - run: git config user.name "serhii-londar" - run: git config user.email "serhii.londar@gmail.com" - run: git add README.md diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 173b284..83c65aa 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -10,5 +10,5 @@ jobs: - run: gem install awesome_bot - run: gem install bundler - run: gem install danger - - uses: actions/checkout@v3 + - 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 diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..9abee42 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "sweetpad.build.xcodeWorkspacePath": ".github/ReadmeGenerator.xcodeproj/project.xcworkspace" +} \ No newline at end of file diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md index 1d06d77..91de97c 100644 --- a/PULL_REQUEST_TEMPLATE.md +++ b/PULL_REQUEST_TEMPLATE.md @@ -1,13 +1,13 @@ ## 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) @@ -15,8 +15,8 @@ ## Checklist -- [ ] 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). -- [ ] Only one project/change is in this pull request -- [ ] Screenshots(s) added if any -- [ ] Has a commit from less than 2 years ago -- [ ] Has a **clear** README in English +- [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 diff --git a/README.md b/README.md index ea10eb8..8d39f8a 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,35 @@ -[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://vshymanskyy.github.io/StandWithUkraine) +
+ + 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 +

+

- -

- -# Awesome macOS open source applications - -

-Awesome -Join the chat at gitter + Audio • + Backup • + Browser • + Chat • + Crypto • + Database • + Dev • + Editors • + Graphics • + Productivity • + Utilities

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! @@ -19,28 +40,39 @@ To receive all new or popular applications you can join our [telegram channel](h Hey friend! Help me out for a couple of :beers:! Patreon donate button +## 📊 Statistics + +| Metric | Count | +|--------|-------| +| 📱 Total Applications | 638 | +| 📂 Categories | 49 | +| 🔝 Top Languages | Swift: 276 • Objective-C: 133 • Javascript: 112 • C++: 57 • C: 36 | + ## Languages You can see in which language an app is written. Currently there are following languages: -- ![c_icon] - C language. -- ![cpp_icon] - C++ language. -- ![c_sharp_icon] - C# language. -- ![clojure_icon] - Clojure language. -- ![coffee_script_icon] - CoffeeScript language. -- ![css_icon] - CSS language. -- ![go_icon] - Go language. -- ![elm_icon] - Elm language. -- ![haskell_icon] - Haskell language. -- ![javascript_icon] - JavaScript language. -- ![lua_icon] - Lua language. -- ![objective_c_icon] - Objective-C language. -- ![python_icon] - Python language. -- ![ruby_icon] - Ruby language. -- ![rust_icon] - Rust language. -- ![shell_icon] - Shell language. -- ![swift_icon] - Swift language. -- ![typescript_icon] - TypeScript language. +| 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 | ## Contents @@ -94,795 +126,12576 @@ You can see in which language an app is written. Currently there are following l ## Applications -### Audio -- [AUHost](https://github.com/vgorloff/AUHost) - Application which hosts AudioUnits v3 using AVFoundation API. ![swift_icon] -- [Audacity](https://github.com/audacity/audacity) - Free, open source, cross-platform audio software ![c_icon] -- [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. ![swift_icon] -- [AutoMute](https://github.com/yonilevy/automute) - Automatically mute the sound when headphones disconnect / Mac awake from sleep. ![objective_c_icon] -- [Background Music](https://github.com/kyleneideck/BackgroundMusic) - Background Music, a macOS audio utility: automatically pause your music, set individual apps' volumes and record system audio. ![cpp_icon] -- [BlackHole](https://github.com/ExistentialAudio/BlackHole) - BlackHole is a modern macOS virtual audio driver that allows applications to pass audio to other applications with zero additional latency. ![c_icon] -- [CAM](https://github.com/hanayik/CAM) - macOS camera recording using ffmpeg ![javascript_icon] -- [Clementine](https://github.com/clementine-player/Clementine) - Clementine is a modern music player and library organizer for Windows, Linux and macOS. ![cpp_icon] -- [Cog](https://bitbucket.org/losnoco/cog/src) - Cog is an open source audio player for macOS. The basic layout is a single-paned playlist interface with two retractable drawers, one for navigating the user's music folders and another for viewing audio file properties, like bitrate. ![objective_c_icon] -- [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. ![javascript_icon] -- [LocalRadio](https://github.com/dsward2/LocalRadio) - LocalRadio is software for listening to "Software-Defined Radio" on your Mac and mobile devices. ![objective_c_icon] -- [LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding. ![javascript_icon] -- [Lyricism](https://github.com/lyc2345/Lyricism) - macOS app to show you lyric what currently iTunes or Spotify is playing. ![objective_c_icon] ![swift_icon] -- [LyricsX](https://github.com/ddddxxx/LyricsX) - Lyrics for iTunes, Spotify and Vox. ![swift_icon] -- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. ![c_icon] -- [MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys. ![swift_icon] ![objective_c_icon] -- [Mous Player](https://github.com/bsdelf/mous) - Simple yet powerful audio player for BSD/Linux/macOS. ![cpp_icon] -- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. ![swift_icon] -- [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. ![swift_icon] -- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. ![swift_icon] -- [Scope](https://github.com/billthefarmer/audiotools/tree/master/Scope/swift) - Audio Oscilloscope ![swift_icon] -- [ShazamScrobbler](https://github.com/ShazamScrobbler/shazamscrobbler-macos) - Scrobble vinyl, radios, movies to Last.fm. ![objective_c_icon] -- [Sonora](https://github.com/sonoramac/Sonora) - Minimal, beautifully designed music player for macOS. ![objective_c_icon] -- [SpotMenu](https://github.com/kmikiy/SpotMenu) - Spotify and iTunes in your menu bar. ![objective_c_icon] ![swift_icon] -- [SpotSpot](https://github.com/will-stone/SpotSpot) - Spotify mini-player for macOS. ![javascript_icon] -- [Spotify4BigSur](https://github.com/fabiusBile/Spotify4BigSur) - Spotify widget for Notification Center. ![swift_icon] -- [Suohai](https://github.com/Sunnyyoung/Suohai) - Audio input/output source lock for macOS. ![swift_icon] -- [Tickeys](https://github.com/yingDev/Tickeys) - Instant audio feedback for typing. macOS version. ![rust_icon] -- [Tuner](https://github.com/billthefarmer/ctuner) - Musical Instrument Tuner ![swift_icon] -- [[Un]MuteMic](https://github.com/CocoaHeadsBrasil/MuteUnmuteMic) - macOS app to mute & unmute the input volume of your microphone. Perfect for podcasters. ![objective_c_icon] ![c_icon] -- [eqMac2](https://github.com/bitgapp/eqMac) - System-Wide Equalizer for the Mac. ![cpp_icon] -- [fre:ac](https://github.com/enzo1982/freac) - The fre:ac audio converter project. ![cpp_icon] -- [iTunes-Volume-Control](https://github.com/alberti42/iTunes-Volume-Control) - This app allows you to control the iTunes volume using volume up and volume down hotkeys. ![objective_c_icon] -- [jmc](https://github.com/jcm93/jmc) - jmc is new macOS media organizer. ![swift_icon] -- [shairport-sync](https://github.com/mikebrady/shairport-sync) - macOS/Linux/FreeBSD/OpenBSD Airplay audio receiver. ![c_icon] ![cpp_icon] -- [waveSDR](https://github.com/getoffmyhack/waveSDR) - macOS native desktop Software Defined Radio application using the RTL-SDR USB device. ![swift_icon] + +### 🎵 Audio (37) +- [[Un]MuteMic](https://github.com/CocoaHeadsBrasil/MuteUnmuteMic) - macOS app to mute & unmute the input volume of your microphone. Perfect for podcasters. -### Backup -- [BorgBase/Vorta](https://github.com/borgbase) - Simple and Secure Offsite Backups ![python_icon] -- [Mackup](https://github.com/lra/mackup) - Keep your application settings in sync (macOS/Linux). ![python_icon] -- [Syncalicious](https://github.com/zenangst/Syncalicious) - Keeping multiple macOS preferences in sync can be painful, but it shouldn't be. ![swift_icon] -- [UrBackup](https://github.com/uroni/urbackup_backend) - UrBackup is Client/Server network backup for Windows, macOS and Linux. ![cpp_icon] ![c_icon] -- [shallow-backup](https://github.com/alichtman/shallow-backup) - Easily create lightweight documentation of installed applications, dotfiles, and more. ![python_icon] +
+ More +

-### Browser -- [Beaker Browser](https://github.com/beakerbrowser/beaker) - Beaker is an experimental peer-to-peer Web browser. ![javascript_icon] -- [Brave Browser](https://github.com/brave/brave-browser) - Brave browser for Desktop and Laptop computers running Windows, macOS, and Linux. ![javascript_icon] -- [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. ![javascript_icon] ![cpp_icon] ![c_icon] -- [Finicky](https://github.com/johnste/finicky) - Always opens the right browser. ![swift_icon] -- [Firefox](https://hg.mozilla.org/mozilla-central/) - Fast, privacy aware browser from a non-profit. Runs on Windows, macOS and Linux. ![javascript_icon] ![rust_icon] ![cpp_icon] -- [Helium](https://github.com/JadenGeller/Helium) - Floating browser window for macOS. ![objective_c_icon] ![swift_icon] -- [Min Browser](https://github.com/minbrowser/min) - A fast and efficient minimal web browser. ![javascript_icon] -- [Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium. ![javascript_icon] -- [Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper. ![swift_icon] -- [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. ![swift_icon] -- [browserosaurus](https://github.com/will-stone/browserosaurus) - macOS tool that prompts you to choose a browser when opening a link. ![javascript_icon] -- [otter-browser](https://github.com/OtterBrowser/otter-browser) - Otter Browser aims to recreate the best aspects of the classic Opera (12.x) UI using Qt5. ![cpp_icon] -- [seb-mac](https://github.com/SafeExamBrowser/seb-mac) - Safe Exam Browser for macOS and iOS. ![c_icon] + **Languages:** Objective-C icon C icon -### Chat -- [Adium](https://github.com/adium/adium) - Instant messaging application that can connect to XMPP (Jabber), IRC and more. ![c_icon] -- [Beagle IM](https://github.com/tigase/beagle-im) - Powerful XMPP client with support for file transfer, VoIP and end-to-end encryption. ![swift_icon] -- [ChitChat](https://github.com/stonesam92/ChitChat) - Native Mac app wrapper for WhatsApp Web. ![objective_c_icon] -- [Electronic WeChat](https://github.com/geeeeeeeeek/electronic-wechat) - Better WeChat on macOS and Linux. ![javascript_icon] -- [Element](https://github.com/vector-im/element-web) - Element is a collaboration app (currently Electron) for the [Matrix](https://matrix.org/) protocol. ![javascript_icon] -- [Franz](https://github.com/meetfranz/franz) - Franz is messaging application for services like WhatsApp, Slack, Messenger and many more. ![javascript_icon] -- [Google Allo for Desktop](https://github.com/kelyvin/Google-Allo-For-Desktop) - Native macOS & Windows desktop app for Google Allo. ![javascript_icon] -- [GroupMe](https://github.com/dcrousso/GroupMe) - Unofficial GroupMe App. ![javascript_icon] ![css_icon] -- [MessagesHistoryBrowser](https://github.com/glaurent/MessagesHistoryBrowser) - macOS application to comfortably browse and search through your Messages.app history. ![swift_icon] -- [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. ![javascript_icon] -- [Seaglass](https://github.com/neilalexander/seaglass) - A truly native [Matrix](https://matrix.org/blog/home/) client for macOS. ![swift_icon] -- [Signal Desktop](https://github.com/signalapp/Signal-Desktop) - Electron app that links with your Signal Android or Signal iOS app. ![javascript_icon] -- [Telegram](https://github.com/overtake/TelegramSwift) - Source code of Telegram for macOS on Swift. ![swift_icon] -- [Telegram Desktop](https://github.com/telegramdesktop/tdesktop) - Telegram Desktop messaging app. ![cpp_icon] -- [Textual](https://github.com/Codeux-Software/Textual) - Textual is an IRC client for macOS. ![objective_c_icon] -- [Thunderbird](https://hg.mozilla.org/mozilla-central) - Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client. ![cpp_icon] ![javascript_icon] ![rust_icon] -- [Torchat-Mac](https://github.com/javerous/TorChat-Mac) - TorChat for Mac is a macOS native and unofficial port of torchat. ![objective_c_icon] -- [WhatsAppBar](https://github.com/aldychris/WhatsAppBar) - Send WhatsApp message from menu bar. ![swift_icon] -- [Wire Desktop](https://github.com/wireapp/wire-desktop) - Standalone Electron app for the chatapp Wire. ![javascript_icon] + **Links:** Latest Release   GitHub stars   License -### Cryptocurrency -- [Balance Open](https://github.com/balance-io/balance-open) - App for all the world’s currencies. ![swift_icon] -- [CoinBar](https://github.com/adamwaite/CoinBar) - macOS menu bar application for tracking crypto coin prices. ![swift_icon] -- [Copay](https://github.com/bitpay/copay) - A secure bitcoin wallet platform for both desktop and mobile devices. ![typescript_icon] -- [Crypto Bar](https://github.com/geraldoramos/crypto-bar) - macOS menu bar application built with Electron. ![javascript_icon] -- [Float coin](https://github.com/kaunteya/FloatCoin) - Native menu bar app with floating window and support for many Exchanges. ![swift_icon] + **Screenshots:** -### Database -- [Bdash](https://github.com/bdash-app/bdash) - Simple SQL Client for lightweight data analysis. ![javascript_icon] -- [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. ![javascript_icon] -- [DB Browser for SQLite](https://github.com/sqlitebrowser/sqlitebrowser) - SQLite database management GUI. ![cpp_icon] -- [DBeaver](https://github.com/dbeaver/dbeaver) - Universal database tool and SQL client. ![java_icon] -- [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. ![javascript_icon] ![typescript_icon] -- [Medis](https://github.com/luin/medis) - 💻 Medis is a beautiful, easy-to-use Mac database management application for Redis. ![javascript_icon] -- [MongoHub](https://github.com/jeromelebel/MongoHub-Mac) - Add another lightweight Mac Native MongoDB client. ![objective_c_icon] ![c_icon] -- [Postbird](https://github.com/Paxa/postbird) - PostgreSQL GUI client for macOS. ![javascript_icon] -- [Postgres.app](https://github.com/PostgresApp/PostgresApp) - The easiest way to get started with PostgreSQL on the Mac. ![swift_icon] -- [Redis Desktop Manager](https://github.com/uglide/RedisDesktopManager) - Cross-platform open source database management tool for Redis ® ![cpp_icon] -- [Redis.app](https://github.com/jpadilla/redisapp) - The easiest way to get started with Redis on the Mac. ![swift_icon] -- [Robo 3T](https://github.com/Studio3T/robomongo) - Robo 3T (formerly Robomongo) is the free lightweight GUI for MongoDB enthusiasts. ![cpp_icon] -- [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. ![objective_c_icon] -- [Sequel Pro](https://github.com/sequelpro/sequelpro) - MySQL/MariaDB database management for macOS. ![objective_c_icon] -- [mongoDB.app](https://github.com/gcollazo/mongodbapp) - The easiest way to get started with mongoDB on the Mac. ![swift_icon] -- [redis-pro](https://github.com/cmushroom/redis-pro) - Redis management with SwiftUI. ![swift_icon] -- [reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system. ![typescript_icon] ![swift_icon] -- [sqlectron](https://github.com/sqlectron/sqlectron-gui) - A simple and lightweight SQL client desktop/terminal with cross database and platform support. ![typescript_icon] + -### Development -- [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. ![java_icon] -- [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. ![javascript_icon] -- [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. ![swift_icon] ![c_sharp_icon] ![objective_c_icon] -- [GitAhead](https://github.com/gitahead/gitahead/) - A graphical Git client designed to help you understand and manage your source code history. ![cpp_icon] ![c_icon] -- [KiCad](https://gitlab.com/kicad/code/kicad) - A software suite for electronic design automation. ![cpp_icon] ![c_icon] -- [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. ![swift_icon] -- [Pasteboard Viewer](https://github.com/sindresorhus/Pasteboard-Viewer) - Inspect the system pasteboards. ![swift_icon] -- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. ![swift_icon] -- [utmapp](https://github.com/utmapp/) - Virtualization for other operating systems. ![swift_icon] ![objective_c_icon] +

+
-#### Git -- [Cashew](https://github.com/dhennessy/OpenCashew) - Cashew macOS Github Issue Tracker. ![objective_c_icon] ![c_icon] -- [GPM](https://github.com/mtgto/GPM) - macOS application for easily operating GitHub Projects. ![swift_icon] -- [Git Interactive Rebase Tool](https://github.com/MitMaro/git-interactive-rebase-tool) - Full feature terminal based sequence editor for interactive rebase. ![rust_icon] -- [GitAhead](https://github.com/gitahead/gitahead/) - A graphical Git client designed to help you understand and manage your source code history. ![cpp_icon] ![c_icon] -- [GitBlamePR](https://github.com/maoyama/GitBlamePR) - Mac app that shows pull request last modified each line of a file ![swift_icon] -- [GitHub Desktop](https://github.com/desktop/desktop) - Simple collaboration from your desktop. ![typescript_icon] -- [GitSync](https://github.com/eonist/GitSync) - Minimalistic Git client for Mac. ![swift_icon] -- [GitUp](https://github.com/git-up/GitUp) - The Git interface you've been missing all your life has finally arrived. ![objective_c_icon] -- [GitX](https://github.com/gitx/gitx) - Graphical client for the git version control system. ![objective_c_icon] -- [Gitee](https://github.com/Nightonke/Gitee) - Gitee, macOS status bar application for Github. ![objective_c_icon] ![swift_icon] -- [Github contributions](https://github.com/remirobert/Github-contributions) - GitHub contributions app, for iOS, WatchOS, and macOS. ![swift_icon] -- [GithubListener](https://github.com/ad/GithubListener) - Simple app that will notify about new commits to watched repositories. ![swift_icon] -- [GithubNotify](https://github.com/erik/github-notify) - Simple macOS app to alert you when you have unread GitHub notifications. ![swift_icon] -- [Gitify](https://github.com/manosim/gitify) - Your GitHub notifications on your menu bar. ![javascript_icon] -- [Streaker](https://github.com/jamieweavis/streaker) - GitHub contribution streak tracking menubar app. ![javascript_icon] -- [TeamStatus-for-GitHub](https://github.com/marcinreliga/TeamStatus-for-GitHub) - macOS status bar application for tracking code review process within the team. ![swift_icon] -- [Trailer](https://github.com/ptsochantaris/trailer) - Managing Pull Requests and Issues For GitHub & GitHub Enterprise. ![swift_icon] -- [Xit](https://github.com/Uncommon/Xit) - Xit is a graphical tool for working with git repositories. ![swift_icon] -- [osagitfilter](https://github.com/doekman/osagitfilter) - Filter to put OSA languages (AppleScript, JavaScript) into git, as if they where plain text-files. ![shell_icon] ![applescript_icon] +- [Audacity](https://github.com/audacity/audacity) - Free, open source, cross-platform audio software -#### JSON Parsing -- [JSON Mapper](https://github.com/AppCraft-LLC/json-mapper) - Simple macOS app to generate Swift Object Mapper classes from JSON. ![swift_icon] -- [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. ![swift_icon] -- [JSONExport](https://github.com/Ahmed-Ali/JSONExport) - Desktop application for macOS which enables you to export JSON objects as model classes with their associated constructors, utility methods, setters and getters in your favorite language. ![swift_icon] -- [j2s](https://github.com/zadr/j2s) - macOS app to convert JSON objects into Swift structs (currently targets Swift 4 and Codable). ![swift_icon] +
+ More +

-#### Other Development -- [Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers. ![swift_icon] ![javascript_icon] -- [ChefInspector](https://github.com/Yasumoto/ChefInspector) - Node and Attribute viewer for Chef ![swift_icon] -- [MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client. ![javascript_icon] ![typescript_icon] -- [macho-browser](https://github.com/dcsch/macho-browser) - Browser for macOS Mach-O binaries. ![objective_c_icon] -- [vegvisir](https://github.com/ant4g0nist/vegvisir) - Browser based GUI for **LLDB** Debugger. ![javascript_icon] + **Languages:** C icon -#### Web Development -- [CoreOS VM](https://github.com/TheNewNormal/coreos-osx) - CoreOS VM is macOS status bar app which allows in an easy way to control CoreOS VM on your Mac. ![objective_c_icon] -- [Corectl App for macOS](https://github.com/TheNewNormal/corectl.app) - Corectl App is a macOS Status bar App which works like a wrapper around the corectl command line tool corectld to control the server runtime process. ![swift_icon] -- [HTTP Toolkit](https://github.com/httptoolkit/httptoolkit-desktop) - HTTP Toolkit is a cross-platform tool to intercept, debug & mock HTTP. ![typescript_icon] -- [Insomnia](https://github.com/Kong/insomnia) - Insomnia is a cross-platform REST client, built on top of Electron. ![javascript_icon] -- [KubeMonitor](https://github.com/Daniel-Sanche/KubeMonitor) - KubeMonitor is a macOS app that displays information about your active Kubernetes cluster in your menu bar. ![swift_icon] -- [KubeSwitch](https://github.com/nsriram/KubeSwitch) - KubeSwitch lists the available kubernetes cluster contexts on the mac, in Mac's Menu bar. ![swift_icon] -- [Lantern](https://github.com/RoyalIcing/Lantern) - Dedicated Mac app for website auditing and crawling. ![swift_icon] -- [LocalSites](https://github.com/plan44/localSites) - Simple Menu Bar (Status Bar) App for macOS listing local Bonjour websites (as Safari 11 no longer has Bonjour Bookmarks). ![swift_icon] -- [SimpleLocalize CLI](https://github.com/simplelocalize/simplelocalize-cli) - Open source tool for managing i18n keys in software projects. ![swift_icon] -- [aws-s3-uploader](https://github.com/RafalWilinski/s3-uploader) - Simple macOS app for uploading files to Amazon Web Services. ![javascript_icon] -- [iTunesConnect](https://github.com/trulyronak/itunesconnect) - macOS app to let you access iTunesConnect. ![swift_icon] -- [ndm](https://github.com/720kb/ndm) - Npm desktop GUI. ![javascript_icon] -- [nodeScratchpad](https://github.com/vsaravind007/nodeScratchpad) - Evaluate Nodejs/JS code snippets from Menubar. ![swift_icon] -- [stts](https://github.com/inket/stts) - macOS app for monitoring the status of cloud services. ![swift_icon] + **Links:** Latest Release   GitHub stars   License -#### iOS / macOS -- [AVXCAssets Generator](https://github.com/angelvasa/AVXCAssets-Generator) - Takes path for your assets images and creates appiconset and imageset for you in just one click. ![swift_icon] -- [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. ![objective_c_icon] -- [AppIcons](https://github.com/kuyawa/AppIcons) - Tool for generating icons in all sizes as required by macOS and iOS apps. ![swift_icon] -- [AppStoreReviewTimes](https://github.com/arbel03/AppStoreReviewTimes) - Gives you indication about the average iOS / macOS app stores review times. ![swift_icon] -- [AppleTrace](https://github.com/everettjf/AppleTrace) - Trace tool for iOS/macOS. ![objective_c_icon] -- [Asset Catalog Tinkerer](https://github.com/insidegui/AssetCatalogTinkerer) - App that lets you open .car files and browse/extract their images. ![objective_c_icon] ![swift_icon] -- [Assets](https://github.com/e7711bbear/Assets) - Assets is a macOS app that manages assets for your development projects (Xcode, web, etc). ![swift_icon] -- [Attabench](https://github.com/attaswift/Attabench) - Attabench is a microbenchmarking app for macOS, designed to measure and visualize the performance of Swift code. ![swift_icon] -- [Board For GitHub](https://github.com/JustinFincher/BoardForGitHub) - Small application to monitor your GitHub project web page in a native macOS app :octocat:! ![objective_c_icon] -- [Brisk](https://github.com/br1sk/brisk) - macOS app for submitting radars. ![swift_icon] -- [Cleaner for Xcode](https://github.com/waylybaye/XcodeCleaner) - Cleaner for Xcode.app built with react-native-macOS. ![objective_c_icon] -- [CocoaRestClient](https://github.com/mmattozzi/cocoa-rest-client) - Native Apple macOS app for testing HTTP/REST endpoints. ![objective_c_icon] -- [Corona Tracker](https://github.com/MhdHejazi/CoronaTracker) - Coronavirus tracker app for iOS & macOS with maps & charts. ![swift_icon] -- [FilterShop](https://github.com/KrisYu/FilterShop) - macOS App to explore CoreImage Filters. ![swift_icon] -- [IconGenerator](https://github.com/onmyway133/IconGenerator) - macOS app to generate app icons. ![javascript_icon] -- [Iconizer](https://github.com/raphaelhanneken/iconizer) - Create Xcode image catalogs (xcassets) on the fly. ![swift_icon] -- [Iconology](https://github.com/liamrosenfeld/Iconology) - Edit icons and then export to Xcode, icns, ico, favicon, macOS iconset, or a custom collection. ![swift_icon] -- [Icons.app](https://github.com/SAP/macos-icon-generator) - App for macOS which is designed to generate consistent sized icons of an existing application in various states, jiggling (shaking) etc. ![objective_c_icon] -- [InjectionIII](https://github.com/johnno1962/InjectionIII) - overdue Swift rewrite of Injection. ![objective_c_icon] ![swift_icon] -- [Knuff](https://github.com/KnuffApp/Knuff) - The debug application for Apple Push Notification Service (APNs). ![objective_c_icon] -- [LayerX](https://github.com/yuhua-chen/LayerX) - Intuitive app to display transparent images on screen. ![swift_icon] -- [Localizable.strings](https://github.com/cristibaluta/Localizable.strings) - Mac app to localize your iOS and macOS projects. ![swift_icon] -- [Localization Editor](https://github.com/igorkulman/iOSLocalizationEditor) - Simple macOS editor app to help you manage iOS app localizations by allowing you to edit all the translations side by side. ![swift_icon] -- [Localizations](https://github.com/e7711bbear/Localizations) - Localizations is an macOS app that manages your Xcode project localization files (.strings). ![swift_icon] -- [Menubar Colors](https://github.com/nvzqz/Menubar-Colors) - macOS app for convenient access to the system color panel. ![swift_icon] -- [Notarize](https://github.com/macmade/Notarize) - Notarization status monitoring tool for macOS, supporting multiple developer accounts ![swift_icon] -- [PodsUpdater](https://github.com/kizitonwose/PodsUpdater) - macOS app which helps you manage dependency releases in your Podfile. ![swift_icon] -- [ProfilesManager](https://github.com/shaojiankui/ProfilesManager) - Apple iOS/macOS Provisioning Profiles management,.provisionprofile, .mobileprovision files manager tool for mac. ![objective_c_icon] -- [PushNotifications](https://github.com/onmyway133/PushNotifications) - macOS app to test push notifications on iOS and Android. ![javascript_icon] -- [ResignTool](https://github.com/InjoyDeng/ResignTool) - This is an app for macOS that can (re)sign apps and bundle them into ipa files that are ready to be installed on an iOS device. ![objective_c_icon] -- [Resizr](https://github.com/onurgenes/Resizr) - MacOS application for creating AppIcon for iOS and Android apps. ![swift_icon] -- [SmartPush](https://github.com/shaojiankui/SmartPush) - iOS Push Notification Debug App. ![objective_c_icon] -- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. ![swift_icon] -- [TransporterPad](https://github.com/iseebi/TransporterPad) - iOS/Android app deployment tool for macOS. ![swift_icon] -- [WWDC](https://github.com/insidegui/WWDC) - Unofficial WWDC app for macOS. ![swift_icon] -- [WWDC.srt](https://github.com/ssamadgh/WWDCsrt) - Powerful app for downloading subtitle for each WWDC session video since 2013 in (srt) format. ![swift_icon] -- [Xcodes.app](https://github.com/RobotsAndPencils/XcodesApp) - The easiest way to install and switch between multiple versions of Xcode. ![swift_icon] -- [calabash-launcher](https://github.com/xing/calabash-launcher) - iOS Calabash Launcher is a macOS app that helps you run and manage Calabash tests on your Mac. ![swift_icon] -- [iOS Images Extractor](https://github.com/devcxm/iOS-Images-Extractor) - iOS Images Extractor is a Mac app to normalize, decode, and extract images from iOS apps. ![objective_c_icon] -- [iSimulator](https://github.com/wigl/iSimulator) - iSimulator is a GUI utility to control the Simulator and manage the app installed on the simulator. ![objective_c_icon] -- [xib2Storyboard](https://github.com/novemberfiveco/xib2Storyboard) - Tool to convert Xcode .xib to .storyboard files. ![objective_c_icon] + **Website:** [https://www.audacityteam.org/](https://www.audacityteam.org/) -### Downloader -- [App Downloader](https://github.com/yep/app-downloader) - Easily search and download macOS apps from the huge `homebrew cask` app catalog. ![swift_icon] -- [Extream Download Manager](https://github.com/subhra74/xdm) - a powerful tool to increase download speeds up to 500% ![java_icon] -- [Get It](https://github.com/Kevin-De-Koninck/Get-It) - Native macOS video/audio downloader. Think of it as a youtube downloader that works on many sites. ![swift_icon] -- [Motrix](https://github.com/agalwood/Motrix) - A full-featured download manager. ![javascript_icon] -- [Pillager](https://github.com/Pjirlip/Pillager) - macOS Video Downloader written in Swift and Objective-C. ![objective_c_icon] ![swift_icon] -- [YouTube Downloader for macOS](https://github.com/DenBeke/YouTube-Downloader-for-macOS) - Simple menu bar app to download YouTube movies on your Mac. I wrote this as a test project to learn more about app development on macOS. ![swift_icon] -- [udemy-downloader-gui](https://github.com/FaisalUmair/udemy-downloader-gui) - desktop application for downloading Udemy Courses. ![javascript_icon] + **Screenshots:** -### Editors -- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. ![swift_icon] -- [Chime](https://github.com/ChimeHQ/Chime) - An editor for macOS ![swift_icon] -- [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. ![swift_icon] -- [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. ![c_icon] ![c++_icon] + -#### CSV -- [TableTool](https://github.com/jakob/TableTool) - simple CSV editor for the macOS. ![objective_c_icon] +

+
-#### JSON -- [JSON Editor](https://github.com/fand/json-editor-app) - Dead simple JSON editor using josdejong/jsoneditor ![typescript_icon] -- [JSON-Splora](https://github.com/wellsjo/JSON-Splora) - GUI for editing, visualizing, and manipulating JSON data. ![javascript_icon] +- [AUHost](https://github.com/vgorloff/AUHost) - Application which hosts AudioUnits v3 using AVFoundation API. -#### Markdown -- [Gingko](https://github.com/gingko/client) - Tree-structured markdown editor for macOS, Windows, and Linux. ![elm_icon] -- [MacDown](https://github.com/MacDownApp/macdown) - Markdown editor for macOS. ![objective_c_icon] -- [Mark Text](https://github.com/marktext/marktext/) - Realtime preview markdown editor for macOS Windows and Linux. ![javascript_icon] -- [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. ![swift_icon] ![typescript_icon] -- [Notenik](https://github.com/hbowie/notenik-swift) - Note-taking app with many organizational options. ![swift_icon] -- [Obsidian plugins & themes](https://github.com/obsidianmd/obsidian-releases) - Community plugins list, theme list, and releases of Obsidian. ![javascript_icon] -- [Pine](https://github.com/lukakerr/Pine) - A modern MacOS markdown editor. ![swift_icon] -- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. ![cpp_icon] -- [Zettlr](https://github.com/Zettlr/Zettlr) - A Markdown Editor for the 21st century. ![javascript_icon] ![typescript_icon] -- [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. ![javascript_icon] ![vue_icon] ![css_icon] +
+ More +

-#### TeX -- [Qilin Editor](https://github.com/qilin-editor/qilin-app) - Text editor for exact sciences with built-in KaTeX/AsciiMath support. ![javascript_icon] + **Languages:** Swift icon -#### Text -- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. ![swift_icon] -- [CotEditor](https://github.com/coteditor/CotEditor) - Lightweight Plain-Text Editor for macOS. ![swift_icon] -- [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. ![c_icon] ![c++_icon] -- [MacVim](https://github.com/macvim-dev/macvim) - Text editor for macOS. ![c_icon] -- [Noto](https://github.com/brunophilipe/noto) - Plain text editor for macOS with customizable themes. ![swift_icon] -- [SubEthaEdit](https://github.com/subethaedit/SubEthaEdit) - General purpose plain text editor for macOS. Widely known for its live collaboration feature. ![objective_c_icon] -- [TextMate](https://github.com/textmate/textmate) - TextMate is a graphical text editor for macOS. ![objective_c_icon] -- [Tincta](https://github.com/CodingFriends/Tincta) - One-window text editor with syntax highlighting. ![objective_c_icon] -- [VimR](https://github.com/qvacua/vimr) - Refined Neovim experience for macOS. ![swift_icon] -- [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. ![go_icon] -- [reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system. ![typescript_icon] ![swift_icon] + **Links:** Latest Release   GitHub stars   License -### Extensions -- [AdGuard for Safari](https://github.com/adguardteam/adguardforsafari) - The most advanced ad blocking extension for Safari ![javascript_icon] -- [BetterPiP](https://github.com/Capevace/BetterPiP) - Use native picture-in-picture with browsers such as Google Chrome for HTML5 videos. ![swift_icon] -- [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. ![swift_icon] -- [Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse ![c_icon] -- [PageExtender](https://github.com/fphilipe/PageExtender.app) - Extend pages with your own CSS and JS files. ![swift_icon] ![javascript_icon] -- [PiPTool](https://github.com/bfmatei/PiPTool) - Add the Picture-in-Picture Functionality to YouTube, Netflix, Plex and other video broadcasting services in macOS. ![javascript_icon] -- [PiPifier](https://github.com/arnoappenzeller/PiPifier) - PiPifier is a native macOS 10.12 Safari extension that lets you use every HTML5 video in Picture in Picture mode. ![swift_icon] -- [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. ![swift_icon] -- [Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions ![swift_icon] -- [Swimat](https://github.com/Jintin/Swimat) - Swimat is an Xcode plug-in to format your Swift code. ![swift_icon] -- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' ![swift_icon] -- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari ![swift_icon] -- [nef](https://github.com/bow-swift/nef-plugin) - This Xcode extension enables you to make a code selection and export it to a snippets. Available on Mac AppStore. ![swift_icon] + **Screenshots:** -### Finder -- [Clipy](https://github.com/Clipy/Clipy) - Clipy is a Clipboard extension app for macOS. ![swift_icon] -- [CopyQ](https://github.com/hluk/CopyQ) - Clipboard manager with advanced features ![cpp_icon] -- [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. ![swift_icon] -- [FiScript](https://github.com/Mortennn/FiScript) - Execute custom scripts from the MacOS context menu (CTRL+click) in Finder. ![swift_icon] -- [Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder. ![swift_icon] -- [OpenInCode](https://github.com/sozercan/OpenInCode) - Finder toolbar app to open current folder in Visual Studio Code. ![objective_c_icon] -- [OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - Finder Toolbar app for macOS to open the current directory in Terminal, iTerm, Hyper or Alacritty. ![swift_icon] -- [Quick Look plugins](https://github.com/sindresorhus/quick-look-plugins) - List of useful Quick Look plugins for developers. ![objective_c_icon] ![c_icon] -- [cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal ![objective_c_icon] -- [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. ![objective_c_icon] -- [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. ![rust_icon] + -### Games -- [0 A.D.](https://svn.wildfiregames.com/public/ps/trunk/) - Real-time strategy game of ancient warfare ![cpp_icon] -- [Battle for Wesnoth](https://github.com/wesnoth/wesnoth) - Turn-based tactical strategy game, featuring both single-player and online multiplayer combat. ![cpp_icon] -- [Boxer](https://github.com/alunbestor/Boxer) - The DOS game emulator that’s fit for your Mac. ![cpp_icon] ![objective_c_icon] -- [Chess](https://opensource.apple.com/source/Chess/Chess-410.4.1/) - The chess app that comes with macOS. ![objective-c_icon] -- [Dolphin](https://github.com/dolphin-emu/dolphin) - Powerful emulator for Nintendo GameCube and Wii games. ![cpp_icon] -- [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. ![swift_icon] -- [OpenEmu](https://github.com/OpenEmu/OpenEmu) - Retro video game emulation for macOS. ![objective_c_icon] -- [OpenRCT2](https://github.com/OpenRCT2/OpenRCT2) - Re-implementation of RollerCoaster Tycoon 2. ![cpp_icon] -- [Screentendo](https://github.com/AaronRandall/Screentendo) - Turn your screen into a playable level of Mario. ![objective_c_icon] -- [Stockfish](https://github.com/daylen/stockfish-mac) - Beautiful, powerful chess application. ![cpp_icon] ![objective_c_icon] -- [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. ![c++_icon] ![python_icon] ![lua_icon] ![javascript_icon] +

+
-### Graphics -- [Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux). ![cpp_icon] ![c_icon] -- [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. ![c_icon] ![cpp_icon] ![python_icon] -- [CaptuocrToy](https://github.com/sfragrance/CaptuocrToy) - Tool to capture screenshot and recognize text by online ocr apis. ![swift_icon] -- [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. ![swift_icon] ![c_sharp_icon] ![objective_c_icon] -- [FreeCAD](https://github.com/FreeCAD/FreeCAD) - FreeCAD is an open-source 3D parametric modeler ![c++_icon] ![python_icon] -- [Gaphor](https://github.com/gaphor/gaphor) - Gaphor is the simple modeling tool for UML and SysML. ![python_icon] -- [GifCapture](https://github.com/onmyway133/GifCapture) - Gif capture app for macOS. ![swift_icon] -- [Gifcurry](https://github.com/lettier/gifcurry) - Video to GIF maker with a graphical interface capable of cropping, adding text, seeking, and trimming. ![haskell_icon] -- [Gifski](https://github.com/sindresorhus/Gifski) - Convert videos to high-quality GIFs. ![swift_icon] -- [InfiniteCanvas](https://github.com/CleanCocoa/InfiniteCanvas) - Proof of concept Mac drawing application. ![swift_icon] -- [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. ![cpp_icon] ![python_icon] ![c_icon] -- [Material Colors Native](https://github.com/BafS/Material-Colors-native) - Choose your Material colours and copy the hex code. ![objective_c_icon] -- [Pencil2D Animation](https://github.com/pencil2d/pencil) - Pencil2D is an animation/drawing software for macOS, Windows, and Linux. It lets you create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics. ![cpp_icon] -- [ScreenToLayers for macOS](https://github.com/duyquoc/ScreenToLayers) - ScreenToLayers is a macOS application to easily capture your screen as a layered PSD file. ![objective_c_icon] ![css_icon] -- [macSVG](https://github.com/dsward2/macSVG) - macOS application for designing HTML5 SVG (Scalable Vector Graphics) art and animation with a WebKit web view. ![objective_c_icon] +- [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. -### IDE -- [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. ![java_icon] -- [Atom](https://github.com/atom/atom) - The hackable text editor. ![javascript_icon] -- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. ![swift_icon] -- [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. ![javascript_icon] -- [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. ![swift_icon] -- [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. ![c_icon] ![c++_icon] -- [IntelliJ IDEA Community Edition](https://github.com/JetBrains/intellij-community) - IntelliJ IDEA is an integrated development environment written in Java for developing computer software ![java_icon] -- [LiveCode](https://github.com/livecode/livecode) - Cross-platform development IDE. ![c_icon] -- [Oni](https://github.com/onivim/oni) - Oni is a modern take on modal editing code editor focused on developer productivity. ![javascript_icon] ![typescript_icon] -- [Vim](https://github.com/vim/vim) - ubiquitous text editor ![C_icon] ![Vim script_icon] -- [Visual Studio Code](https://github.com/Microsoft/vscode) - Code editor developed by Microsoft. ![typescript_icon] -- [ZeroBraneStudio](https://github.com/pkulchenko/ZeroBraneStudio) - ZeroBrane Studio is a lightweight cross-platform Lua IDE with code completion, syntax highlighting, remote debugger, code analyzer, live coding, and debugging support for various Lua engines. ![lua_icon] +
+ More +

-### Images -- [APNGb](https://github.com/shgodoroja/APNGb) - macOS app which assembles and disassembles animated png files. ![swift_icon] -- [Crunch](https://github.com/chrissimpkins/Crunch) - Insane(ly slow but wicked good) PNG image optimization. ![python_icon] -- [ExifCleaner](https://github.com/szTheory/exifcleaner) - Remove image metadata with drag and drop, multi-core batch processing, and dark mode. ![javascript_icon] -- [Flameshot](https://github.com/flameshot-org/flameshot) - Powerful yet simple to use screenshot software. ![cpp_icon] -- [Freehand](https://github.com/wddwycc/Freehand) - macOS Status Bar App for quick sketch. ![swift_icon] -- [Gimp](https://github.com/GNOME/gimp) - Gimp is GNU Image Manipulation Program. ![c_icon] -- [Iconology](https://github.com/liamrosenfeld/Iconology) - Edit icons and then export to Xcode, icns, ico, favicon, macOS iconset, or a custom collection. ![swift_icon] -- [ImageAlpha](https://github.com/kornelski/ImageAlpha) - Mac GUI for pngquant, pngnq and posterizer. ![objective_c_icon] ![python_icon] -- [Imagine](https://github.com/meowtec/Imagine) - Imagine is a desktop app for compression of PNG and JPEG, with a modern and friendly UI. ![typescript_icon] -- [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software ![python_icon] -- [Inkscape](https://gitlab.com/inkscape/inkscape) - Inkscape is a Free and open source vector graphics editor. ![c++_icon] -- [Katana](https://github.com/bluegill/katana) - Katana is a simple screenshot utility for macOS that lives in your menubar. ![javascript_icon] ![css_icon] -- [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. ![cpp_icon] ![python_icon] ![c_icon] -- [PhotoMiner](https://github.com/gergelysanta/photominer) - macOS app for finding and lost forgotten photos on your disks. ![swift_icon] -- [Screenbar](https://github.com/crilleengvall/Screenbar) - macOS menubar app for automating screenshots. ![swift_icon] -- [Seashore](https://github.com/robaho/seashore) - Easy to use macOS image editing application for the rest of us. ![objective_c_icon] -- [WebPonize](https://github.com/1000ch/WebPonize) - WebPonize is a macOS App for converting PNG, JPEG, animated (or not) GIF images into WebP. ![swift_icon] ![c_icon] + **Languages:** Swift icon -### Keyboard -- [AnnePro-mac](https://github.com/msvisser/AnnePro-mac) - macOS application for controlling AnnePro keyboard over bluetooth. ![swift_icon] -- [Fluor](https://github.com/Pyroh/Fluor) - Handy tool for macOS allowing you to switch Fn keys' mode based on active application. ![swift_icon] -- [GokuRakuJoudo](https://github.com/yqrashawn/GokuRakuJoudo) - Karabiner-Elements configuration manager, rescue to bloated karabiner.json ![clojure_icon] -- [Karabiner](https://github.com/tekezo/Karabiner) - Karabiner (KeyRemap4MacBook) is a powerful utility for keyboard customization. ![cpp_icon] ![objective_c_icon] -- [Karabiner-Elements](https://github.com/pqrs-org/Karabiner-Elements) - Karabiner-Elements is a powerful utility for keyboard customization on macOS Sierra (10.12) or later. ![cpp_icon] ![objective_c_icon] -- [Kawa](https://github.com/hatashiro/kawa) - Better input source switcher for macOS. ![swift_icon] -- [Keycastr](https://github.com/keycastr/keycastr) - Keystroke visualizer. ![Objective-C_icon] -- [Thor](https://github.com/gbammc/Thor) - Switch the right application ASAP. ![swift_icon] -- [Unshaky](https://github.com/aahung/Unshaky) - A software attempt to address the "double key press" issue on Apple's butterfly keyboard ![swift_icon] + **Links:** Latest Release   GitHub stars   License -### Mail -- [Correo](https://github.com/amitmerchant1990/correo) - Menubar/taskbar Gmail App for Windows and macOS. ![javascript_icon] -- [ElectronMail](https://github.com/vladimiry/ElectronMail) - Unofficial desktop app for ProtonMail and Tutanota end-to-end encrypted email providers. ![typescript_icon] -- [Mailspring](https://github.com/Foundry376/Mailspring) - 💌 A beautiful, fast and maintained fork of @nylas Mail by one of the original authors ![javascript_icon] -- [Rambox](https://github.com/ramboxapp/community-edition) - Cross Platform messaging and emailing app that combines common web applications into one. ![javascript_icon] ![css_icon] -- [SimpleLogin](https://github.com/simple-login/mac-app) - Email Alias solution: protect your real email address. ![swift_icon] -- [Thunderbird](https://hg.mozilla.org/mozilla-central) - Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client. ![cpp_icon] ![javascript_icon] ![rust_icon] -- [dejalu](https://github.com/dinhvh/dejalu) - Fast and Simple Email Client. ![cpp_icon] ![objective_c_icon] + **Screenshots:** -### Medical -- [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software ![python_icon] + -### Menubar -- [Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks. ![javascript_icon] -- [Akku](https://github.com/jariz/Akku) - The missing macOS bluetooth headset battery indicator app. ![swift_icon] ![python_icon] ![ruby_icon] -- [AnyBar](https://github.com/tonsky/AnyBar) - macOS menubar status indicator. ![objective_c_icon] -- [BarTranslate](https://github.com/ThijmenDam/BarTranslate) - A handy menu bar translator app that supports DeepL and Google Translate. ![typescript_icon] -- [CloudyTabs](https://github.com/josh-/CloudyTabs) - Simple menu bar macOS application for displaying lists of your iCloud Tabs and Reading List. ![objective_c_icon] -- [DatWeatherDoe](https://github.com/inderdhir/DatWeatherDoe) - Simple menu bar weather app for macOS written in Swift. ![swift_icon] -- [DisplayMenu](https://github.com/Kwpolska/DisplayMenu) - Simple (bare-bones) macOS menubar extra to apply display presets. ![swift_icon] -- [Dozer](https://github.com/Mortennn/Dozer) - Hide MacOS menubar items. ![swift_icon] -- [Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Manage grayscale mode from menu bar. ![swift_icon] -- [Hidden Bar](https://github.com/dwarvesf/hidden) - An ultra-light MacOS utility that helps hide menu bar icons ![swift_icon] -- [Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar. ![objective_c_icon] -- [KubeContext](https://github.com/turkenh/KubeContext) - import, manage and switch between your Kubernetes contexts on Mac. ![swift_icon] -- [LinkLiar](https://github.com/halo/LinkLiar) - Keep your MAC address random for privacy (intuitive GUI for ifconfig) ![swift_icon] -- [Market Bar](https://github.com/mnndnl/market-bar ) - Tiny stocks watcher for the menu bar. ![swift_icon] -- [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings ![swift_icon] -- [MenuMeters](https://github.com/yujitach/MenuMeters) - CPU, memory, disk, and network monitoring tools for macOS. ![objective_c_icon] -- [Menubar Brightness](https://github.com/lucasbento/menubar-brightness) - macOS app to change the screen brightness on the menubar. ![javascript_icon] -- [MiniSim](https://github.com/okwasniewski/MiniSim) - MacOS menu bar app for launching iOS  and Android 🤖 emulators. ![swift_icon] -- [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. ![Swift_icon] -- [Night Shift Control](https://github.com/isaiasmatewos/night-shift-control) - Night Shift Control is a simple macOS menubar app for controlling Night Shift. It's aim is to bring features from f.lux which are missing from Night Shift such as disabling Night Shift for certain apps. ![swift_icon] -- [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. ![swift_icon] -- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. ![swift_icon] -- [PSIBar](https://github.com/nikhilsh/PSIBar) - Quickly hacked up PSI macOS status bar app. ![swift_icon] -- [Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene. ![swift_icon] -- [Pi Stats](https://github.com/Bunn/PiStats) - macOS app to visualize Pi-hole information. ![swift_icon] ![objective_c_icon] -- [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. ![swift_icon] ![metal_icon] -- [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. ![swift_icon] -- [Quickeys](https://github.com/alexrosenfeld10/Quickeys) - A mac menu bar app that provides note taking functionality though a quick dropdown menu. ![swift_icon] -- [SensibleSideButtons](https://github.com/archagon/sensible-side-buttons) - Small menu bar utility that lets you use your third-party mouse's side buttons for navigation across a variety of apps. ![objective_c_icon] ![c_icon] -- [Shifty](https://github.com/thompsonate/Shifty) - macOS menu bar app that gives you more control over Night Shift. ![swift_icon] -- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. ![swift_icon] -- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar ![swift_icon] -- [SwiftBar](https://github.com/swiftbar/SwiftBar) - Powerful macOS menu bar customization tool. ![swift_icon] -- [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. ![objective_c_icon] -- [eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI. ![swift_icon] -- [gSwitch](https://github.com/CodySchrank/gSwitch) - macOS status bar app that allows control over the gpu on dual gpu macbooks. ![swift_icon] -- [iGlance](https://github.com/iglance/iGlance) - macOS System Monitor (cpu, memory, network, fan and battery) for the Status Bar. ![swift_icon] -- [xbar](https://github.com/matryer/xbar) - Put the output from any script or program into your macOS Menu Bar. ![objective_c_icon] + -### Music -- [Carol](https://github.com/AnaghSharma/Carol) - A minimal and beautiful lyrics app that stays in the menu bar of macOS. ![c_sharp_icon] -- [ChordDetector](https://github.com/cemolcay/ChordDetector) - Tiny menu bar app that listens iTunes and Spotify to detect chords of songs! ![swift_icon] -- [DeezPlayer](https://github.com/imanel/deezplayer) - Deezer Desktop app for Windows, Linux and macOS. ![coffee_script_icon] -- [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. ![javascript_icon] -- [Lilypond UI](https://github.com/doches/lilypond-ui) - Create beautiful musical scores with LilyPond. ![javascript_icon] -- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. ![c_icon] -- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. ![swift_icon] -- [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. ![swift_icon] -- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. ![swift_icon] -- [SoundCleod](https://github.com/salomvary/soundcleod) - SoundCloud for macOS and Windows. ![javascript_icon] -- [Spotify-Cli-Mac](https://github.com/ersel/spotify-cli-mac) - Control Spotify without leaving your terminal. :notes: ![javascript_icon] -- [YouTube-Music](https://github.com/steve228uk/YouTube-Music) - macOS wrapper for music.youtube.com. ![swift_icon] -- [iTunes Graphs](https://github.com/Zac-Garby/iTunes-Graphs) - macOS app to visualise your iTunes library as graphs. ![swift_icon] -- [lyricsify](https://github.com/mamal72/lyricsify-mac) - Simple Spotify lyrics viewer menu bar app for macOS in Swift. ![swift_icon] -- [spicetify-cli](https://github.com/spicetify/spicetify-cli) - Command-line tool to customize the official Spotify client. Supports Windows, MacOS and Linux. ![javascript_icon] + -### News -- [Diurna](https://github.com/ngquerol/Diurna) - Basic/Classic Hacker News app, used as a Cocoa & Swift learning platform. ![swift_icon] -- [NetNewsWire](https://github.com/Ranchero-Software/NetNewsWire) - Feed reader for macOS. ![swift_icon] -- [Vienna](https://github.com/ViennaRSS/vienna-rss) - Vienna is a RSS/Atom newsreader for macOS. ![objective_c_icon] -- [Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io ![javascript_icon] -- [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. ![objective_c_icon] -- [hacker-menu](https://github.com/owenthereal/hacker-menu) - Hacker News Delivered to Desktop. ![javascript_icon] + *(5 more screenshots available in the repository)* -### Notes -- [Boostnote](https://github.com/BoostIO/BoostNote-Legacy) - Note-taking application made for programmers just like you. ![javascript_icon] -- [Dnote](https://github.com/dnote/dnote) - A simple command line notebook with multi-device sync and web interface. ![go_icon] ![typescript_icon] -- [FSNotes](https://github.com/glushchenko/fsnotes) - Notes manager for macOS/iOS: modern notational velocity (nvALT) on steroids. ![swift_icon] -- [FromScratch](https://github.com/Kilian/fromscratch) - Little app that you can use as a quick note taking or todo app. ![javascript_icon] ![css_icon] -- [Jupyter Notebook Viewer](https://github.com/tuxu/nbviewer-app) - Notebook viewer for macOS. ![swift_icon] -- [NoteTaker](https://github.com/insidegui/NoteTaker) - Simple note taking app for macOS and iOS which uses Realm and CloudKit for syncing. ![swift_icon] -- [Notenik](https://github.com/hbowie/notenik-swift) - Note-taking app with many organizational options. ![swift_icon] -- [Notes](https://github.com/SauvageP/Notes) - Notes is a macOS application built to create notes, using text amongst other formats: images, videos, contacts, and etc. ![swift_icon] -- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. ![cpp_icon] -- [Simplenote](https://github.com/Automattic/simplenote-macos) - Simplest way to keep notes. ![objective_c_icon] -- [Standard Notes](https://github.com/standardnotes/app) - Safe place for your notes, thoughts, and life's work. ![javascript_icon] ![css_icon] -- [Tusk](https://github.com/klaudiosinani/tusk) - Unofficial, third-party, community driven Evernote app with a handful of useful features. ![javascript_icon] ![css_icon] -- [joplin](https://github.com/laurent22/joplin) - Note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS. ![javascript_icon] -- [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. ![javascript_icon] ![vue_icon] ![css_icon] -- [notable](https://github.com/jmcfarlane/notable) - Simple note taking application. ![javascript_icon] -- [tmpNote](https://github.com/buddax2/tmpNote) - Very simple macOS app to make temporary notes. ![swift_icon] +

+
-### Other -- [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. ![javascript_icon] -- [Cakebrew](https://github.com/brunophilipe/Cakebrew) - Manage your Homebrew formulas with style using Cakebrew. ![objective_c_icon] -- [ChipMunk](https://github.com/esrlabs/chipmunk) - Log analysis tool. ![typescript_icon] ![rust_icon] -- [DevDocs for macOS](https://github.com/dteoh/devdocs-macos) - An unofficial DevDocs API documentation viewer. ![swift_icon] -- [Gas Mask](https://github.com/2ndalpha/gasmask) - Hosts file manager for macOS. ![objective_c_icon] -- [Hosts](https://github.com/specialunderwear/Hosts.prefpane) - Cocoa GUI for /etc/hosts. ![objective_c_icon] -- [ImageOptim](https://github.com/ImageOptim/ImageOptim) - GUI image optimizer for Mac. ![objective_c_icon] -- [Keyframes Player](https://github.com/insidegui/KeyframesPlayer) - Simple macOS app to preview animations created with Facebook's keyframes framework. ![swift_icon] -- [Lepton](https://github.com/hackjutsu/Lepton) - Democratizing Code Snippets Management (macOS/Win/Linux). ![javascript_icon] -- [Letters](https://github.com/klaaspieter/letters) - Teach your kids the alphabet and how to type. ![swift_icon] -- [Platypus](https://github.com/sveinbjornt/Platypus) - Mac developer tool that creates application bundles from command line scripts. ![objective_c_icon] -- [QorumLogs](https://github.com/Esqarrouth/QorumLogs) - Swift Logging Utility for Xcode & Google Docs. ![swift_icon] -- [React Native Debugger](https://github.com/jhen0409/react-native-debugger) - Desktop app for inspecting your React Native projects. macOS, Linux, and Windows. ![javascript_icon] -- [Reactotron](https://github.com/infinitered/reactotron) - Desktop app for inspecting your React JS and React Native projects. macOS, Linux, and Windows. ![javascript_icon] -- [RktMachine](https://github.com/woofwoofinc/rktmachine) - Menu bar macOS app for running rkt in a macOS hypervisor CoreOS VM. ![swift_icon] -- [Ruby.app](https://github.com/gosu/ruby-app) - macOS app that contains a full Ruby installation (for use with Ruby/Gosu). ![ruby_icon] -- [Shuttle](https://github.com/fitztrev/shuttle) - Simple SSH shortcut menu for macOS. ![objective_c_icon] -- [SwiftyBeaver](https://github.com/SwiftyBeaver/SwiftyBeaver) - Convenient logging during development & release in Swift. ![swift_icon] -- [Unused](https://github.com/jeffhodnett/Unused) - Mac app for checking Xcode projects for unused resources. ![objective_c_icon] -- [Vagrant Manager](https://github.com/lanayotech/vagrant-manager) - Manage your vagrant machines in one place with Vagrant Manager for macOS. ![objective_c_icon] -- [macGist](https://github.com/Bunn/macGist) - Simple app to send pasteboard items to GitHub's Gist. ![swift_icon] -- [syncthing-macosx](https://github.com/syncthing/syncthing-macos) - Frugal nativemacOS macOS Syncthing application bundle. ![objective_c_icon] +- [AutoMute](https://github.com/yonilevy/automute) - Automatically mute the sound when headphones disconnect / Mac awake from sleep. -### Player -- [IINA](https://github.com/iina/iina) - The modern video player for macOS. ![swift_icon] -- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. ![c_icon] -- [MPlayerX](https://github.com/niltsh/MPlayerX) - Media player on macOS. ![objective_c_icon] -- [MacMorpheus](https://github.com/emoRaivis/MacMorpheus) - 3D 180/360 video player for macOS for PSVR with head tracking. ![objective_c_icon] -- [Movie Monad](https://github.com/lettier/movie-monad) - Desktop video player built with Haskell that uses GStreamer and GTK+. ![haskell_icon] -- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. ![swift_icon] +
+ More +

-### Podcast -- [Cumulonimbus](https://github.com/z-------------/CPod) - Simple, beautiful podcast app. ![javascript_icon] -- [Doughnut](https://github.com/dyerc/Doughnut) - Podcast player and library for mac ![swift_icon] -- [PodcastMenu](https://github.com/insidegui/PodcastMenu) - PodcastMenu is a simple app which puts [Overcast](https://overcast.fm/) on your Mac's menu bar so you can listen to your favorite podcasts while you work. ![swift_icon] -- [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). ![objective_c_icon] -- [Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io ![javascript_icon] -- [gPodder](https://github.com/gpodder/gpodder) - gPodder is a simple, open source podcast client. ![python_icon] -- [mkchromecast](https://github.com/muammar/mkchromecast) - Cast macOS and Linux Audio/Video to your Google Cast and Sonos Devices. ![python_icon] + **Languages:** Objective-C icon -### Productivity -- [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app. ![javascript_icon] ![css_icon] -- [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. ![swift_icon] -- [Cerebro](https://github.com/cerebroapp/cerebro) - Cross-platform launcher app. ![javascript_icon] -- [ClipMenu](https://github.com/naotaka/ClipMenu) - Clipboard manager for macOS. ![objective_c_icon] -- [Clocker](https://github.com/n0shake/Clocker) - macOS app to plan and organize through timezones. ![objective_c_icon] -- [Condution](https://github.com/Shabang-Systems/Condution) - Create tasks, manage due dates, and filter with powerful perspectives. ![javascript_icon] -- [ControlPlane](https://github.com/dustinrue/ControlPlane) - Automate running tasks based on where you are or what you do. ![objective_c_icon] -- [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... ![swift_icon] -- [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. ![javascript_icon] -- [Flycut](https://github.com/TermiT/flycut) - Clean and simple clipboard manager for developers. ![objective_c_icon] -- [Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar. ![objective_c_icon] -- [KeyHolder](https://github.com/Clipy/KeyHolder) - Record shortcuts in macOS, like Alfred.app. ![swift_icon] -- [Kiwix](https://github.com/kiwix/apple) - Kiwix for iOS and macOS, build on Swift. ![swift_icon] -- [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. ![swift_icon] -- [Linked Ideas](https://github.com/fespinoza/LinkedIdeas) - macOS application to write down and connect ideas. ![swift_icon] -- [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! ![python_icon] -- [Maccy](https://github.com/p0deje/Maccy) - Lightweight search-as-you-type clipboard manager. ![swift_icon] -- [Manta](https://github.com/hql287/Manta) - Flexible invoicing desktop app with beautiful & customizable templates. ![javascript_icon] -- [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings ![swift_icon] -- [Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse ![c_icon] -- [PDF Archiver](https://github.com/PDF-Archiver/PDF-Archiver) - Nice tool for tagging and archiving tasks. ![swift_icon] -- [Paperless Desktop](https://github.com/thomasbrueggemann/paperless-desktop) - Desktop app that uses the paperless API to manage your document scans. ![javascript_icon] -- [Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium. ![javascript_icon] -- [Pomodoro Cycle](https://github.com/ziulev/pomodoro-cycle-app) - Pomodoro Cycle for macOS ![typescript_icon] -- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. ![cpp_icon] -- [Quicksilver](https://github.com/quicksilver/Quicksilver) - Quicksilver is a fast macOS productivity application that gives you the power to control your Mac quickly and elegantly. ![objective_c_icon] -- [Quickwords](https://github.com/quickwords/quickwords) - Write anything in a matter of seconds. Create snippets that can substitute text, execute tedious tasks and more. ![javascript_icon] ![css_icon] -- [SelfControl](https://github.com/SelfControlApp/selfcontrol) - macOS app to block your own access to distracting websites etc for a predetermined period of time. It can not be undone by the app or by a restart – you must wait for the timer to run out. ![objective_c_icon] -- [Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions ![swift_icon] -- [Speed Reader](https://github.com/LumingYin/SpeedReader) - Read faster with the power of silencing vocalization with SpeedReader. ![swift_icon] -- [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. ![typescript_icon] ![swift_icon] -- [StickyNotes](https://github.com/LumingYin/StickyNotes) - A Windows 10-esque Sticky Notes app implemented in AppKit. ![swift_icon] -- [Strategr](https://github.com/khrykin/StrategrDesktop) - No-fuss time management. ![cpp_icon] ![objective_c_icon] -- [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. ![typescript_icon] ![javascript_icon] -- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' ![swift_icon] -- [Thyme](https://github.com/joaomoreno/thyme) - The task timer for OS X. ![objective_c_icon] -- [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. ![javascript_icon] ![css_icon] ![html_icon] -- [Timer](https://github.com/michaelvillar/timer-app) - Simple Timer app for Mac. ![swift_icon] -- [Toggl Desktop](https://github.com/toggl-open-source/toggldesktop) - Toggl Desktop app for Windows, Mac and Linux. ![cpp_icon] -- [TomatoBar](https://github.com/ivoronin/TomatoBar) - Pomodoro Technique Timer for macOS with Touch Bar support. ![swift_icon] -- [TrelloApp](https://github.com/jlong/TrelloApp) - Unofficial wrapper application for Trello.com written in Swift. This is almost a "Hello World" for a site specific browser. ![swift_icon] -- [Ueli](https://github.com/oliverschwendener/ueli) - A keystroke launcher for macOS (and Windows) like Spotlight or Alfred. ![typescript_icon] -- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari ![swift_icon] -- [Watson](https://github.com/TailorDev/Watson) - A CLI application for time tracking. ![python_icon] -- [Whale](https://github.com/1000ch/whale) - Unofficial Trello app. ![javascript_icon] -- [Yomu](https://github.com/sendyhalim/Yomu) - Manga reader app for macOS. ![swift_icon] -- [espanso](https://github.com/espanso/espanso) - Cross-platform Text Expander, a powerful replacement for Alfred Snippets ![rust_icon] -- [far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2 ![c_icon] ![cpp_icon] -- [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. ![javascript_icon] ![vue_icon] ![css_icon] -- [macOrganizer](https://github.com/shubhambatra3019/macOrganizer) - macOS app for organizing files or removing unnecessary files. ![swift_icon] -- [reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system. ![typescript_icon] ![swift_icon] -- [sqlectron](https://github.com/sqlectron/sqlectron-gui) - A simple and lightweight SQL client desktop/terminal with cross database and platform support. ![typescript_icon] -- [status-bar-todo](https://github.com/Onix-Systems/osx-status-bar-todo) - Simple macOS app to keep TODO-list in status bar. ![swift_icon] -- [stretchly](https://github.com/hovancik/stretchly) - Cross-platform electron app that reminds you to take breaks when working with computer. ![javascript_icon] + **Links:** Latest Release   GitHub stars   License -### Screensaver -- [Aerial](https://github.com/JohnCoates/Aerial) - Apple TV Aerial Screensaver for macOS. ![swift_icon] -- [Brooklyn](https://github.com/pedrommcarrasco/Brooklyn) - Screensaver inspired by Apple's Event on October 30, 2018. ![swift_icon] -- [Epoch Flip Clock Screensaver](https://github.com/chrstphrknwtn/epoch-flip-clock-screensaver) - Unix epoch timestamp flip clock screensaver. ![objective_c_icon] -- [Image-As-Wallpaper](https://github.com/ved62/Image-As-Wallpaper) - Utility application helps with selection of images for using as desktop wallpaper or in screensaver on Mac computers. ![swift_icon] -- [Irvue](https://github.com/leonspok/Irvue-Screensaver) - Screensaver for macOS. ![objective_c_icon] -- [Life Saver](https://github.com/amiantos/lifesaver) - An abstract screensaver based on Conway's Game of Life implemented with SpriteKit ![swift_icon] -- [MinimalClock](https://github.com/mattiarossini/MinimalClock) - Simple and elegant screensaver that displays the time. ![swift_icon] -- [MusaicFM](https://github.com/obrhoff/MusaicFM) - iTunes Screensaver Clone for Spotify and Last.fm ![objective_c_icon] -- [Predator](https://github.com/vpeschenkov/Predator) - A predator-inspired clock screensaver for macOS ![swift_icon] -- [The GitHub Matrix Screensaver](https://github.com/winterbe/github-matrix-screensaver) - The GitHub Matrix Screensaver for macOS. ![javascript_icon] + **Website:** [https://yoni.ninja/automute/](https://yoni.ninja/automute/) -### Security -- [Cloaker](https://github.com/spieglt/cloaker) - simple drag-and-drop, password-based file encryption. ![rust_icon] -- [Cryptomator](https://github.com/cryptomator/cryptomator) - Multi-platform transparent client-side encryption of your files in the cloud. ![java_icon] -- [LuLu](https://github.com/objective-see/LuLu) - LuLu is macOS firewall application that aims to block unauthorized (outgoing) network traffic. ![objective_c_icon] -- [Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene. ![swift_icon] -- [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. ![swift_icon] -- [Swifty](https://github.com/swiftyapp/swifty) - Free and offline password manager. ![javascript_icon] -- [VeraCrypt](https://github.com/veracrypt/VeraCrypt) - Disk encryption with strong security based on TrueCrypt. ![c_icon] ![cpp_icon] -- [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. ![shell_icon] -- [stronghold](https://github.com/alichtman/stronghold) - Easily configure macOS security settings from the terminal. ![python_icon] + **Screenshots:** -### Sharing Files -- [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. ![java_icon] -- [Deluge](https://github.com/deluge-torrent/deluge) - Lightweight cross-platform BitTorrent client. ![python_icon] -- [NitroShare](https://github.com/nitroshare/nitroshare-desktop) - Transferring files from one device to another ![cpp_icon] -- [Rhea](https://github.com/timonus/Rhea) - macOS status bar app for quickly sharing files and URLs. ![objective_c_icon] -- [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. ![swift_icon] ![objective_c_icon] -- [Transmission](https://github.com/transmission/transmission) - Official Transmission BitTorrent client repository. ![objective_c_icon] ![c_icon] -- [Tribler](https://github.com/Tribler/tribler) - Privacy enhanced BitTorrent client with P2P content discovery. ![python_icon] -- [mac2imgur](https://github.com/mileswd/mac2imgur) - Simple Mac app designed to make uploading images and screenshots to Imgur quick and effortless. ![swift_icon] -- [qBittorrent](https://github.com/qbittorrent/qBittorrent) - BitTorrent client in Qt. ![cpp_icon] + -### Social Networking -- [Caprine](https://github.com/sindresorhus/caprine#features) - Elegant Facebook Messenger desktop app. ![javascript_icon] ![css_icon] -- [Goofy](https://github.com/danielbuechele/goofy) - Unofficial Facebook Messenger client. ![javascript_icon] -- [Leviathan](https://github.com/Swiftodon/Leviathan) - Leviathan is a iOS and macOS client application for the Mastodon social network. ![swift_icon] -- [Messenger](https://github.com/rsms/fb-mac-messenger) - macOS app wrapping Facebook's Messenger for desktop. ![objective_c_icon] -- [Product Hunt](https://github.com/producthunt/producthunt-osx) - share and discover your favorite new products and applications. ![swift_icon] -- [Quail](https://github.com/1000ch/quail) - Unofficial [esa](https://esa.io) app. ![javascript_icon] -- [Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram Desktop App. ![javascript_icon] ![css_icon] -- [RedditOS](https://github.com/Dimillian/RedditOS) - A SwiftUI Reddit client for macOS. ![swift_icon] -- [Simpo](https://github.com/KeliCheng/Simpo) - macOS menubar app to post status quickly. ![swift_icon] + -### Streaming -- [Galeri](https://github.com/michealparks/galeri) - Perpetual artwork streaming app. ![javascript_icon] -- [OBS Studio](https://github.com/obsproject/obs-studio) - Free and open source software for live streaming and screen recording. ![cpp_icon] -- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. ![swift_icon] +

+
-### System -- [AppPolice](https://github.com/AppPolice/AppPolice) - App for macOS with a minimalistic UI which lets you quickly throttle down the CPU usage of any running process. ![objective_c_icon] -- [Apple Juice](https://github.com/raphaelhanneken/apple-juice) - Advanced battery gauge for macOS. ![swift_icon] -- [Clean-Me](https://github.com/Kevin-De-Koninck/Clean-Me) - Small macOS app that acts as a system cleaner (logs, cache, ...). ![swift_icon] -- [Diagnostics](https://github.com/macmade/Diagnostics) - Diagnostics is an application displaying the diagnostic reports from applications on macOS. ![swift_icon] -- [DisableMonitor](https://github.com/Eun/DisableMonitor) - Easily disable or enable a monitor on your Mac. ![objective_c_icon] -- [Fanny](https://github.com/DanielStormApps/Fanny) - Monitor your Mac's fan speed and CPU temperature from your Notification Center. ![objective_c_icon] -- [HoRNDIS](https://github.com/jwise/HoRNDIS) - Android USB tethering driver for macOS. ![cpp_icon] -- [Juice](https://github.com/brianmichel/Juice) - Make your battery information a bit more interesting. ![swift_icon] -- [KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevents your Mac from going to sleep. ![objective_c_icon] -- [Latest](https://github.com/mangerlahn/Latest) - Small utility app for macOS that makes sure you know about all the latest updates to the apps you use. ![swift_icon] -- [Loading](https://github.com/BonzaiThePenguin/Loading) - Simple network activity monitor for macOS. ![objective_c_icon] -- [Overkill](https://github.com/KrauseFx/overkill-for-mac) - Stop iTunes from opening when you connect your iPhone. ![swift_icon] -- [ProfileCreator](https://github.com/ProfileCreator/ProfileCreator) - macOS Application to create standard or customized configuration profiles. ![objective_c_icon] -- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. ![swift_icon] -- [Sloth](https://github.com/sveinbjornt/Sloth) - Sloth is an macOS application that displays a list of all open files and sockets in use by all running applications on your system. ![objective_c_icon] -- [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. ![typescript_icon] ![swift_icon] -- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar ![swift_icon] -- [Turbo Boost Switcher](https://github.com/rugarciap/Turbo-Boost-Switcher) - Turbo Boost Switcher is a little application for Mac computers that allows to enable and/or disable the Turbo Boost feature. ![objective_c_icon] -- [VerticalBar](https://github.com/DeromirNeves/DockSeparator) - macOS application to add a vertical bar to Dock. ![swift_icon] -- [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. ![c_icon] ![c++_icon] -- [eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI. ![swift_icon] -- [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. ![shell_icon] -- [macOSLucidaGrande](https://github.com/LumingYin/macOSLucidaGrande) - A small utility to set Lucida Grande as your Mac's system UI font. ![objective_c_icon] +- [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. -### Terminal -- [Alacritty](https://github.com/alacritty/alacritty) - Cross-platform, GPU-accelerated terminal emulator. ![rust_icon] -- [Bifrost](https://github.com/ishuah/bifrost) - A tiny terminal emulator for serial port communication (macOS/Linux). ![go_icon] -- [Console](https://github.com/macmade/Console) - macOS console application. ![swift_icon] -- [Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder. ![swift_icon] -- [Hyper](https://github.com/vercel/hyper) - Terminal built on web technologies. ![javascript_icon] ![css_icon] -- [Kitty](https://github.com/kovidgoyal/kitty) - Cross-platform, fast, feature full, GPU based terminal emulator. ![python_icon] ![c_icon] -- [OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - Finder Toolbar app for macOS to open the current directory in Terminal, iTerm, Hyper or Alacritty. ![swift_icon] -- [OpenTerminal](https://github.com/es-kumagai/OpenTerminal) - App for macOS that opens a new Finder window and changes the current directory to the folder launched by the app. ![swift_icon] -- [cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal ![objective_c_icon] -- [iTerm 2](https://github.com/gnachman/iTerm2) - Terminal emulator for macOS that does amazing things. ![objective_c_icon] -- [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. ![shell_icon] -- [wallpapper](https://github.com/mczachurski/wallpapper) - wallpapper is a console application for creating dynamic wallpapers for Mojave. ![swift_icon] -- [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. ![rust_icon] +
+ More +

-### Touch Bar -- [Muse](https://github.com/xzzz9097/Muse) - Spotify controller with TouchBar support. ![swift_icon] -- [MyTouchbarMyRules](https://github.com/toxblh/MTMR) - App to customize your Touch Bar as you want. ![swift_icon] -- [Pock](https://github.com/pock/pock) - Display macOS Dock in Touch Bar. ![swift_icon] -- [Touch Bar Preview](https://github.com/touchbar/Touch-Bar-Preview) - Small application to display your designs on the Touch Bar of the new MacBook Pro. ![swift_icon] -- [Touch Bar Simulator](https://github.com/sindresorhus/touch-bar-simulator) - Use the Touch Bar on any Mac. ![swift_icon] -- [Touch Emoji](https://github.com/ilyalesik/touch-emoji) - Emoji picker for MacBook Pro Touch Bar. ![swift_icon] + **Languages:** C++ icon -### Utilities -- [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android ![swift_icon] -- [ArchiveMounter](https://github.com/ivoronin/ArchiveMounter) - Mounts archives like disk images. ![swift_icon] -- [Balena Etcher](https://github.com/balena-io/etcher) - Flash OS images to SD cards & USB drives, safely and easily. ![typescript_icon] -- [BeardedSpice](https://github.com/beardedspice/beardedspice) - Control web based media players with the media keys found on Mac keyboards. ![objective_c_icon] -- [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. ![javascript_icon] -- [Bitwarden](https://github.com/bitwarden/desktop) - Cross-platform password management solutions for individuals, teams, and business organizations. ![typescript_icon] -- [Bitwarden Menu](https://github.com/jnsdrtlf/bitwarden-menubar) - Bitwarden Password Manager in your menu bar ![typescript_icon] ![swift_icon] -- [Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers. ![swift_icon] ![javascript_icon] -- [Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Secure password manager for mac and other platforms. ![javascript_icon] -- [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. ![swift_icon] -- [Catch](https://github.com/mipstian/catch/) - Catch: Broadcatching made easy. ![swift_icon] -- [Clear Clipboard Text Format](https://github.com/LumingYin/ClipboardClear) - Easily clear the format of your clipboard text with Clear Clipboard Text Format. ![objective_c_icon] -- [CoreLocationCLI](https://github.com/fulldecent/corelocationcli) - Get the physical location of your device and prints it to standard output ![swift_icon] -- [CornerCal](https://github.com/ekreutz/CornerCal) - Simple, clean calendar and clock app for macOS. ![swift_icon] -- [Crypter](https://github.com/HR/Crypter) - Crypter is an innovative, convenient and secure cross-platform crypto app that simplifies secure password generation and management by requiring you to only remember one bit, the MasterPass. ![javascript_icon] -- [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... ![swift_icon] -- [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. ![swift_icon] -- [ECheck](https://github.com/josejuanqm/ECheck) - Small tool to validate epub files for macOS. ![swift_icon] -- [Flying Carpet](https://github.com/spieglt/flyingcarpet) - cross-platform file transfer over ad-hoc wifi, like AirDrop but for Mac/Windows/Linux. ![go_icon] -- [Funky](https://github.com/thecatalinstan/Funky) - Easily toggle the function key on your Mac on a per app basis. ![objective_c_icon] -- [Gray](https://github.com/zenangst/Gray) - Pick between the light appearance and the dark appearance on a per-app basis with the click of a button ![swift_icon] -- [Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Manage grayscale mode from menu bar. ![swift_icon] -- [Kap](https://github.com/wulkano/kap) - Screen recorder application built with web technology. ![javascript_icon] -- [KeePassXC](https://github.com/keepassxreboot/keepassxc) - Cross-platform community-driven port of the Windows application "Keepass Password Safe" ![cpp_icon] -- [KeeWeb](https://github.com/keeweb/keeweb) - Cross-platform password manager compatible with KeePass. ![javascript_icon] -- [Keka](https://github.com/aonez/Keka) - Keka is a full featured file archiver, as easy as it can be. ![swift_icon] -- [Kyapchar](https://github.com/vishaltelangre/Kyapchar) - Simple screen and microphone audio recorder for macOS. ![swift_icon] -- [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. ![swift_icon] -- [Lunar](https://github.com/alin23/lunar) - Intelligent adaptive brightness for your external displays. ![swift_icon] -- [MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client. ![javascript_icon] ![typescript_icon] -- [MacPass](https://github.com/MacPass/MacPass) - Native macOS KeePass client. ![objective_c_icon] -- [Maria](https://github.com/shincurry/Maria) - macOS native app/widget for aria2 download tool. ![swift_icon] -- [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings ![swift_icon] -- [Meme Maker](https://github.com/MemeMaker/Meme-Maker-Mac) - Meme Maker macOS application for meme creation. ![swift_icon] -- [Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse ![c_icon] -- [MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys. ![swift_icon] ![objective_c_icon] -- [Monolingual](https://github.com/IngmarStein/Monolingual) - Remove unnecessary language resources from macOS ![swift_icon] -- [Mos](https://github.com/Caldis/Mos) - Smooth your mouse's scrolling and reverse the mouse scroll direction ![swift_icon] -- [NVM](https://github.com/nvm-sh/nvm) - Node Version Manager. ![shell_icon] -- [Nmap](https://github.com/nmap/nmap) - Nmap - the Network Mapper. ![cpp_icon] -- [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. ![swift_icon] -- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. ![swift_icon] -- [Noti](https://github.com/jariz/Noti/) - Receive Android notifications on your mac (with PushBullet). ![swift_icon] -- [OpenRocket](https://github.com/openrocket/openrocket) - OpenRocket is a cross-platform utility tool to model and simulate model rockets and their flight characteristics. ![java_icon] -- [PB for Desktop](https://github.com/sidneys/pb-for-desktop) - Receive native push notifications on macOS, Windows and Linux. ![javascript_icon] -- [Padlock](https://github.com/padloc/padloc) - A minimal, open source password manager for macOS. ![javascript_icon] -- [PercentCalculator](https://github.com/cemolcay/PercentCalculator) - A menu bar application that calculates percents. ![swift_icon] -- [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. ![swift_icon] ![metal_icon] -- [Plain Pasta](https://github.com/hisaac/PlainPasta) - Plaintextify your clipboard ![swift_icon] -- [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. ![swift_icon] -- [PowerShell](https://github.com/powershell/powershell) - PowerShell is a cross-platform automation and configuration tool/framework that works well with your existing tools. ![c_sharp_icon] -- [Rugby](https://github.com/swiftyfinch/Rugby) - 🏈 Cache CocoaPods for faster rebuild and indexing Xcode project. ![swift_icon] -- [ScreenCat](https://github.com/maxogden/screencat) - ScreenCat is a screen sharing + remote collaboration application. ![javascript_icon] ![css_icon] -- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. ![swift_icon] -- [SlowQuitApps](https://github.com/dteoh/SlowQuitApps) - Add a global delay to Command-Q to stop accidental app quits. ![objective_c_icon] -- [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. ![typescript_icon] ![swift_icon] -- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar ![swift_icon] -- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. ![swift_icon] -- [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. ![typescript_icon] ![javascript_icon] -- [Telephone](https://github.com/64characters/Telephone) - SIP softphone for macOS. ![objective_c_icon] ![swift_icon] -- [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. ![javascript_icon] -- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' ![swift_icon] -- [ToTheTop](https://github.com/zenangst/ToTheTop) - Small macOS application to help you scroll to the top. ![swift_icon] -- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari ![swift_icon] -- [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. ![cpp_icon] -- [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. ![objective_c_icon] -- [calibre](https://github.com/kovidgoyal/calibre) - cross platform e-book manager. ![python_icon] -- [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. ![objective_c_icon] -- [eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI. ![swift_icon] -- [far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2 ![c_icon] ![cpp_icon] -- [fselect](https://github.com/jhspetersson/fselect) - Command-line tool to search files with SQL syntax. ![rust_icon] -- [homebrew-cask](https://github.com/Homebrew/homebrew-cask) - A CLI workflow for the administration of macOS applications distributed as binaries ![ruby_icon] -- [iOScanX](https://github.com/alessiomaffeis/iOScanX) - Cocoa application for semi-automated iOS app analysis and evaluation. ![objective_c_icon] ![c_icon] -- [mac-sound-fix](https://github.com/dragstor/mac-sound-fix) - Mac Sound Re-Enabler. ![swift_icon] -- [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. ![shell_icon] -- [nix-package-manager](https://github.com/NixOS/nix) - Nix is a reproducible package manager alternative to Homebrew, with over 80,000 packages. ![c++_icon] ![shell_icon] ![nix_icon] -- [wechsel](https://github.com/friedrichweise/wechsel) - manage bluetooth connections with your keyboard. ![swift_icon] -- [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. ![rust_icon] -- [Übersicht](https://github.com/felixhageloh/uebersicht) - Keep an eye on what's happening on your machine and in the world. ![objective_c_icon] + **Links:** Latest Release   GitHub stars   License -### VPN & Proxy -- [ShadowsocksX-NG](https://github.com/shadowsocks/ShadowsocksX-NG) - Next Generation of ShadowsocksX. ![swift_icon] -- [Specht](https://github.com/zhuhaow/Specht) - Rule-based proxy app built with Network Extension for macOS. ![swift_icon] -- [SpechtLite](https://github.com/zhuhaow/SpechtLite) - Rule-based proxy app for macOS. ![swift_icon] -- [Tunnelblick](https://github.com/Tunnelblick/Tunnelblick) - Tunnelblick is a graphic user interface for OpenVPN on macOS. ![objective_c_icon] -- [clashX](https://github.com/yichengchen/clashX) - A rule based custom proxy with GUI for Mac base on clash. ![swift_icon] -- [rvc-mac](https://github.com/riboseinc/cryptode-mac) - Ribose VPN Client macOS Menu App. ![swift_icon] + **Screenshots:** -### Video -- [Acid.Cam.v2.OSX](https://github.com/lostjared/Acid.Cam.v2.OSX) - Acid Cam v2 for macOS distorts video to create art. ![cpp_icon] -- [AppleEvents](https://github.com/insidegui/AppleEvents) - Unofficial Apple Events app for macOS. ![objective_c_icon] -- [Conferences.digital](https://github.com/zagahr/Conferences.digital) - Best way to watch the latest and greatest videos from your favourite developer conferences for free on your Mac. ![swift_icon] -- [Datamosh](https://github.com/maelswarm/Datamosh) - Datamosh your videos on macOS. ![swift_icon] -- [Face Data](https://github.com/xiaohk/FaceData) - macOS application used to auto-annotate landmarks from a video. ![swift_icon] -- [GNU Gatekeeper](https://github.com/willamowius/gnugk) - Video conferencing server for H.323 terminals. ![cpp_icon] -- [Gifted](https://github.com/vdel26/gifted) - Turn any short video into an animated GIF quickly and easily. ![objective_c_icon] -- [HandBrake](https://github.com/HandBrake/HandBrake) - HandBrake is a video transcoder available for Linux, Mac, and Windows. ![c_icon] -- [LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding. ![javascript_icon] -- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. ![c_icon] -- [MenuTube](https://github.com/edanchenkov/MenuTube) - Catch YouTube into your macOS menu bar! ![javascript_icon] -- [OpenShot](https://github.com/OpenShot/openshot-qt) - Easy to use, quick to learn, and surprisingly powerful video editor. ![python_icon] -- [Quick Caption](https://github.com/LumingYin/Caption) - Transcribe and generate caption files (SRT, ASS and FCPXML) without manually entering time codes. ![swift_icon] -- [QuickLook Video](https://github.com/Marginal/QLVideo) - This package allows macOS Finder to display thumbnails, static QuickLook previews, cover art and metadata for most types of video files. ![objective_c_icon] -- [Subler](https://bitbucket.org/galad87/subler/src) - Subler is an macOS app created to mux and tag mp4 files. ![objective_c_icon] -- [VLC](https://github.com/videolan/vlc) - VLC is a free and open source cross-platform multimedia player ![c_icon] -- [Vid Quiz Creator](https://github.com/sahil-a/vidquizcreator) - macOS application to insert quizzes within video playback and play those videos to receiving devices using the LISNR API. ![swift_icon] -- [WebTorrent Desktop](https://github.com/webtorrent/webtorrent-desktop) - Streaming torrent app. For Mac, Windows, and Linux. ![javascript_icon] -- [Yoda](https://github.com/whoisandy/yoda) - Nifty macOS application which enables you to browse and download videos from YouTube. ![javascript_icon] + -### Wallpaper -- [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. ![swift_icon] -- [ArtWall](https://github.com/JustinFincher/ASWP-for-macOS) - ArtStation set as wallpapers from artwork.rss ![objective_c_icon] -- [Artify](https://github.com/NghiaTranUIT/artify-macos) - A macOS application for bringing dedicatedly 18th century Arts to everyone ![swift_icon] -- [BingPaper](https://github.com/pengsrc/BingPaper) - Use Bing daily photo as your wallpaper on macOS. ![swift_icon] -- [Desktop Wallpaper Switcher](https://github.com/VioletGiraffe/desktop-wallpaper-switcher) - Win / Linux / macOS tool for managing and cycling desktop wallpapers. ![cpp_icon] -- [Muzei](https://github.com/naman14/Muzei-macOS) - Muzei wallpaper app for macOS. ![swift_icon] -- [Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper. ![swift_icon] -- [Satellite Eyes](https://github.com/tomtaylor/satellite-eyes) - macOS app to automatically set your desktop wallpaper to the satellite view overhead. ![objective_c_icon] -- [Sunscreen](https://github.com/davidcelis/Sunscreen) - Sunscreen is a fun, lightweight application that changes your desktop wallpaper based on sunrise and sunset. ![swift_icon] -- [WallpaperMenu](https://github.com/diogosantos/WallpaperMenu) - macOS menubar application for navigation through beautiful pictures on the web and set them up as your desktop image. ![ruby_icon] -- [pyDailyChanger](https://github.com/IngoMeyer441/pyDailyChanger) - pyDailyChanger is a program that changes your wallpaper daily. ![python_icon] +

+
-### Window Management -- [AltTab](https://github.com/lwouis/alt-tab-macos) - AltTab brings the power of Windows alt-tab to macOS. ![swift_icon] ![shell_icon] -- [Amethyst](https://github.com/ianyh/Amethyst) - Automatic tiling window manager for macOS. ![swift_icon] -- [AppGrid](https://github.com/mjolnirapp/AppGrid) - Grid-based keyboard window manager for macOS. ![objective_c_icon] -- [Desktop Profiles](https://github.com/mamiksik/Desktop-Profiles) - An innovative desktop/window manager for macOS ![swift_icon] -- [Hammerspoon](https://github.com/Hammerspoon/hammerspoon) - Staggeringly powerful macOS desktop automation with Lua. ![lua_icon] ![objective_c_icon] -- [Phoenix](https://github.com/kasper/phoenix) - Lightweight macOS window and app manager scriptable with JavaScript. ![objective_c_icon] -- [Rectangle](https://github.com/rxhanson/Rectangle) - Rectangle is a window manager heavily based on Spectacle, written in Swift. ![swift_icon] -- [ShiftIt](https://github.com/fikovnik/ShiftIt) - Managing windows size and position. ![objective_c_icon] -- [Slate](https://github.com/jigish/slate) - Slate is a window management application similar to Divvy and SizeUp ![objective_c_icon] -- [Spectacle](https://github.com/eczarny/spectacle) - Spectacle allows you to organize your windows without using a mouse. ![objective_c_icon] -- [Yabai](https://github.com/koekeishiya/yabai) - A tiling window manager for macOS based on binary space partitioning. ![c_icon] ![objective_c_icon] +- [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. + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [CAM](https://github.com/hanayik/CAM) - macOS camera recording using ffmpeg + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.clementine-player.org/](https://www.clementine-player.org/) + + **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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Website:** [https://cogx.org/](https://cogx.org/) + +

+
+ +- [eqMac2](https://github.com/bitgapp/eqMac) - System-Wide Equalizer for the Mac. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [fre:ac](https://github.com/enzo1982/freac) - The fre:ac audio converter project. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [jmc](https://github.com/jcm93/jmc) - jmc is new macOS media organizer. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.karaoke-eternal.com/](https://www.karaoke-eternal.com/) + + **Screenshots:** + + + +

+
+ +- [LocalRadio](https://github.com/dsward2/LocalRadio) - LocalRadio is software for listening to "Software-Defined Radio" on your Mac and mobile devices. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mifi.no/losslesscut/](https://mifi.no/losslesscut/) + + **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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [Lyricism](https://github.com/lyc2345/Lyricism) - macOS app to show you lyric what currently iTunes or Spotify is playing. + +
+ More +

+ + **Languages:** Objective-C icon Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [LyricsX](https://github.com/ddddxxx/LyricsX) - Lyrics for iTunes, Spotify and Vox. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Mous Player](https://github.com/bsdelf/mous) - Simple yet powerful audio player for BSD/Linux/macOS. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ +- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mpv.io](https://mpv.io) + + **Screenshots:** + + + +

+
+ +- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.plugformac.com/](https://www.plugformac.com/) + + **Screenshots:** + + + +

+
+ +- [Scope](https://github.com/billthefarmer/audiotools/tree/master/Scope/swift) - Audio Oscilloscope + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://billthefarmer.github.io/audiotools/](https://billthefarmer.github.io/audiotools/) + + **Screenshots:** + + + +

+
+ +- [shairport-sync](https://github.com/mikebrady/shairport-sync) - macOS/Linux/FreeBSD/OpenBSD Airplay audio receiver. + +
+ More +

+ + **Languages:** C icon C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [ShazamScrobbler](https://github.com/ShazamScrobbler/shazamscrobbler-macos) - Scrobble vinyl, radios, movies to Last.fm. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Sonora](https://github.com/sonoramac/Sonora) - Minimal, beautifully designed music player for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Spotify4BigSur](https://github.com/fabiusBile/Spotify4BigSur) - Spotify widget for Notification Center. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [SpotMenu](https://github.com/kmikiy/SpotMenu) - Spotify and iTunes in your menu bar. + +
+ More +

+ + **Languages:** Objective-C icon Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [SpotSpot](https://github.com/will-stone/SpotSpot) - Spotify mini-player for macOS. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Suohai](https://github.com/Sunnyyoung/Suohai) - Audio input/output source lock for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Tickeys](https://github.com/yingDev/Tickeys) - Instant audio feedback for typing. macOS version. + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [Tuner](https://github.com/billthefarmer/ctuner) - Musical Instrument Tuner + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://billthefarmer.github.io/ctuner/ ](https://billthefarmer.github.io/ctuner/ ) + + **Screenshots:** + + + + + + + +

+
+ +- [waveSDR](https://github.com/getoffmyhack/waveSDR) - macOS native desktop Software Defined Radio application using the RTL-SDR USB device. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +### 💾 Backup (5) +- [BorgBase/Vorta](https://github.com/borgbase) - Simple and Secure Offsite Backups + +
+ More +

+ + **Languages:** Python icon + + **Website:** [https://www.borgbase.com/](https://www.borgbase.com/) + +

+
+ +- [Mackup](https://github.com/lra/mackup) - Keep your application settings in sync (macOS/Linux). + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [shallow-backup](https://github.com/alichtman/shallow-backup) - Easily create lightweight documentation of installed applications, dotfiles, and more. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Syncalicious](https://github.com/zenangst/Syncalicious) - Keeping multiple macOS preferences in sync can be painful, but it shouldn't be. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [UrBackup](https://github.com/uroni/urbackup_backend) - UrBackup is Client/Server network backup for Windows, macOS and Linux. + +
+ More +

+ + **Languages:** C++ icon C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### 🌐 Browser (13) +- [Beaker Browser](https://github.com/beakerbrowser/beaker) - Beaker is an experimental peer-to-peer Web browser. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Brave Browser](https://github.com/brave/brave-browser) - Brave browser for Desktop and Laptop computers running Windows, macOS, and Linux. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [browserosaurus](https://github.com/will-stone/browserosaurus) - macOS tool that prompts you to choose a browser when opening a link. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon C++ icon C icon + + **Website:** [https://www.chromium.org/](https://www.chromium.org/) + +

+
+ +- [Finicky](https://github.com/johnste/finicky) - Always opens the right browser. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Firefox](https://hg.mozilla.org/mozilla-central/) - Fast, privacy aware browser from a non-profit. Runs on Windows, macOS and Linux. + +
+ More +

+ + **Languages:** JavaScript icon Rust icon C++ icon + + **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. + +
+ More +

+ + **Languages:** Objective-C icon Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Min Browser](https://github.com/minbrowser/min) - A fast and efficient minimal web browser. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://minbrowser.org](https://minbrowser.org) + +

+
+ +- [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. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ +- [Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://sindresorhus.com/plash](https://sindresorhus.com/plash) + + **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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [seb-mac](https://github.com/SafeExamBrowser/seb-mac) - Safe Exam Browser for macOS and iOS. + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### 💬 Chat (19) +- [Adium](https://github.com/adium/adium) - Instant messaging application that can connect to XMPP (Jabber), IRC and more. + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://adium.im/](https://adium.im/) + + **Screenshots:** + + + +

+
+ +- [Beagle IM](https://github.com/tigase/beagle-im) - Powerful XMPP client with support for file transfer, VoIP and end-to-end encryption. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://beagle.im/](https://beagle.im/) + + **Screenshots:** + + + +

+
+ +- [ChitChat](https://github.com/stonesam92/ChitChat) - Native Mac app wrapper for WhatsApp Web. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Electronic WeChat](https://github.com/geeeeeeeeek/electronic-wechat) - Better WeChat on macOS and Linux. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Element](https://github.com/vector-im/element-web) - Element is a collaboration app (currently Electron) for the [Matrix](https://matrix.org/) protocol. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Franz](https://github.com/meetfranz/franz) - Franz is messaging application for services like WhatsApp, Slack, Messenger and many more. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Google Allo for Desktop](https://github.com/kelyvin/Google-Allo-For-Desktop) - Native macOS & Windows desktop app for Google Allo. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [GroupMe](https://github.com/dcrousso/GroupMe) - Unofficial GroupMe App. + +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [MessagesHistoryBrowser](https://github.com/glaurent/MessagesHistoryBrowser) - macOS application to comfortably browse and search through your Messages.app history. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.rocket.chat/](https://www.rocket.chat/) + +

+
+ +- [Seaglass](https://github.com/neilalexander/seaglass) - A truly native [Matrix](https://matrix.org/blog/home/) client for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Signal Desktop](https://github.com/signalapp/Signal-Desktop) - Electron app that links with your Signal Android or Signal iOS app. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Telegram](https://github.com/overtake/TelegramSwift) - Source code of Telegram for macOS on Swift. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Telegram Desktop](https://github.com/telegramdesktop/tdesktop) - Telegram Desktop messaging app. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Textual](https://github.com/Codeux-Software/Textual) - Textual is an IRC client for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** C++ icon JavaScript icon Rust icon + + **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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [WhatsAppBar](https://github.com/aldychris/WhatsAppBar) - Send WhatsApp message from menu bar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [Wire Desktop](https://github.com/wireapp/wire-desktop) - Standalone Electron app for the chatapp Wire. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### 💰 Cryptocurrency (5) +- [Bitcoin Core](https://github.com/bitcoin/bitcoin) - Official Bitcoin Core software for running a full Bitcoin node. + +
+ More +

+ + **Languages:** C++ Python icon Shell icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://bitcoincore.org/](https://bitcoincore.org/) + + **Screenshots:** + + + +

+
+ +- [CoinBar](https://github.com/adamwaite/CoinBar) - macOS menu bar application for tracking crypto coin prices. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Crypto Bar](https://github.com/geraldoramos/crypto-bar) - macOS menu bar application built with Electron. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Float coin](https://github.com/kaunteya/FloatCoin) - Native menu bar app with floating window and support for many Exchanges. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +### 🗄️ Database (18) +- [Bdash](https://github.com/bdash-app/bdash) - Simple SQL Client for lightweight data analysis. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.beekeeperstudio.io](https://www.beekeeperstudio.io) + + **Screenshots:** + + + + + +

+
+ +- [DB Browser for SQLite](https://github.com/sqlitebrowser/sqlitebrowser) - SQLite database management GUI. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [DBeaver](https://github.com/dbeaver/dbeaver) - Universal database tool and SQL client. + +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://dbgate.org](https://dbgate.org) + + **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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [mongoDB.app](https://github.com/gcollazo/mongodbapp) - The easiest way to get started with mongoDB on the Mac. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [MongoHub](https://github.com/jeromelebel/MongoHub-Mac) - Add another lightweight Mac Native MongoDB client. + +
+ More +

+ + **Languages:** Objective-C icon C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Postbird](https://github.com/Paxa/postbird) - PostgreSQL GUI client for macOS. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [Postgres.app](https://github.com/PostgresApp/PostgresApp) - The easiest way to get started with PostgreSQL on the Mac. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Redis Desktop Manager](https://github.com/uglide/RedisDesktopManager) - Cross-platform open source database management tool for Redis ® + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [redis-pro](https://github.com/cmushroom/redis-pro) - Redis management with SwiftUI. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Redis.app](https://github.com/jpadilla/redisapp) - The easiest way to get started with Redis on the Mac. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system. + +
+ More +

+ + **Languages:** TypeScript icon Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Robo 3T](https://github.com/Studio3T/robomongo) - Robo 3T (formerly Robomongo) is the free lightweight GUI for MongoDB enthusiasts. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://sequel-ace.com/](https://sequel-ace.com/) + +

+
+ +- [Sequel Pro](https://github.com/sequelpro/sequelpro) - MySQL/MariaDB database management for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [sqlectron](https://github.com/sqlectron/sqlectron-gui) - A simple and lightweight SQL client desktop/terminal with cross database and platform support. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://sqlectron.github.io/](https://sqlectron.github.io/) + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +### 👨‍💻 Development (11) +- [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. + +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://netbeans.apache.org/](https://netbeans.apache.org/) + + **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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://brackets.io/](https://brackets.io/) + + **Screenshots:** + + + +

+
+ +- [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. + +
+ More +

+ + **Languages:** Swift icon C# icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://imazing.com/colorset](https://imazing.com/colorset) + + **Screenshots:** + + + +

+
+ +- [DevLint](https://github.com/csprasad/DevLint) - A lightweight app for formatting and correcting Swift syntax. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [GitAhead](https://github.com/gitahead/gitahead/) - A graphical Git client designed to help you understand and manage your source code history. + +
+ More +

+ + **Languages:** C++ icon C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gitahead.github.io/gitahead.com/](https://gitahead.github.io/gitahead.com/) + +

+
+ +- [Gridfy](https://github.com/Slllava/gridfy) - Quickly calculate column widths and get correct results for your grid. + +
+ More +

+ + **Languages:** JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gridfy.astroon.pro/](https://gridfy.astroon.pro/) + + **Screenshots:** + + + + + + + +

+
+ +- [KiCad](https://gitlab.com/kicad/code/kicad) - A software suite for electronic design automation. + +
+ More +

+ + **Languages:** C++ icon C icon + + **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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** App Store App Store   Latest Release   GitHub stars   License + + **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) + + **Screenshots:** + + + +

+
+ +- [Pasteboard Viewer](https://github.com/sindresorhus/Pasteboard-Viewer) - Inspect the system pasteboards. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://sindresorhus.com/pasteboard-viewer](https://sindresorhus.com/pasteboard-viewer) + + **Screenshots:** + + + +

+
+ +- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [utmapp](https://github.com/utmapp/) - Virtualization for other operating systems. + +
+ More +

+ + **Languages:** Swift icon Objective-C icon + + **Website:** [https://mac.getutm.app/](https://mac.getutm.app/) + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +#### 📦 Git (20) +- [Cashew](https://github.com/dhennessy/OpenCashew) - Cashew macOS Github Issue Tracker. + +
+ More +

+ + **Languages:** Objective-C icon C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Git Interactive Rebase Tool](https://github.com/MitMaro/git-interactive-rebase-tool) - Full feature terminal based sequence editor for interactive rebase. + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gitrebasetool.mitmaro.ca/](https://gitrebasetool.mitmaro.ca/) + + **Screenshots:** + + + +

+
+ +- [GitAhead](https://github.com/gitahead/gitahead/) - A graphical Git client designed to help you understand and manage your source code history. + +
+ More +

+ + **Languages:** C++ icon C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gitahead.github.io/gitahead.com/](https://gitahead.github.io/gitahead.com/) + +

+
+ +- [GitBlamePR](https://github.com/maoyama/GitBlamePR) - Mac app that shows pull request last modified each line of a file + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Gitee](https://github.com/Nightonke/Gitee) - Gitee, macOS status bar application for Github. + +
+ More +

+ + **Languages:** Objective-C icon Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [GitHub Desktop](https://github.com/desktop/desktop) - Simple collaboration from your desktop. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [GithubListener](https://github.com/ad/GithubListener) - Simple app that will notify about new commits to watched repositories. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [GithubNotify](https://github.com/erik/github-notify) - Simple macOS app to alert you when you have unread GitHub notifications. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Gitify](https://github.com/manosim/gitify) - Your GitHub notifications on your menu bar. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.gitify.io/](https://www.gitify.io/) + + **Screenshots:** + + + +

+
+ +- [GitSync](https://github.com/eonist/GitSync) - Minimalistic Git client for Mac. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [GitUp](https://github.com/git-up/GitUp) - The Git interface you've been missing all your life has finally arrived. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ +- [GitX](https://github.com/gitx/gitx) - Graphical client for the git version control system. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [GPM](https://github.com/mtgto/GPM) - macOS application for easily operating GitHub Projects. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [osagitfilter](https://github.com/doekman/osagitfilter) - Filter to put OSA languages (AppleScript, JavaScript) into git, as if they where plain text-files. + +
+ More +

+ + **Languages:** Shell icon applescript + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Streaker](https://github.com/jamieweavis/streaker) - GitHub contribution streak tracking menubar app. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [TeamStatus-for-GitHub](https://github.com/marcinreliga/TeamStatus-for-GitHub) - macOS status bar application for tracking code review process within the team. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Tempo](https://github.com/maoyama/Tempo) - Replace the Git CLI with a clear UI and AI assist. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Trailer](https://github.com/ptsochantaris/trailer) - Managing Pull Requests and Issues For GitHub & GitHub Enterprise. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Xit](https://github.com/Uncommon/Xit) - Xit is a graphical tool for working with git repositories. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +#### 🔄 JSON Parsing (4) +- [j2s](https://github.com/zadr/j2s) - macOS app to convert JSON objects into Swift structs (currently targets Swift 4 and Codable). + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [JSON Mapper](https://github.com/AppCraft-LLC/json-mapper) - Simple macOS app to generate Swift Object Mapper classes from JSON. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +#### 🔧 Other Development (5) +- [Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers. + +
+ More +

+ + **Languages:** Swift icon JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://boop.okat.best](https://boop.okat.best) + + **Screenshots:** + + + +

+
+ +- [ChefInspector](https://github.com/Yasumoto/ChefInspector) - Node and Attribute viewer for Chef + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [macho-browser](https://github.com/dcsch/macho-browser) - Browser for macOS Mach-O binaries. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client. + +
+ More +

+ + **Languages:** JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [vegvisir](https://github.com/ant4g0nist/vegvisir) - Browser based GUI for **LLDB** Debugger. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(5 more screenshots available in the repository)* + +

+
+ +
⬆️ Back to Top
+ + +#### 🌍 Web Development (15) +- [aws-s3-uploader](https://github.com/RafalWilinski/s3-uploader) - Simple macOS app for uploading files to Amazon Web Services. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [HTTP Toolkit](https://github.com/httptoolkit/httptoolkit-desktop) - HTTP Toolkit is a cross-platform tool to intercept, debug & mock HTTP. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://httptoolkit.com/](https://httptoolkit.com/) + + **Screenshots:** + + + + + + + +

+
+ +- [Insomnia](https://github.com/Kong/insomnia) - Insomnia is a cross-platform REST client, built on top of Electron. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [iTunesConnect](https://github.com/trulyronak/itunesconnect) - macOS app to let you access iTunesConnect. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [KubeSwitch](https://github.com/nsriram/KubeSwitch) - KubeSwitch lists the available kubernetes cluster contexts on the mac, in Mac's Menu bar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Lantern](https://github.com/RoyalIcing/Lantern) - Dedicated Mac app for website auditing and crawling. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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). + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [ndm](https://github.com/720kb/ndm) - Npm desktop GUI. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [nodeScratchpad](https://github.com/vsaravind007/nodeScratchpad) - Evaluate Nodejs/JS code snippets from Menubar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Requestly](https://github.com/requestly/requestly) - A lightweight open-source API Development, Testing & Mocking platform + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://requestly.com](https://requestly.com) + + **Screenshots:** + + + + + +

+
+ +- [SimpleLocalize CLI](https://github.com/simplelocalize/simplelocalize-cli) - Open source tool for managing i18n keys in software projects. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://simplelocalize.io](https://simplelocalize.io) + +

+
+ +- [stts](https://github.com/inket/stts) - macOS app for monitoring the status of cloud services. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +#### 📱 iOS / macOS (42) +- [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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [AppIcons](https://github.com/kuyawa/AppIcons) - Tool for generating icons in all sizes as required by macOS and iOS apps. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [AppStoreReviewTimes](https://github.com/arbel03/AppStoreReviewTimes) - Gives you indication about the average iOS / macOS app stores review times. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Asset Catalog Tinkerer](https://github.com/insidegui/AssetCatalogTinkerer) - App that lets you open .car files and browse/extract their images. + +
+ More +

+ + **Languages:** Objective-C icon Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [Assets](https://github.com/e7711bbear/Assets) - Assets is a macOS app that manages assets for your development projects (Xcode, web, etc). + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Attabench](https://github.com/attaswift/Attabench) - Attabench is a microbenchmarking app for macOS, designed to measure and visualize the performance of Swift code. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Board For GitHub](https://github.com/JustinFincher/BoardForGitHub) - Small application to monitor your GitHub project web page in a native macOS app :octocat:! + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [Brisk](https://github.com/br1sk/brisk) - macOS app for submitting radars. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [CocoaRestClient](https://github.com/mmattozzi/cocoa-rest-client) - Native Apple macOS app for testing HTTP/REST endpoints. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://coronatracker.samabox.com/](https://coronatracker.samabox.com/) + + **Screenshots:** + + + + + +

+
+ +- [DevLint](https://github.com/csprasad/DevLint) - A lightweight app for formatting and correcting Swift syntax. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [FilterShop](https://github.com/KrisYu/FilterShop) - macOS App to explore CoreImage Filters. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [IconGenerator](https://github.com/onmyway133/IconGenerator) - macOS app to generate app icons. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Iconizer](https://github.com/raphaelhanneken/iconizer) - Create Xcode image catalogs (xcassets) on the fly. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Iconology](https://github.com/liamrosenfeld/Iconology) - Edit icons and then export to Xcode, icns, ico, favicon, macOS iconset, or a custom collection. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** App Store App Store   Latest Release   GitHub stars   License + + **Website:** [https://apps.apple.com/us/app/iconology/id1463452867](https://apps.apple.com/us/app/iconology/id1463452867) + + **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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [InjectionIII](https://github.com/johnno1962/InjectionIII) - overdue Swift rewrite of Injection. + +
+ More +

+ + **Languages:** Objective-C icon Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Input Source Pro](https://github.com/runjuu/InputSourcePro/) - Input Source Pro is macOS utility designed for multilingual users who frequently switch input sources. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://inputsource.pro](https://inputsource.pro) + +

+
+ +- [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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Knuff](https://github.com/KnuffApp/Knuff) - The debug application for Apple Push Notification Service (APNs). + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [LayerX](https://github.com/yuhua-chen/LayerX) - Intuitive app to display transparent images on screen. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Localizable.strings](https://github.com/cristibaluta/Localizable.strings) - Mac app to localize your iOS and macOS projects. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Localizations](https://github.com/e7711bbear/Localizations) - Localizations is an macOS app that manages your Xcode project localization files (.strings). + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Menubar Colors](https://github.com/nvzqz/Menubar-Colors) - macOS app for convenient access to the system color panel. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Notarize](https://github.com/macmade/Notarize) - Notarization status monitoring tool for macOS, supporting multiple developer accounts + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [PodsUpdater](https://github.com/kizitonwose/PodsUpdater) - macOS app which helps you manage dependency releases in your Podfile. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [ProfilesManager](https://github.com/shaojiankui/ProfilesManager) - Apple iOS/macOS Provisioning Profiles management,.provisionprofile, .mobileprovision files manager tool for mac. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [PushNotifications](https://github.com/onmyway133/PushNotifications) - macOS app to test push notifications on iOS and Android. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Resizr](https://github.com/onurgenes/Resizr) - MacOS application for creating AppIcon for iOS and Android apps. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [SmartPush](https://github.com/shaojiankui/SmartPush) - iOS Push Notification Debug App. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [TransporterPad](https://github.com/iseebi/TransporterPad) - iOS/Android app deployment tool for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [WWDC](https://github.com/insidegui/WWDC) - Unofficial WWDC app for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [WWDC.srt](https://github.com/ssamadgh/WWDCsrt) - Powerful app for downloading subtitle for each WWDC session video since 2013 in (srt) format. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [xib2Storyboard](https://github.com/novemberfiveco/xib2Storyboard) - Tool to convert Xcode .xib to .storyboard files. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### ⬇️ Downloader (7) +- [App Downloader](https://github.com/yep/app-downloader) - Easily search and download macOS apps from the huge `homebrew cask` app catalog. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Extream Download Manager](https://github.com/subhra74/xdm) - a powerful tool to increase download speeds up to 500% + +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://subhra74.github.io/xdm/](https://subhra74.github.io/xdm/) + +

+
+ +- [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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Motrix](https://github.com/agalwood/Motrix) - A full-featured download manager. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://motrix.app/](https://motrix.app/) + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ +- [Pillager](https://github.com/Pjirlip/Pillager) - macOS Video Downloader written in Swift and Objective-C. + +
+ More +

+ + **Languages:** Objective-C icon Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [udemy-downloader-gui](https://github.com/FaisalUmair/udemy-downloader-gui) - desktop application for downloading Udemy Courses. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +### 📝 Editors (6) +- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://auroraeditor.com](https://auroraeditor.com) + + **Screenshots:** + + + +

+
+ +- [Chime](https://github.com/ChimeHQ/Chime) - An editor for macOS + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.chimehq.com/](https://www.chimehq.com/) + + **Screenshots:** + + + +

+
+ +- [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.codeedit.app/](https://www.codeedit.app/) + + **Screenshots:** + + + +

+
+ +- [DevLint](https://github.com/csprasad/DevLint) - A lightweight app for formatting and correcting Swift syntax. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** C icon c++ + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.geany.org/](https://www.geany.org/) + + **Screenshots:** + + + +

+
+ +- [mxMarkEdit](https://github.com/maxnd/mxMarkEdit) - A visual editor of Markdown document, tasks and tables. + +
+ More +

+ + **Languages:** free-pascal + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/maxnd/mxMarkEdit](https://github.com/maxnd/mxMarkEdit) + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ +
⬆️ Back to Top
+ + +#### 📊 CSV (1) +- [TableTool](https://github.com/jakob/TableTool) - simple CSV editor for the macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +#### 📋 JSON (2) +- [JSON Editor](https://github.com/fand/json-editor-app) - Dead simple JSON editor using josdejong/jsoneditor + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [JSON-Splora](https://github.com/wellsjo/JSON-Splora) - GUI for editing, visualizing, and manipulating JSON data. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +
⬆️ Back to Top
+ + +#### 📝 Markdown (11) +- [Gingko](https://github.com/gingko/client) - Tree-structured markdown editor for macOS, Windows, and Linux. + +
+ More +

+ + **Languages:** Elm icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon vue CSS icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://uselinked.com](https://uselinked.com) + + **Screenshots:** + + + + + +

+
+ +- [MacDown](https://github.com/MacDownApp/macdown) - Markdown editor for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Mark Text](https://github.com/marktext/marktext/) - Realtime preview markdown editor for macOS Windows and Linux. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://markedit.app/](https://markedit.app/) + + **Screenshots:** + + + + + + + +

+
+ +- [mxMarkEdit](https://github.com/maxnd/mxMarkEdit) - A visual editor of Markdown document, tasks and tables. + +
+ More +

+ + **Languages:** free-pascal + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/maxnd/mxMarkEdit](https://github.com/maxnd/mxMarkEdit) + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ +- [Notenik](https://github.com/hbowie/notenik-swift) - Note-taking app with many organizational options. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://notenik.app](https://notenik.app) + + **Screenshots:** + + + +

+
+ +- [Obsidian plugins & themes](https://github.com/obsidianmd/obsidian-releases) - Community plugins list, theme list, and releases of Obsidian. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://obsidian.md/](https://obsidian.md/) + + **Screenshots:** + + + +

+
+ +- [Pine](https://github.com/lukakerr/Pine) - A modern MacOS markdown editor. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.qownnotes.org/](https://www.qownnotes.org/) + + **Screenshots:** + + + +

+
+ +- [Zettlr](https://github.com/Zettlr/Zettlr) - A Markdown Editor for the 21st century. + +
+ More +

+ + **Languages:** JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.zettlr.com/](https://www.zettlr.com/) + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +#### 📐 TeX (1) +- [Qilin Editor](https://github.com/qilin-editor/qilin-app) - Text editor for exact sciences with built-in KaTeX/AsciiMath support. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +
⬆️ Back to Top
+ + +#### ✏️ Text (12) +- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://auroraeditor.com](https://auroraeditor.com) + + **Screenshots:** + + + +

+
+ +- [CotEditor](https://github.com/coteditor/CotEditor) - Lightweight Plain-Text Editor for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** C icon c++ + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.geany.org/](https://www.geany.org/) + + **Screenshots:** + + + +

+
+ +- [MacVim](https://github.com/macvim-dev/macvim) - Text editor for macOS. + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Go icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://micro-editor.github.io](https://micro-editor.github.io) + + **Screenshots:** + + + + + + + + *(8 more screenshots available in the repository)* + +

+
+ +- [mxMarkEdit](https://github.com/maxnd/mxMarkEdit) - A visual editor of Markdown document, tasks and tables. + +
+ More +

+ + **Languages:** free-pascal + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/maxnd/mxMarkEdit](https://github.com/maxnd/mxMarkEdit) + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ +- [Noto](https://github.com/brunophilipe/noto) - Plain text editor for macOS with customizable themes. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system. + +
+ More +

+ + **Languages:** TypeScript icon Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [SubEthaEdit](https://github.com/subethaedit/SubEthaEdit) - General purpose plain text editor for macOS. Widely known for its live collaboration feature. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [TextMate](https://github.com/textmate/textmate) - TextMate is a graphical text editor for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Tincta](https://github.com/CodingFriends/Tincta) - One-window text editor with syntax highlighting. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://codingfriends.github.io/Tincta/](https://codingfriends.github.io/Tincta/) + +

+
+ +- [VimR](https://github.com/qvacua/vimr) - Refined Neovim experience for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### 🧩 Extensions (13) +- [AdGuard for Safari](https://github.com/adguardteam/adguardforsafari) - The most advanced ad blocking extension for Safari + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://adguard.com/en/welcome.html](https://adguard.com/en/welcome.html) + + **Screenshots:** + + + +

+
+ +- [BetterPiP](https://github.com/Capevace/BetterPiP) - Use native picture-in-picture with browsers such as Google Chrome for HTML5 videos. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://florian.codes/projects/is-it-private/](https://florian.codes/projects/is-it-private/) + + **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 + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://nef.bow-swift.io/](https://nef.bow-swift.io/) + + **Screenshots:** + + + + + +

+
+ +- [PageExtender](https://github.com/fphilipe/PageExtender.app) - Extend pages with your own CSS and JS files. + +
+ More +

+ + **Languages:** Swift icon JavaScript icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Swimat](https://github.com/Jintin/Swimat) - Swimat is an Xcode plug-in to format your Swift code. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://jintin.github.io/Swimat/](https://jintin.github.io/Swimat/) + + **Screenshots:** + + + +

+
+ +- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +### 🔍 Finder (11) +- [cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Clipy](https://github.com/Clipy/Clipy) - Clipy is a Clipboard extension app for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [CopyQ](https://github.com/hluk/CopyQ) - Clipboard manager with advanced features + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://dupeguru.voltaicideas.net/](https://dupeguru.voltaicideas.net/) + +

+
+ +- [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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [FiScript](https://github.com/Mortennn/FiScript) - Execute custom scripts from the MacOS context menu (CTRL+click) in Finder. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [OpenInCode](https://github.com/sozercan/OpenInCode) - Finder toolbar app to open current folder in Visual Studio Code. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - Finder Toolbar app for macOS to open the current directory in Terminal, iTerm, Hyper or Alacritty. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Quick Look plugins](https://github.com/sindresorhus/quick-look-plugins) - List of useful Quick Look plugins for developers. + +
+ More +

+ + **Languages:** Objective-C icon C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(5 more screenshots available in the repository)* + +

+
+ +- [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +### 🎮 Games (11) +- [0 A.D.](https://svn.wildfiregames.com/public/ps/trunk/) - Real-time strategy game of ancient warfare + +
+ More +

+ + **Languages:** C++ icon + + **Website:** [https://play0ad.com](https://play0ad.com) + + **Screenshots:** + + + + + +

+
+ +- [Battle for Wesnoth](https://github.com/wesnoth/wesnoth) - Turn-based tactical strategy game, featuring both single-player and online multiplayer combat. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Boxer](https://github.com/alunbestor/Boxer) - The DOS game emulator that’s fit for your Mac. + +
+ More +

+ + **Languages:** C++ icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Chess](https://opensource.apple.com/source/Chess/Chess-410.4.1/) - The chess app that comes with macOS. + +
+ More +

+ + **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. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://apollozhu.github.io/Dynamic-Dark-Mode/](https://apollozhu.github.io/Dynamic-Dark-Mode/) + + **Screenshots:** + + + +

+
+ +- [OpenEmu](https://github.com/OpenEmu/OpenEmu) - Retro video game emulation for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [OpenRCT2](https://github.com/OpenRCT2/OpenRCT2) - Re-implementation of RollerCoaster Tycoon 2. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Screentendo](https://github.com/AaronRandall/Screentendo) - Turn your screen into a playable level of Mario. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Stockfish](https://github.com/daylen/stockfish-mac) - Beautiful, powerful chess application. + +
+ More +

+ + **Languages:** C++ icon Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** c++ Python icon Lua icon JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.widelands.org](https://www.widelands.org) + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +### 🎨 Graphics (17) +- [Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux). + +
+ More +

+ + **Languages:** C++ icon C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** C icon C++ icon Python icon + + **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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. + +
+ More +

+ + **Languages:** Swift icon C# icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://imazing.com/colorset](https://imazing.com/colorset) + + **Screenshots:** + + + +

+
+ +- [FreeCAD](https://github.com/FreeCAD/FreeCAD) - FreeCAD is an open-source 3D parametric modeler + +
+ More +

+ + **Languages:** c++ Python icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.freecad.org/](https://www.freecad.org/) + + **Screenshots:** + + + +

+
+ +- [Gaphor](https://github.com/gaphor/gaphor) - Gaphor is the simple modeling tool for UML and SysML. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gaphor.org](https://gaphor.org) + +

+
+ +- [GifCapture](https://github.com/onmyway133/GifCapture) - Gif capture app for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Haskell icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Gifski](https://github.com/sindresorhus/Gifski) - Convert videos to high-quality GIFs. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ +- [InfiniteCanvas](https://github.com/CleanCocoa/InfiniteCanvas) - Proof of concept Mac drawing application. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** C++ icon Python icon C icon + + **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. + +
+ More +

+ + **Languages:** c++ C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://librecad.org](https://librecad.org) + + **Screenshots:** + + + +

+
+ +- [macSVG](https://github.com/dsward2/macSVG) - macOS application for designing HTML5 SVG (Scalable Vector Graphics) art and animation with a WebKit web view. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Material Colors Native](https://github.com/BafS/Material-Colors-native) - Choose your Material colours and copy the hex code. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Nugget](https://github.com/cartesiancs/nugget-app) - Video editing software designed for motion effects and versatility. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [ScreenToLayers for macOS](https://github.com/duyquoc/ScreenToLayers) - ScreenToLayers is a macOS application to easily capture your screen as a layered PSD file. + +
+ More +

+ + **Languages:** Objective-C icon CSS icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +### 💻 IDE (12) +- [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. + +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://netbeans.apache.org/](https://netbeans.apache.org/) + + **Screenshots:** + + + + + +

+
+ +- [Atom](https://github.com/atom/atom) - The hackable text editor. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://auroraeditor.com](https://auroraeditor.com) + + **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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://brackets.io/](https://brackets.io/) + + **Screenshots:** + + + +

+
+ +- [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.codeedit.app/](https://www.codeedit.app/) + + **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. + +
+ More +

+ + **Languages:** C icon c++ + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.geany.org/](https://www.geany.org/) + + **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 + +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.jetbrains.com/idea/](https://www.jetbrains.com/idea/) + + **Screenshots:** + + + +

+
+ +- [LiveCode](https://github.com/livecode/livecode) - Cross-platform development IDE. + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://livecode.org/](https://livecode.org/) + +

+
+ +- [Oni](https://github.com/onivim/oni) - Oni is a modern take on modal editing code editor focused on developer productivity. + +
+ More +

+ + **Languages:** JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Vim](https://github.com/vim/vim) - ubiquitous text editor + +
+ More +

+ + **Languages:** C icon Vim script + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.vim.org/](https://www.vim.org/) + + **Screenshots:** + + + +

+
+ +- [Visual Studio Code](https://github.com/Microsoft/vscode) - Code editor developed by Microsoft. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Lua icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +### 🖼️ Images (17) +- [APNGb](https://github.com/shgodoroja/APNGb) - macOS app which assembles and disassembles animated png files. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Crunch](https://github.com/chrissimpkins/Crunch) - Insane(ly slow but wicked good) PNG image optimization. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [ExifCleaner](https://github.com/szTheory/exifcleaner) - Remove image metadata with drag and drop, multi-core batch processing, and dark mode. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://exifcleaner.com](https://exifcleaner.com) + + **Screenshots:** + + + + + + + +

+
+ +- [Flameshot](https://github.com/flameshot-org/flameshot) - Powerful yet simple to use screenshot software. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://flameshot.org](https://flameshot.org) + + **Screenshots:** + + + +

+
+ +- [Freehand](https://github.com/wddwycc/Freehand) - macOS Status Bar App for quick sketch. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Gimp](https://github.com/GNOME/gimp) - Gimp is GNU Image Manipulation Program. + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Iconology](https://github.com/liamrosenfeld/Iconology) - Edit icons and then export to Xcode, icns, ico, favicon, macOS iconset, or a custom collection. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** App Store App Store   Latest Release   GitHub stars   License + + **Website:** [https://apps.apple.com/us/app/iconology/id1463452867](https://apps.apple.com/us/app/iconology/id1463452867) + + **Screenshots:** + + + +

+
+ +- [ImageAlpha](https://github.com/kornelski/ImageAlpha) - Mac GUI for pngquant, pngnq and posterizer. + +
+ More +

+ + **Languages:** Objective-C icon Python icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Inkscape](https://gitlab.com/inkscape/inkscape) - Inkscape is a Free and open source vector graphics editor. + +
+ More +

+ + **Languages:** c++ + + **Website:** [https://inkscape.org/](https://inkscape.org/) + + **Screenshots:** + + + +

+
+ +- [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [Katana](https://github.com/bluegill/katana) - Katana is a simple screenshot utility for macOS that lives in your menubar. + +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** C++ icon Python icon C icon + + **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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(3 more screenshots available in the repository)* + +

+
+ +- [Screenbar](https://github.com/crilleengvall/Screenbar) - macOS menubar app for automating screenshots. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Seashore](https://github.com/robaho/seashore) - Easy to use macOS image editing application for the rest of us. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [WebPonize](https://github.com/1000ch/WebPonize) - WebPonize is a macOS App for converting PNG, JPEG, animated (or not) GIF images into WebP. + +
+ More +

+ + **Languages:** Swift icon C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### ⌨️ Keyboard (10) +- [AnnePro-mac](https://github.com/msvisser/AnnePro-mac) - macOS application for controlling AnnePro keyboard over bluetooth. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Fluor](https://github.com/Pyroh/Fluor) - Handy tool for macOS allowing you to switch Fn keys' mode based on active application. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [GokuRakuJoudo](https://github.com/yqrashawn/GokuRakuJoudo) - Karabiner-Elements configuration manager, rescue to bloated karabiner.json + +
+ More +

+ + **Languages:** Clojure icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Input Source Pro](https://github.com/runjuu/InputSourcePro/) - Input Source Pro is macOS utility designed for multilingual users who frequently switch input sources. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://inputsource.pro](https://inputsource.pro) + +

+
+ +- [Karabiner](https://github.com/tekezo/Karabiner) - Karabiner (KeyRemap4MacBook) is a powerful utility for keyboard customization. + +
+ More +

+ + **Languages:** C++ icon Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** C++ icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Kawa](https://github.com/hatashiro/kawa) - Better input source switcher for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Keycastr](https://github.com/keycastr/keycastr) - Keystroke visualizer. + +
+ More +

+ + **Languages:** Objective-C + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Thor](https://github.com/gbammc/Thor) - Switch the right application ASAP. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Unshaky](https://github.com/aahung/Unshaky) - A software attempt to address the "double key press" issue on Apple's butterfly keyboard + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://unshaky.nestederror.com/](https://unshaky.nestederror.com/) + + **Screenshots:** + + + + + +

+
+ +
⬆️ Back to Top
+ + +### 📧 Mail (7) +- [Correo](https://github.com/amitmerchant1990/correo) - Menubar/taskbar Gmail App for Windows and macOS. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [dejalu](https://github.com/dinhvh/dejalu) - Fast and Simple Email Client. + +
+ More +

+ + **Languages:** C++ icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [ElectronMail](https://github.com/vladimiry/ElectronMail) - Unofficial desktop app for ProtonMail and Tutanota end-to-end encrypted email providers. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Mailspring](https://github.com/Foundry376/Mailspring) - 💌 A beautiful, fast and maintained fork of @nylas Mail by one of the original authors + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://getmailspring.com/](https://getmailspring.com/) + +

+
+ +- [Rambox](https://github.com/ramboxapp/community-edition) - Cross Platform messaging and emailing app that combines common web applications into one. + +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [SimpleLogin](https://github.com/simple-login/mac-app) - Email Alias solution: protect your real email address. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Thunderbird](https://hg.mozilla.org/mozilla-central) - Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client. + +
+ More +

+ + **Languages:** C++ icon JavaScript icon Rust icon + + **Website:** [https://www.thunderbird.net/en-US/](https://www.thunderbird.net/en-US/) + + **Screenshots:** + + + + + + + +

+
+ +
⬆️ Back to Top
+ + +### 🏥 Medical (1) +- [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +
⬆️ Back to Top
+ + +### 📊 Menubar (43) +- [Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Akku](https://github.com/jariz/Akku) - The missing macOS bluetooth headset battery indicator app. + +
+ More +

+ + **Languages:** Swift icon Python icon Ruby icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [AnyBar](https://github.com/tonsky/AnyBar) - macOS menubar status indicator. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [BarTranslate](https://github.com/ThijmenDam/BarTranslate) - A handy menu bar translator app that supports DeepL and Google Translate. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://thijmendam.github.io/BarTranslate/](https://thijmendam.github.io/BarTranslate/) + + **Screenshots:** + + + +

+
+ +- [Bye-AppQuit](https://github.com/designsbymuzeer/Bye-Mac-App) - A minimal native macOS app to quickly view and Bulk kill running processes. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/designsbymuzeer/Bye-Mac-App](https://github.com/designsbymuzeer/Bye-Mac-App) + + **Screenshots:** + + + +

+
+ +- [CloudyTabs](https://github.com/josh-/CloudyTabs) - Simple menu bar macOS application for displaying lists of your iCloud Tabs and Reading List. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [DatWeatherDoe](https://github.com/inderdhir/DatWeatherDoe) - Simple menu bar weather app for macOS written in Swift. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [DisplayMenu](https://github.com/Kwpolska/DisplayMenu) - Simple (bare-bones) macOS menubar extra to apply display presets. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Dozer](https://github.com/Mortennn/Dozer) - Hide MacOS menubar items. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Manage grayscale mode from menu bar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [gSwitch](https://github.com/CodySchrank/gSwitch) - macOS status bar app that allows control over the gpu on dual gpu macbooks. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Hidden Bar](https://github.com/dwarvesf/hidden) - An ultra-light MacOS utility that helps hide menu bar icons + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [iGlance](https://github.com/iglance/iGlance) - macOS System Monitor (cpu, memory, network, fan and battery) for the Status Bar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.mowglii.com/itsycal/](https://www.mowglii.com/itsycal/) + + **Screenshots:** + + + +

+
+ +- [KubeContext](https://github.com/turkenh/KubeContext) - import, manage and switch between your Kubernetes contexts on Mac. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [LinkLiar](https://github.com/halo/LinkLiar) - Keep your MAC address random for privacy (intuitive GUI for ifconfig) + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://halo.github.io/LinkLiar/](https://halo.github.io/LinkLiar/) + + **Screenshots:** + + + +

+
+ +- [Market Bar](https://github.com/mnndnl/market-bar ) - Tiny stocks watcher for the menu bar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Menubar Brightness](https://github.com/lucasbento/menubar-brightness) - macOS app to change the screen brightness on the menubar. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [MenuMeters](https://github.com/yujitach/MenuMeters) - CPU, memory, disk, and network monitoring tools for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [MiniSim](https://github.com/okwasniewski/MiniSim) - MacOS menu bar app for launching iOS  and Android 🤖 emulators. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.minisim.app/](https://www.minisim.app/) + + **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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://paretosecurity.com/](https://paretosecurity.com/) + + **Screenshots:** + + + +

+
+ +- [Pi Stats](https://github.com/Bunn/PiStats) - macOS app to visualize Pi-hole information. + +
+ More +

+ + **Languages:** Swift icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. + +
+ More +

+ + **Languages:** Swift icon metal + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://superhighfives.com/pika](https://superhighfives.com/pika) + + **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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [PSIBar](https://github.com/nikhilsh/PSIBar) - Quickly hacked up PSI macOS status bar app. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Quickeys](https://github.com/alexrosenfeld10/Quickeys) - A mac menu bar app that provides note taking functionality though a quick dropdown menu. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [RustCast](https://github.com/unsecretised/rustcast) - Blazingly fast, customisable multi tool, application launcher + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://rustcast.umangsurana.com](https://rustcast.umangsurana.com) + + **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. + +
+ More +

+ + **Languages:** Objective-C icon C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Shifty](https://github.com/thompsonate/Shifty) - macOS menu bar app that gives you more control over Night Shift. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [SwiftBar](https://github.com/swiftbar/SwiftBar) - Powerful macOS menu bar customization tool. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://swiftbar.app](https://swiftbar.app) + +

+
+ +- [TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording. + +
+ More +

+ + **Languages:** CSS icon JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://timescribe.app](https://timescribe.app) + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ +- [TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording. + +
+ More +

+ + **Languages:** CSS icon JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://timescribe.app](https://timescribe.app) + + **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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://vercel-deployment-menu-bar.vercel.app/](https://vercel-deployment-menu-bar.vercel.app/) + + **Screenshots:** + + + +

+
+ +- [xbar](https://github.com/matryer/xbar) - Put the output from any script or program into your macOS Menu Bar. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### 🎧 Music (15) +- [Carol](https://github.com/AnaghSharma/Carol) - A minimal and beautiful lyrics app that stays in the menu bar of macOS. + +
+ More +

+ + **Languages:** C# icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [ChordDetector](https://github.com/cemolcay/ChordDetector) - Tiny menu bar app that listens iTunes and Spotify to detect chords of songs! + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [DeezPlayer](https://github.com/imanel/deezplayer) - Deezer Desktop app for Windows, Linux and macOS. + +
+ More +

+ + **Languages:** CoffeeScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [iTunes Graphs](https://github.com/Zac-Garby/iTunes-Graphs) - macOS app to visualise your iTunes library as graphs. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.karaoke-eternal.com/](https://www.karaoke-eternal.com/) + + **Screenshots:** + + + +

+
+ +- [Lilypond UI](https://github.com/doches/lilypond-ui) - Create beautiful musical scores with LilyPond. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [lyricsify](https://github.com/mamal72/lyricsify-mac) - Simple Spotify lyrics viewer menu bar app for macOS in Swift. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mpv.io](https://mpv.io) + + **Screenshots:** + + + +

+
+ +- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.plugformac.com/](https://www.plugformac.com/) + + **Screenshots:** + + + +

+
+ +- [SoundCleod](https://github.com/salomvary/soundcleod) - SoundCloud for macOS and Windows. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [spicetify-cli](https://github.com/spicetify/spicetify-cli) - Command-line tool to customize the official Spotify client. Supports Windows, MacOS and Linux. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://spicetify.app/](https://spicetify.app/) + + **Screenshots:** + + + +

+
+ +- [Spotify-Cli-Mac](https://github.com/ersel/spotify-cli-mac) - Control Spotify without leaving your terminal. :notes: + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [YouTube-Music](https://github.com/steve228uk/YouTube-Music) - macOS wrapper for music.youtube.com. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ +
⬆️ Back to Top
+ + +### 📰 News (6) +- [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Diurna](https://github.com/ngquerol/Diurna) - Basic/Classic Hacker News app, used as a Cocoa & Swift learning platform. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [hacker-menu](https://github.com/owenthereal/hacker-menu) - Hacker News Delivered to Desktop. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [NetNewsWire](https://github.com/Ranchero-Software/NetNewsWire) - Feed reader for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Vienna](https://github.com/ViennaRSS/vienna-rss) - Vienna is a RSS/Atom newsreader for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://getstream.io/winds/](https://getstream.io/winds/) + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ +
⬆️ Back to Top
+ + +### 📔 Notes (17) +- [Boostnote](https://github.com/BoostIO/BoostNote-Legacy) - Note-taking application made for programmers just like you. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Dnote](https://github.com/dnote/dnote) - A simple command line notebook with multi-device sync and web interface. + +
+ More +

+ + **Languages:** Go icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.getdnote.com/](https://www.getdnote.com/) + + **Screenshots:** + + + +

+
+ +- [FromScratch](https://github.com/Kilian/fromscratch) - Little app that you can use as a quick note taking or todo app. + +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [FSNotes](https://github.com/glushchenko/fsnotes) - Notes manager for macOS/iOS: modern notational velocity (nvALT) on steroids. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [joplin](https://github.com/laurent22/joplin) - Note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Jupyter Notebook Viewer](https://github.com/tuxu/nbviewer-app) - Notebook viewer for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon vue CSS icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://uselinked.com](https://uselinked.com) + + **Screenshots:** + + + + + +

+
+ +- [notable](https://github.com/jmcfarlane/notable) - Simple note taking application. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(4 more screenshots available in the repository)* + +

+
+ +- [Notenik](https://github.com/hbowie/notenik-swift) - Note-taking app with many organizational options. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://notenik.app](https://notenik.app) + + **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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [NoteTaker](https://github.com/insidegui/NoteTaker) - Simple note taking app for macOS and iOS which uses Realm and CloudKit for syncing. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.qownnotes.org/](https://www.qownnotes.org/) + + **Screenshots:** + + + +

+
+ +- [Simplenote](https://github.com/Automattic/simplenote-macos) - Simplest way to keep notes. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Standard Notes](https://github.com/standardnotes/app) - Safe place for your notes, thoughts, and life's work. + +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Rust icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://stik.ink](https://stik.ink) + +

+
+ +- [tmpNote](https://github.com/buddax2/tmpNote) - Very simple macOS app to make temporary notes. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Tusk](https://github.com/klaudiosinani/tusk) - Unofficial, third-party, community driven Evernote app with a handful of useful features. + +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### 📦 Other (22) +- [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://betaflight.com/](https://betaflight.com/) + + **Screenshots:** + + + +

+
+ +- [Cakebrew](https://github.com/brunophilipe/Cakebrew) - Manage your Homebrew formulas with style using Cakebrew. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [ChipMunk](https://github.com/esrlabs/chipmunk) - Log analysis tool. + +
+ More +

+ + **Languages:** TypeScript icon Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [DevDocs for macOS](https://github.com/dteoh/devdocs-macos) - An unofficial DevDocs API documentation viewer. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Gas Mask](https://github.com/2ndalpha/gasmask) - Hosts file manager for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Hosts](https://github.com/specialunderwear/Hosts.prefpane) - Cocoa GUI for /etc/hosts. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [ImageOptim](https://github.com/ImageOptim/ImageOptim) - GUI image optimizer for Mac. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Keyframes Player](https://github.com/insidegui/KeyframesPlayer) - Simple macOS app to preview animations created with Facebook's keyframes framework. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Lepton](https://github.com/hackjutsu/Lepton) - Democratizing Code Snippets Management (macOS/Win/Linux). + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Letters](https://github.com/klaaspieter/letters) - Teach your kids the alphabet and how to type. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Platypus](https://github.com/sveinbjornt/Platypus) - Mac developer tool that creates application bundles from command line scripts. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [QorumLogs](https://github.com/Esqarrouth/QorumLogs) - Swift Logging Utility for Xcode & Google Docs. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [React Native Debugger](https://github.com/jhen0409/react-native-debugger) - Desktop app for inspecting your React Native projects. macOS, Linux, and Windows. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Reactotron](https://github.com/infinitered/reactotron) - Desktop app for inspecting your React JS and React Native projects. macOS, Linux, and Windows. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [RktMachine](https://github.com/woofwoofinc/rktmachine) - Menu bar macOS app for running rkt in a macOS hypervisor CoreOS VM. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Ruby.app](https://github.com/gosu/ruby-app) - macOS app that contains a full Ruby installation (for use with Ruby/Gosu). + +
+ More +

+ + **Languages:** Ruby icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Shuttle](https://github.com/fitztrev/shuttle) - Simple SSH shortcut menu for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [SwiftyBeaver](https://github.com/SwiftyBeaver/SwiftyBeaver) - Convenient logging during development & release in Swift. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [syncthing-macosx](https://github.com/syncthing/syncthing-macos) - Frugal nativemacOS macOS Syncthing application bundle. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Unused](https://github.com/jeffhodnett/Unused) - Mac app for checking Xcode projects for unused resources. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Vagrant Manager](https://github.com/lanayotech/vagrant-manager) - Manage your vagrant machines in one place with Vagrant Manager for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +### ▶️ Player (6) +- [IINA](https://github.com/iina/iina) - The modern video player for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://iina.io](https://iina.io) + +

+
+ +- [MacMorpheus](https://github.com/emoRaivis/MacMorpheus) - 3D 180/360 video player for macOS for PSVR with head tracking. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Movie Monad](https://github.com/lettier/movie-monad) - Desktop video player built with Haskell that uses GStreamer and GTK+. + +
+ More +

+ + **Languages:** Haskell icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [MPlayerX](https://github.com/niltsh/MPlayerX) - Media player on macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mpv.io](https://mpv.io) + + **Screenshots:** + + + +

+
+ +- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.plugformac.com/](https://www.plugformac.com/) + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +### 🎙️ Podcast (7) +- [Cumulonimbus](https://github.com/z-------------/CPod) - Simple, beautiful podcast app. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Doughnut](https://github.com/dyerc/Doughnut) - Podcast player and library for mac + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [gPodder](https://github.com/gpodder/gpodder) - gPodder is a simple, open source podcast client. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gpodder.github.io/](https://gpodder.github.io/) + + **Screenshots:** + + + +

+
+ +- [mkchromecast](https://github.com/muammar/mkchromecast) - Cast macOS and Linux Audio/Video to your Google Cast and Sonos Devices. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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). + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://getstream.io/winds/](https://getstream.io/winds/) + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ +
⬆️ Back to Top
+ + +### ⏱️ Productivity (64) +- [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app. + +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Bye-AppQuit](https://github.com/designsbymuzeer/Bye-Mac-App) - A minimal native macOS app to quickly view and Bulk kill running processes. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/designsbymuzeer/Bye-Mac-App](https://github.com/designsbymuzeer/Bye-Mac-App) + + **Screenshots:** + + + +

+
+ +- [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Cerebro](https://github.com/cerebroapp/cerebro) - Cross-platform launcher app. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [ClipMenu](https://github.com/naotaka/ClipMenu) - Clipboard manager for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Clocker](https://github.com/n0shake/Clocker) - macOS app to plan and organize through timezones. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Condution](https://github.com/Shabang-Systems/Condution) - Create tasks, manage due dates, and filter with powerful perspectives. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.condution.com](https://www.condution.com) + + **Screenshots:** + + + +

+
+ +- [ControlPlane](https://github.com/dustinrue/ControlPlane) - Automate running tasks based on where you are or what you do. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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... + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://devutils.com](https://devutils.com) + + **Screenshots:** + + + +

+
+ +- [Dockit](https://github.com/xicheng148/Dockit) - An application that can dock any window to the edge of the screen. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **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)) + + **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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [espanso](https://github.com/espanso/espanso) - Cross-platform Text Expander, a powerful replacement for Alfred Snippets + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://espanso.org](https://espanso.org) + + **Screenshots:** + + + +

+
+ +- [far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2 + +
+ More +

+ + **Languages:** C icon C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [File Architect](https://github.com/filearchitect/app) - Create file and folder structures from plain text descriptions. + +
+ More +

+ + **Languages:** TypeScript icon Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://filearchitect.com](https://filearchitect.com) + + **Screenshots:** + + + +

+
+ +- [Flycut](https://github.com/TermiT/flycut) - Clean and simple clipboard manager for developers. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://icemenubar.app/](https://icemenubar.app/) + + **Screenshots:** + + + + + +

+
+ +- [Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.mowglii.com/itsycal/](https://www.mowglii.com/itsycal/) + + **Screenshots:** + + + +

+
+ +- [KeyHolder](https://github.com/Clipy/KeyHolder) - Record shortcuts in macOS, like Alfred.app. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Kiwix](https://github.com/kiwix/apple) - Kiwix for iOS and macOS, build on Swift. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** App Store App Store   Latest Release   GitHub stars   License + + **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) + + **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. + +
+ More +

+ + **Languages:** JavaScript icon vue CSS icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://uselinked.com](https://uselinked.com) + + **Screenshots:** + + + + + +

+
+ +- [Linked Ideas](https://github.com/fespinoza/LinkedIdeas) - macOS application to write down and connect ideas. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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! + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Maccy](https://github.com/p0deje/Maccy) - Lightweight search-as-you-type clipboard manager. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [macOrganizer](https://github.com/shubhambatra3019/macOrganizer) - macOS app for organizing files or removing unnecessary files. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Manta](https://github.com/hql287/Manta) - Flexible invoicing desktop app with beautiful & customizable templates. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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 + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Paperless Desktop](https://github.com/thomasbrueggemann/paperless-desktop) - Desktop app that uses the paperless API to manage your document scans. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [PDF Archiver](https://github.com/PDF-Archiver/PDF-Archiver) - Nice tool for tagging and archiving tasks. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ +- [Pomodoro Cycle](https://github.com/ziulev/pomodoro-cycle-app) - Pomodoro Cycle for macOS + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/ziulev/pomodoro-cycle-app/releases](https://github.com/ziulev/pomodoro-cycle-app/releases) + + **Screenshots:** + + + +

+
+ +- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.qownnotes.org/](https://www.qownnotes.org/) + + **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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Readest](https://github.com/readest/readest) - Readest is a modern, feature-rich ebook reader designed for avid readers. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://readest.com](https://readest.com) + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ +- [reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system. + +
+ More +

+ + **Languages:** TypeScript icon Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [RustCast](https://github.com/unsecretised/rustcast) - Blazingly fast, customisable multi tool, application launcher + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://rustcast.umangsurana.com](https://rustcast.umangsurana.com) + + **Screenshots:** + + + +

+
+ +- [Screenpipe](https://github.com/screenpipe/screenpipe) - 24/7 screen and audio recording with AI-powered search. Local-first, privacy-focused rewind alternative. + +
+ More +

+ + **Languages:** Rust icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://screenpi.pe](https://screenpi.pe) + + **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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Speed Reader](https://github.com/LumingYin/SpeedReader) - Read faster with the power of silencing vocalization with SpeedReader. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** App Store App Store   Latest Release   GitHub stars   License + + **Website:** [https://apps.apple.com/app/speed-reader/id1258448209](https://apps.apple.com/app/speed-reader/id1258448209) + + **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. + +
+ More +

+ + **Languages:** TypeScript icon Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [sqlectron](https://github.com/sqlectron/sqlectron-gui) - A simple and lightweight SQL client desktop/terminal with cross database and platform support. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://sqlectron.github.io/](https://sqlectron.github.io/) + + **Screenshots:** + + + +

+
+ +- [status-bar-todo](https://github.com/Onix-Systems/osx-status-bar-todo) - Simple macOS app to keep TODO-list in status bar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [StickyNotes](https://github.com/LumingYin/StickyNotes) - A Windows 10-esque Sticky Notes app implemented in AppKit. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/LumingYin/StickyNotes/releases](https://github.com/LumingYin/StickyNotes/releases) + + **Screenshots:** + + + +

+
+ +- [Strategr](https://github.com/khrykin/StrategrDesktop) - No-fuss time management. + +
+ More +

+ + **Languages:** C++ icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://khrykin.github.io/StrategrDesktop/](https://khrykin.github.io/StrategrDesktop/) + + **Screenshots:** + + + + + +

+
+ +- [stretchly](https://github.com/hovancik/stretchly) - Cross-platform electron app that reminds you to take breaks when working with computer. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. + +
+ More +

+ + **Languages:** TypeScript icon JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://super-productivity.com](https://super-productivity.com) + + **Screenshots:** + + + +

+
+ +- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Thyme](https://github.com/joaomoreno/thyme) - The task timer for OS X. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon CSS icon html + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://timetoleave.app/](https://timetoleave.app/) + + **Screenshots:** + + + + + +

+
+ +- [Timer](https://github.com/michaelvillar/timer-app) - Simple Timer app for Mac. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording. + +
+ More +

+ + **Languages:** CSS icon JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://timescribe.app](https://timescribe.app) + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ +- [TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording. + +
+ More +

+ + **Languages:** CSS icon JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://timescribe.app](https://timescribe.app) + + **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. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [TomatoBar](https://github.com/ivoronin/TomatoBar) - Pomodoro Technique Timer for macOS with Touch Bar support. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Ueli](https://github.com/oliverschwendener/ueli) - A keystroke launcher for macOS (and Windows) like Spotlight or Alfred. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://ueli.app/](https://ueli.app/) + + **Screenshots:** + + + +

+
+ +- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Watson](https://github.com/TailorDev/Watson) - A CLI application for time tracking. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Whale](https://github.com/1000ch/whale) - Unofficial Trello app. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Xournal++](https://github.com/xournalpp/xournalpp/) - Take handwritten notes with ease + +
+ More +

+ + **Languages:** C++ icon Lua icon C icon Python icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Yomu](https://github.com/sendyhalim/Yomu) - Manga reader app for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### 🌙 Screensaver (10) +- [Aerial](https://github.com/JohnCoates/Aerial) - Apple TV Aerial Screensaver for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Epoch Flip Clock Screensaver](https://github.com/chrstphrknwtn/epoch-flip-clock-screensaver) - Unix epoch timestamp flip clock screensaver. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Irvue](https://github.com/leonspok/Irvue-Screensaver) - Screensaver for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [Life Saver](https://github.com/amiantos/lifesaver) - An abstract screensaver based on Conway's Game of Life implemented with SpriteKit + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [MinimalClock](https://github.com/mattiarossini/MinimalClock) - Simple and elegant screensaver that displays the time. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mattiarossini.github.io/MinimalClock/](https://mattiarossini.github.io/MinimalClock/) + + **Screenshots:** + + + +

+
+ +- [MusaicFM](https://github.com/obrhoff/MusaicFM) - iTunes Screensaver Clone for Spotify and Last.fm + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Predator](https://github.com/vpeschenkov/Predator) - A predator-inspired clock screensaver for macOS + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [The GitHub Matrix Screensaver](https://github.com/winterbe/github-matrix-screensaver) - The GitHub Matrix Screensaver for macOS. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +
⬆️ Back to Top
+ + +### 🔒 Security (9) +- [Cloaker](https://github.com/spieglt/cloaker) - simple drag-and-drop, password-based file encryption. + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://adequate.systems/](https://adequate.systems/) + + **Screenshots:** + + + +

+
+ +- [Cryptomator](https://github.com/cryptomator/cryptomator) - Multi-platform transparent client-side encryption of your files in the cloud. + +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://cryptomator.org/](https://cryptomator.org/) + +

+
+ +- [LuLu](https://github.com/objective-see/LuLu) - LuLu is macOS firewall application that aims to block unauthorized (outgoing) network traffic. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. + +
+ More +

+ + **Languages:** Shell icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://paretosecurity.com/](https://paretosecurity.com/) + + **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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [stronghold](https://github.com/alichtman/stronghold) - Easily configure macOS security settings from the terminal. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Swifty](https://github.com/swiftyapp/swifty) - Free and offline password manager. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://getswifty.pro](https://getswifty.pro) + + **Screenshots:** + + + + + +

+
+ +- [VeraCrypt](https://github.com/veracrypt/VeraCrypt) - Disk encryption with strong security based on TrueCrypt. + +
+ More +

+ + **Languages:** C icon C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.veracrypt.fr](https://www.veracrypt.fr) + +

+
+ +
⬆️ Back to Top
+ + +### 📤 Sharing Files (9) +- [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. + +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://cyberduck.io](https://cyberduck.io) + + **Screenshots:** + + + + + +

+
+ +- [Deluge](https://github.com/deluge-torrent/deluge) - Lightweight cross-platform BitTorrent client. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [mac2imgur](https://github.com/mileswd/mac2imgur) - Simple Mac app designed to make uploading images and screenshots to Imgur quick and effortless. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [NitroShare](https://github.com/nitroshare/nitroshare-desktop) - Transferring files from one device to another + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://nitroshare.net](https://nitroshare.net) + +

+
+ +- [qBittorrent](https://github.com/qbittorrent/qBittorrent) - BitTorrent client in Qt. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Rhea](https://github.com/timonus/Rhea) - macOS status bar app for quickly sharing files and URLs. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://soduto.com/](https://soduto.com/) + +

+
+ +- [Transmission](https://github.com/transmission/transmission) - Official Transmission BitTorrent client repository. + +
+ More +

+ + **Languages:** Objective-C icon C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Tribler](https://github.com/Tribler/tribler) - Privacy enhanced BitTorrent client with P2P content discovery. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### 👥 Social Networking (9) +- [Caprine](https://github.com/sindresorhus/caprine#features) - Elegant Facebook Messenger desktop app. + +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Goofy](https://github.com/danielbuechele/goofy) - Unofficial Facebook Messenger client. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Leviathan](https://github.com/Swiftodon/Leviathan) - Leviathan is a iOS and macOS client application for the Mastodon social network. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Messenger](https://github.com/rsms/fb-mac-messenger) - macOS app wrapping Facebook's Messenger for desktop. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Product Hunt](https://github.com/producthunt/producthunt-osx) - share and discover your favorite new products and applications. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Quail](https://github.com/1000ch/quail) - Unofficial [esa](https://esa.io) app. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram Desktop App. + +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [RedditOS](https://github.com/Dimillian/RedditOS) - A SwiftUI Reddit client for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Simpo](https://github.com/KeliCheng/Simpo) - macOS menubar app to post status quickly. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +
⬆️ Back to Top
+ + +### 📡 Streaming (3) +- [Galeri](https://github.com/michealparks/galeri) - Perpetual artwork streaming app. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [OBS Studio](https://github.com/obsproject/obs-studio) - Free and open source software for live streaming and screen recording. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://obsproject.com/](https://obsproject.com/) + +

+
+ +- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.plugformac.com/](https://www.plugformac.com/) + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +### ⚙️ System (23) +- [Apple Juice](https://github.com/raphaelhanneken/apple-juice) - Advanced battery gauge for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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, ...). + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Diagnostics](https://github.com/macmade/Diagnostics) - Diagnostics is an application displaying the diagnostic reports from applications on macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [DisableMonitor](https://github.com/Eun/DisableMonitor) - Easily disable or enable a monitor on your Mac. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Fanny](https://github.com/DanielStormApps/Fanny) - Monitor your Mac's fan speed and CPU temperature from your Notification Center. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [HoRNDIS](https://github.com/jwise/HoRNDIS) - Android USB tethering driver for macOS. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Juice](https://github.com/brianmichel/Juice) - Make your battery information a bit more interesting. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevents your Mac from going to sleep. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Loading](https://github.com/BonzaiThePenguin/Loading) - Simple network activity monitor for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. + +
+ More +

+ + **Languages:** Shell icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [macOSLucidaGrande](https://github.com/LumingYin/macOSLucidaGrande) - A small utility to set Lucida Grande as your Mac's system UI font. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/LumingYin/macOSLucidaGrande/releases](https://github.com/LumingYin/macOSLucidaGrande/releases) + + **Screenshots:** + + + +

+
+ +- [Overkill](https://github.com/KrauseFx/overkill-for-mac) - Stop iTunes from opening when you connect your iPhone. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [ProfileCreator](https://github.com/ProfileCreator/ProfileCreator) - macOS Application to create standard or customized configuration profiles. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** TypeScript icon Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [VerticalBar](https://github.com/DeromirNeves/DockSeparator) - macOS application to add a vertical bar to Dock. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** C icon c++ + + **Website:** [https://www.wireshark.org/](https://www.wireshark.org/) + +

+
+ +
⬆️ Back to Top
+ + +### 📺 Terminal (13) +- [Alacritty](https://github.com/alacritty/alacritty) - Cross-platform, GPU-accelerated terminal emulator. + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Bifrost](https://github.com/ishuah/bifrost) - A tiny terminal emulator for serial port communication (macOS/Linux). + +
+ More +

+ + **Languages:** Go icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Console](https://github.com/macmade/Console) - macOS console application. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Hyper](https://github.com/vercel/hyper) - Terminal built on web technologies. + +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [iTerm 2](https://github.com/gnachman/iTerm2) - Terminal emulator for macOS that does amazing things. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Kitty](https://github.com/kovidgoyal/kitty) - Cross-platform, fast, feature full, GPU based terminal emulator. + +
+ More +

+ + **Languages:** Python icon C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. + +
+ More +

+ + **Languages:** Shell icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - Finder Toolbar app for macOS to open the current directory in Terminal, iTerm, Hyper or Alacritty. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [wallpapper](https://github.com/mczachurski/wallpapper) - wallpapper is a console application for creating dynamic wallpapers for Mojave. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ + +### 🎚️ Touch Bar (6) +- [Muse](https://github.com/xzzz9097/Muse) - Spotify controller with TouchBar support. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [MyTouchbarMyRules](https://github.com/toxblh/MTMR) - App to customize your Touch Bar as you want. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Pock](https://github.com/pock/pock) - Display macOS Dock in Touch Bar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://pock.app/](https://pock.app/) + + **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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Touch Bar Simulator](https://github.com/sindresorhus/touch-bar-simulator) - Use the Touch Bar on any Mac. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Touch Emoji](https://github.com/ilyalesik/touch-emoji) - Emoji picker for MacBook Pro Touch Bar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +
⬆️ Back to Top
+ + +### 🛠️ Utilities (91) +- [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ +- [ArchiveMounter](https://github.com/ivoronin/ArchiveMounter) - Mounts archives like disk images. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Balena Etcher](https://github.com/balena-io/etcher) - Flash OS images to SD cards & USB drives, safely and easily. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.balena.io/etcher](https://www.balena.io/etcher) + +

+
+ +- [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [BeardedSpice](https://github.com/beardedspice/beardedspice) - Control web based media players with the media keys found on Mac keyboards. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://betaflight.com/](https://betaflight.com/) + + **Screenshots:** + + + +

+
+ +- [Bitwarden](https://github.com/bitwarden/desktop) - Cross-platform password management solutions for individuals, teams, and business organizations. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://bitwarden.com/](https://bitwarden.com/) + + **Screenshots:** + + + + + + + +

+
+ +- [Bitwarden Menu](https://github.com/jnsdrtlf/bitwarden-menubar) - Bitwarden Password Manager in your menu bar + +
+ More +

+ + **Languages:** TypeScript icon Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers. + +
+ More +

+ + **Languages:** Swift icon JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://boop.okat.best](https://boop.okat.best) + + **Screenshots:** + + + +

+
+ +- [Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Secure password manager for mac and other platforms. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Bye-AppQuit](https://github.com/designsbymuzeer/Bye-Mac-App) - A minimal native macOS app to quickly view and Bulk kill running processes. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/designsbymuzeer/Bye-Mac-App](https://github.com/designsbymuzeer/Bye-Mac-App) + + **Screenshots:** + + + +

+
+ +- [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [calibre](https://github.com/kovidgoyal/calibre) - cross platform e-book manager. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://calibre-ebook.com](https://calibre-ebook.com) + +

+
+ +- [Catch](https://github.com/mipstian/catch/) - Catch: Broadcatching made easy. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Clear Clipboard Text Format](https://github.com/LumingYin/ClipboardClear) - Easily clear the format of your clipboard text with Clear Clipboard Text Format. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** App Store App Store   Latest Release   GitHub stars   License + + **Website:** [https://apps.apple.com/app/clear-clipboard-text-format/id1322855232](https://apps.apple.com/app/clear-clipboard-text-format/id1322855232) + + **Screenshots:** + + + +

+
+ +- [CoreLocationCLI](https://github.com/fulldecent/corelocationcli) - Get the physical location of your device and prints it to standard output + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [CornerCal](https://github.com/ekreutz/CornerCal) - Simple, clean calendar and clock app for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   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... + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://devutils.com](https://devutils.com) + + **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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://dupeguru.voltaicideas.net/](https://dupeguru.voltaicideas.net/) + +

+
+ +- [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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [ECheck](https://github.com/josejuanqm/ECheck) - Small tool to validate epub files for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2 + +
+ More +

+ + **Languages:** C icon C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [File Architect](https://github.com/filearchitect/app) - Create file and folder structures from plain text descriptions. + +
+ More +

+ + **Languages:** TypeScript icon Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://filearchitect.com](https://filearchitect.com) + + **Screenshots:** + + + +

+
+ +- [Flying Carpet](https://github.com/spieglt/flyingcarpet) - cross-platform file transfer over ad-hoc wifi, like AirDrop but for Mac/Windows/Linux. + +
+ More +

+ + **Languages:** Go icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://adequate.systems/](https://adequate.systems/) + + **Screenshots:** + + + +

+
+ +- [fselect](https://github.com/jhspetersson/fselect) - Command-line tool to search files with SQL syntax. + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Funky](https://github.com/thecatalinstan/Funky) - Easily toggle the function key on your Mac on a per app basis. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [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 + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Manage grayscale mode from menu bar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Gridfy](https://github.com/Slllava/gridfy) - Quickly calculate column widths and get correct results for your grid. + +
+ More +

+ + **Languages:** JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gridfy.astroon.pro/](https://gridfy.astroon.pro/) + + **Screenshots:** + + + + + + + +

+
+ +- [homebrew-cask](https://github.com/Homebrew/homebrew-cask) - A CLI workflow for the administration of macOS applications distributed as binaries + +
+ More +

+ + **Languages:** Ruby icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://brew.sh/](https://brew.sh/) + + **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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://icemenubar.app/](https://icemenubar.app/) + + **Screenshots:** + + + + + +

+
+ +- [Input Source Pro](https://github.com/runjuu/InputSourcePro/) - Input Source Pro is macOS utility designed for multilingual users who frequently switch input sources. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://inputsource.pro](https://inputsource.pro) + +

+
+ +- [iOScanX](https://github.com/alessiomaffeis/iOScanX) - Cocoa application for semi-automated iOS app analysis and evaluation. + +
+ More +

+ + **Languages:** Objective-C icon C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Kap](https://github.com/wulkano/kap) - Screen recorder application built with web technology. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [KeePassXC](https://github.com/keepassxreboot/keepassxc) - Cross-platform community-driven port of the Windows application "Keepass Password Safe" + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [KeeWeb](https://github.com/keeweb/keeweb) - Cross-platform password manager compatible with KeePass. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Keka](https://github.com/aonez/Keka) - Keka is a full featured file archiver, as easy as it can be. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.keka.io/en/](https://www.keka.io/en/) + + **Screenshots:** + + + +

+
+ +- [Kyapchar](https://github.com/vishaltelangre/Kyapchar) - Simple screen and microphone audio recorder for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** App Store App Store   Latest Release   GitHub stars   License + + **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) + + **Screenshots:** + + + +

+
+ +- [Lunar](https://github.com/alin23/lunar) - Intelligent adaptive brightness for your external displays. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [mac-sound-fix](https://github.com/dragstor/mac-sound-fix) - Mac Sound Re-Enabler. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. + +
+ More +

+ + **Languages:** Shell icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [MacPacker](https://github.com/sarensw/MacPacker/) - Archive manager for macOS. Preview (nested) archives without extracting them. Extract single files. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://macpacker.app/](https://macpacker.app/) + + **Screenshots:** + + + +

+
+ +- [MacPass](https://github.com/MacPass/MacPass) - Native macOS KeePass client. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Maria](https://github.com/shincurry/Maria) - macOS native app/widget for aria2 download tool. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Meme Maker](https://github.com/MemeMaker/Meme-Maker-Mac) - Meme Maker macOS application for meme creation. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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 + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [MiddleDrag](https://github.com/NullPointerDepressiveDisorder/MiddleDrag) - Three-finger trackpad gestures for middle-click and middle-drag. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Monolingual](https://github.com/IngmarStein/Monolingual) - Remove unnecessary language resources from macOS + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Mos](https://github.com/Caldis/Mos) - Smooth your mouse's scrolling and reverse the mouse scroll direction + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client. + +
+ More +

+ + **Languages:** JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [nix-package-manager](https://github.com/NixOS/nix) - Nix is a reproducible package manager alternative to Homebrew, with over 80,000 packages. + +
+ More +

+ + **Languages:** c++ Shell icon nix + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://nixos.org/explore.html](https://nixos.org/explore.html) + +

+
+ +- [Nmap](https://github.com/nmap/nmap) - Nmap - the Network Mapper. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://nmap.org](https://nmap.org) + +

+
+ +- [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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Noti](https://github.com/jariz/Noti/) - Receive Android notifications on your mac (with PushBullet). + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [NVM](https://github.com/nvm-sh/nvm) - Node Version Manager. + +
+ More +

+ + **Languages:** Shell icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [OpenCore Legacy Patcher](https://github.com/dortania/OpenCore-Legacy-Patcher) - OpenCore Legacy Patcher is a tool for installing new MacOS versions on legacy macs. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://dortania.github.io/OpenCore-Legacy-Patcher/](https://dortania.github.io/OpenCore-Legacy-Patcher/) + +

+
+ +- [OpenRocket](https://github.com/openrocket/openrocket) - OpenRocket is a cross-platform utility tool to model and simulate model rockets and their flight characteristics. + +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://openrocket.info/](https://openrocket.info/) + +

+
+ +- [Padlock](https://github.com/padloc/padloc) - A minimal, open source password manager for macOS. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [PB for Desktop](https://github.com/sidneys/pb-for-desktop) - Receive native push notifications on macOS, Windows and Linux. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ +- [PercentCalculator](https://github.com/cemolcay/PercentCalculator) - A menu bar application that calculates percents. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. + +
+ More +

+ + **Languages:** Swift icon metal + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://superhighfives.com/pika](https://superhighfives.com/pika) + + **Screenshots:** + + + +

+
+ +- [Plain Pasta](https://github.com/hisaac/PlainPasta) - Plaintextify your clipboard + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** C# icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Rugby](https://github.com/swiftyfinch/Rugby) - 🏈 Cache CocoaPods for faster rebuild and indexing Xcode project. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://swiftyfinch.github.io/en/2021-03-09-rugby-story/](https://swiftyfinch.github.io/en/2021-03-09-rugby-story/) + + **Screenshots:** + + + +

+
+ +- [RustCast](https://github.com/unsecretised/rustcast) - Blazingly fast, customisable multi tool, application launcher + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://rustcast.umangsurana.com](https://rustcast.umangsurana.com) + + **Screenshots:** + + + +

+
+ +- [ScreenCat](https://github.com/maxogden/screencat) - ScreenCat is a screen sharing + remote collaboration application. + +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Screenpipe](https://github.com/screenpipe/screenpipe) - 24/7 screen and audio recording with AI-powered search. Local-first, privacy-focused rewind alternative. + +
+ More +

+ + **Languages:** Rust icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://screenpi.pe](https://screenpi.pe) + + **Screenshots:** + + + +

+
+ +- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [SlowQuitApps](https://github.com/dteoh/SlowQuitApps) - Add a global delay to Command-Q to stop accidental app quits. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [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. + +
+ More +

+ + **Languages:** TypeScript icon Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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 + +
+ More +

+ + **Languages:** Java icon html JavaScript icon html + + **Links:** Latest Release   GitHub stars   License + + **Website:** [stirlingpdf.com](stirlingpdf.com) + +

+
+ +- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. + +
+ More +

+ + **Languages:** TypeScript icon JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://super-productivity.com](https://super-productivity.com) + + **Screenshots:** + + + +

+
+ +- [Telephone](https://github.com/64characters/Telephone) - SIP softphone for macOS. + +
+ More +

+ + **Languages:** Objective-C icon Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [ToTheTop](https://github.com/zenangst/ToTheTop) - Small macOS application to help you scroll to the top. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [wechsel](https://github.com/friedrichweise/wechsel) - manage bluetooth connections with your keyboard. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://wechsel.weise.io](https://wechsel.weise.io) + + **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. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.wireshark.org](https://www.wireshark.org) + +

+
+ +- [Xournal++](https://github.com/xournalpp/xournalpp/) - Take handwritten notes with ease + +
+ More +

+ + **Languages:** C++ icon Lua icon C icon Python icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Übersicht](https://github.com/felixhageloh/uebersicht) - Keep an eye on what's happening on your machine and in the world. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### 🔐 VPN & Proxy (6) +- [clashX](https://github.com/yichengchen/clashX) - A rule based custom proxy with GUI for Mac base on clash. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [rvc-mac](https://github.com/riboseinc/cryptode-mac) - Ribose VPN Client macOS Menu App. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [ShadowsocksX-NG](https://github.com/shadowsocks/ShadowsocksX-NG) - Next Generation of ShadowsocksX. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Specht](https://github.com/zhuhaow/Specht) - Rule-based proxy app built with Network Extension for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [SpechtLite](https://github.com/zhuhaow/SpechtLite) - Rule-based proxy app for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Tunnelblick](https://github.com/Tunnelblick/Tunnelblick) - Tunnelblick is a graphic user interface for OpenVPN on macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### 🎬 Video (19) +- [Acid.Cam.v2.OSX](https://github.com/lostjared/Acid.Cam.v2.OSX) - Acid Cam v2 for macOS distorts video to create art. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [AppleEvents](https://github.com/insidegui/AppleEvents) - Unofficial Apple Events app for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Datamosh](https://github.com/maelswarm/Datamosh) - Datamosh your videos on macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Face Data](https://github.com/xiaohk/FaceData) - macOS application used to auto-annotate landmarks from a video. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Gifted](https://github.com/vdel26/gifted) - Turn any short video into an animated GIF quickly and easily. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [GNU Gatekeeper](https://github.com/willamowius/gnugk) - Video conferencing server for H.323 terminals. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.gnugk.org](https://www.gnugk.org) + +

+
+ +- [HandBrake](https://github.com/HandBrake/HandBrake) - HandBrake is a video transcoder available for Linux, Mac, and Windows. + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mifi.no/losslesscut/](https://mifi.no/losslesscut/) + + **Screenshots:** + + + +

+
+ +- [MenuTube](https://github.com/edanchenkov/MenuTube) - Catch YouTube into your macOS menu bar! + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mpv.io](https://mpv.io) + + **Screenshots:** + + + +

+
+ +- [OpenShot](https://github.com/OpenShot/openshot-qt) - Easy to use, quick to learn, and surprisingly powerful video editor. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Quick Caption](https://github.com/LumingYin/Caption) - Transcribe and generate caption files (SRT, ASS and FCPXML) without manually entering time codes. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** App Store App Store   Latest Release   GitHub stars   License + + **Website:** [https://apps.apple.com/app/quick-caption/id1363610340](https://apps.apple.com/app/quick-caption/id1363610340) + + **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. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Subler](https://bitbucket.org/galad87/subler/src) - Subler is an macOS app created to mux and tag mp4 files. + +
+ More +

+ + **Languages:** Objective-C icon + + **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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [VLC](https://github.com/videolan/vlc) - VLC is a free and open source cross-platform multimedia player + +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.videolan.org/vlc/](https://www.videolan.org/vlc/) + +

+
+ +- [WebTorrent Desktop](https://github.com/webtorrent/webtorrent-desktop) - Streaming torrent app. For Mac, Windows, and Linux. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [Yoda](https://github.com/whoisandy/yoda) - Nifty macOS application which enables you to browse and download videos from YouTube. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### 🖥️ Wallpaper (11) +- [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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Artify](https://github.com/NghiaTranUIT/artify-macos) - A macOS application for bringing dedicatedly 18th century Arts to everyone + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ +- [ArtWall](https://github.com/JustinFincher/ASWP-for-macOS) - ArtStation set as wallpapers from artwork.rss + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [BingPaper](https://github.com/pengsrc/BingPaper) - Use Bing daily photo as your wallpaper on macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Desktop Wallpaper Switcher](https://github.com/VioletGiraffe/desktop-wallpaper-switcher) - Win / Linux / macOS tool for managing and cycling desktop wallpapers. + +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Muzei](https://github.com/naman14/Muzei-macOS) - Muzei wallpaper app for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://sindresorhus.com/plash](https://sindresorhus.com/plash) + + **Screenshots:** + + + +

+
+ +- [pyDailyChanger](https://github.com/IngoMeyer441/pyDailyChanger) - pyDailyChanger is a program that changes your wallpaper daily. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Satellite Eyes](https://github.com/tomtaylor/satellite-eyes) - macOS app to automatically set your desktop wallpaper to the satellite view overhead. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Sunscreen](https://github.com/davidcelis/Sunscreen) - Sunscreen is a fun, lightweight application that changes your desktop wallpaper based on sunrise and sunset. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Ruby icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +
⬆️ Back to Top
+ + +### 🪟 Window Management (15) +- [AltTab](https://github.com/lwouis/alt-tab-macos) - AltTab brings the power of Windows alt-tab to macOS. + +
+ More +

+ + **Languages:** Swift icon Shell icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://alt-tab-macos.netlify.app/](https://alt-tab-macos.netlify.app/) + + **Screenshots:** + + + + + + + +

+
+ +- [AltTab](https://github.com/lwouis/alt-tab-macos) - Switch between open applications on macOS with a Windows-like Alt+Tab experience. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://alt-tab-macos.netlify.app/](https://alt-tab-macos.netlify.app/) + + **Screenshots:** + + + +

+
+ +- [Amethyst](https://github.com/ianyh/Amethyst) - Automatic tiling window manager for macOS. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [AppGrid](https://github.com/mjolnirapp/AppGrid) - Grid-based keyboard window manager for macOS. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Desktop Profiles](https://github.com/mamiksik/Desktop-Profiles) - An innovative desktop/window manager for macOS + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ +- [Dockit](https://github.com/xicheng148/Dockit) - An application that can dock any window to the edge of the screen. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **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)) + + **Screenshots:** + + + +

+
+ +- [Hammerspoon](https://github.com/Hammerspoon/hammerspoon) - Staggeringly powerful macOS desktop automation with Lua. + +
+ More +

+ + **Languages:** Lua icon Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://icemenubar.app/](https://icemenubar.app/) + + **Screenshots:** + + + + + +

+
+ +- [Phoenix](https://github.com/kasper/phoenix) - Lightweight macOS window and app manager scriptable with JavaScript. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Rectangle](https://github.com/rxhanson/Rectangle) - Rectangle is a window manager heavily based on Spectacle, written in Swift. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://rectangleapp.com](https://rectangleapp.com) + +

+
+ +- [ShiftIt](https://github.com/fikovnik/ShiftIt) - Managing windows size and position. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ +- [Slate](https://github.com/jigish/slate) - Slate is a window management application similar to Divvy and SizeUp + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ +- [Spectacle](https://github.com/eczarny/spectacle) - Spectacle allows you to organize your windows without using a mouse. + +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   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. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +- [Yabai](https://github.com/koekeishiya/yabai) - A tiling window manager for macOS based on binary space partitioning. + +
+ More +

+ + **Languages:** C icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ +
⬆️ Back to Top
+ +
⬆️ Back to Top
## Contributors diff --git a/api.json b/api.json new file mode 100644 index 0000000..d40696d --- /dev/null +++ b/api.json @@ -0,0 +1,58 @@ +{ + "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 +} \ No newline at end of file diff --git a/applications.json b/applications.json index 284cc8b..b1be5a0 100644 --- a/applications.json +++ b/applications.json @@ -1,5 +1,78 @@ { "applications": [ + { + "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 handy menu bar translator app that supports DeepL and Google Translate.", "categories": [ @@ -15,6 +88,44 @@ "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.", @@ -31,6 +142,20 @@ "languages": [ "swift" ] + }, + { + "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": "A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications.", @@ -452,6 +577,24 @@ "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", @@ -1099,22 +1242,26 @@ "javascript" ] }, - { - "short_description": "App for all the world’s currencies. ", - "categories": [ - "cryptocurrency" - ], - "repo_url": "https://github.com/balance-io/balance-open", - "title": "Balance Open", - "icon_url": "", - "screenshots": [ - "https://d3vv6lp55qjaqc.cloudfront.net/items/2840292G3j1g102Q3s21/balance-open.png" - ], - "official_site": "", - "languages": [ - "swift" - ] - }, + { + "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": [ @@ -1623,20 +1770,6 @@ "swift" ] }, - { - "short_description": "Trace tool for iOS/macOS. ", - "categories": [ - "ios--macos" - ], - "repo_url": "https://github.com/everettjf/AppleTrace", - "title": "AppleTrace", - "icon_url": "", - "screenshots": [], - "official_site": "", - "languages": [ - "objective_c" - ] - }, { "short_description": "Gives you indication about the average iOS / macOS app stores review times. ", "categories": [ @@ -2340,6 +2473,23 @@ "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": [ @@ -6000,6 +6150,24 @@ "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. ", @@ -8044,6 +8212,22 @@ "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": [ @@ -9645,6 +9829,26 @@ "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": [ @@ -9710,6 +9914,305 @@ "languages": [ "python" ] - } + }, + { + "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" + ] + } ] } diff --git a/buildServer.json b/buildServer.json new file mode 100644 index 0000000..c408ccb --- /dev/null +++ b/buildServer.json @@ -0,0 +1,19 @@ +{ + "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" +} \ No newline at end of file