From 1f96ec57c880b40721ce5de2a1c5aeac07e68818 Mon Sep 17 00:00:00 2001 From: Serhii Londar Date: Thu, 4 Dec 2025 16:47:39 +0100 Subject: [PATCH] generator udpate --- .github/main.swift | 138 +++++++++++- .vscode/settings.json | 3 + README.md | 499 ++++++++++++++++++++++-------------------- api.json | 58 +++++ buildServer.json | 19 ++ 5 files changed, 462 insertions(+), 255 deletions(-) create mode 100644 .vscode/settings.json create mode 100644 api.json create mode 100644 buildServer.json diff --git a/.github/main.swift b/.github/main.swift index 3ca8969..0183a68 100644 --- a/.github/main.swift +++ b/.github/main.swift @@ -8,7 +8,17 @@ import Foundation -let header = """ +// 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 @@ -22,6 +32,11 @@ let header = """ Join the chat at gitter Telegram Channel

+

+ Total Apps + Categories + Last Updated +

@@ -46,6 +61,14 @@ 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: @@ -122,6 +145,7 @@ You can see in which language an app is written. Currently there are following l ## Applications """ +} let footer = """ @@ -183,6 +207,9 @@ class JSONApplication: Codable { 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 @@ -194,9 +221,12 @@ class JSONApplication: Codable { case categories case officialSite = "official_site" case homebrewCask = "homebrew_cask" + case macOSVersion = "macos_version" + case appStoreID = "app_store_id" + case deprecated } - init(title: String, iconURL: String, repoURL: String, shortDescription: String, languages: [String], screenshots: [String], categories: [String], officialSite: String, homebrewCask: String? = nil) { + 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 @@ -206,6 +236,9 @@ class JSONApplication: Codable { self.categories = categories self.officialSite = officialSite self.homebrewCask = homebrewCask + self.macOSVersion = macOSVersion + self.appStoreID = appStoreID + self.deprecated = deprecated } } @@ -258,6 +291,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) @@ -266,18 +319,25 @@ 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 { // Add category header with emoji and count - let categoryApps = applications.filter({ $0.categories.contains(category.id) }) + let categoryApps = validApplications.filter({ $0.categories.contains(category.id) }) let categoryCount = categoryApps.count let categoryEmoji = getCategoryEmoji(category.id) readmeString.append(String.enter + String.section + String.space + categoryEmoji + String.space + category.title + String.space + "(\(categoryCount))" + String.enter) var categoryApplications = categoryApps - categoryApplications = categoryApplications.sorted(by: { $0.title < $1.title }) + categoryApplications = categoryApplications.sorted(by: { $0.title.lowercased() < $1.title.lowercased() }) for application in categoryApplications { readmeString.append(application.markdownDescription()) @@ -292,13 +352,13 @@ class ReadmeGenerator { subcategories = subcategories.sorted(by: { $0.title < $1.title }) for subcategory in subcategories { // Add subcategory header with emoji and count - let subcategoryApps = applications.filter({ $0.categories.contains(subcategory.id) }) + let subcategoryApps = validApplications.filter({ $0.categories.contains(subcategory.id) }) let subcategoryCount = subcategoryApps.count let subcategoryEmoji = getCategoryEmoji(subcategory.id) readmeString.append(String.enter + String.subsection + String.space + subcategoryEmoji + String.space + subcategory.title + String.space + "(\(subcategoryCount))" + String.enter) var categoryApplications = subcategoryApps - categoryApplications = categoryApplications.sorted(by: { $0.title < $1.title }) + categoryApplications = categoryApplications.sorted(by: { $0.title.lowercased() < $1.title.lowercased() }) for application in categoryApplications { readmeString.append(application.markdownDescription()) @@ -312,11 +372,40 @@ class ReadmeGenerator { 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 + } } extension String { @@ -337,7 +426,10 @@ extension JSONApplication { } // Header line with a standard Markdown link so it's always clickable - markdownDescription.append("- [\(self.title)](\(self.repoURL)) - \(self.shortDescription)\n") + // 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 = " " @@ -351,9 +443,13 @@ extension JSONApplication { // Add download/badge section let ownerRepo = githubOwnerRepo(from: self.repoURL) var badges = [String]() - // App Store button if officialSite points to App Store - if isAppStoreURL(self.officialSite) { - let appStoreButton = "App Store App Store" + // 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 @@ -472,21 +568,39 @@ func getCategoryEmoji(_ categoryId: String) -> String { 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 "📦" } } 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/README.md b/README.md index 966e091..233c1cd 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,11 @@ Join the chat at gitter Telegram Channel

+

+ Total Apps + Categories + Last Updated +

@@ -35,6 +40,14 @@ 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 | 613 | +| 📂 Categories | 49 | +| 🔝 Top Languages | Swift: 268 • Objective-C: 134 • Javascript: 107 • C++: 54 • C: 34 | + ## Languages You can see in which language an app is written. Currently there are following languages: @@ -111,10 +124,12 @@ You can see in which language an app is written. Currently there are following l ## Applications ### 🎵 Audio (36) -- [AUHost](https://github.com/vgorloff/AUHost) - Application which hosts AudioUnits v3 using AVFoundation API. -

More

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

+- [[Un]MuteMic](https://github.com/CocoaHeadsBrasil/MuteUnmuteMic) - macOS app to mute & unmute the input volume of your microphone. Perfect for podcasters. +
More

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

- [Audacity](https://github.com/audacity/audacity) - Free, open source, cross-platform audio software
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Website: https://www.audacityteam.org/
Screenshots:

+- [AUHost](https://github.com/vgorloff/AUHost) - Application which hosts AudioUnits v3 using AVFoundation API. +
More

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

- [Aural Player](https://github.com/kartik-venugopal/aural-player) - Aural Player is a audio player application for the macOS platform. Inspired by the classic Winamp player for Windows, it is designed to be to-the-point and easy to use.
More

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



(5 more screenshots available in the repository)

- [AutoMute](https://github.com/yonilevy/automute) - Automatically mute the sound when headphones disconnect / Mac awake from sleep. @@ -129,6 +144,14 @@ You can see in which language an app is written. Currently there are following l
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: 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/

+- [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/
Screenshots:

- [LocalRadio](https://github.com/dsward2/LocalRadio) - LocalRadio is software for listening to "Software-Defined Radio" on your Mac and mobile devices. @@ -139,12 +162,12 @@ You can see in which language an app is written. Currently there are following l
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)

-- [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
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:

- [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
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. @@ -153,34 +176,24 @@ You can see in which language an app is written. Currently there are following l
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: 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/
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

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

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

- [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/
Screenshots:



-- [[Un]MuteMic](https://github.com/CocoaHeadsBrasil/MuteUnmuteMic) - macOS app to mute & unmute the input volume of your microphone. Perfect for podcasters. -
More

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

-- [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)

-- [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

- [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
@@ -190,12 +203,12 @@ You can see in which language an app is written. Currently there are following l
More

Languages: Python icon
Website: 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

-- [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:

⬆️ Back to Top
### 🌐 Browser (13) @@ -203,6 +216,8 @@ You can see in which language an app is written. Currently there are following l
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/

- [Finicky](https://github.com/johnste/finicky) - Always opens the right browser. @@ -213,16 +228,14 @@ You can see in which language an app is written. Currently there are following l
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

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

-- [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

-- [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:

- [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
@@ -294,6 +307,8 @@ You can see in which language an app is written. Currently there are following l
More

Languages: JavaScript icon TypeScript icon
Links: Latest Release   GitHub stars   License
Website: 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. @@ -302,20 +317,18 @@ You can see in which language an app is written. Currently there are following l
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/

- [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:


-- [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:

-- [redis-pro](https://github.com/cmushroom/redis-pro) - Redis management with SwiftUI. -
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:

- [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/
Screenshots:

⬆️ Back to Top
@@ -332,7 +345,7 @@ You can see in which language an app is written. Currently there are following l - [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/

- [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
Screenshots:

+
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
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
Screenshots:

- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. @@ -344,32 +357,34 @@ You can see in which language an app is written. Currently there are following l #### 📦 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

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

Languages: Swift 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/
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/

- [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

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

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
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

- [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/
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. @@ -380,43 +395,45 @@ You can see in which language an app is written. Currently there are following l
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:

-- [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

⬆️ Back to Top
-#### 📦 JSON Parsing (4) +#### 🔄 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:

-- [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

⬆️ Back to Top
-#### 📦 Other Development (5) +#### 🔧 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
Screenshots:

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

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

-- [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:


- [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 (14) -- [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:

+#### 🌍 Web Development (14) +- [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/
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. @@ -425,41 +442,39 @@ You can see in which language an app is written. Currently there are following l
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

-- [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

-- [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:

-- [iTunesConnect](https://github.com/trulyronak/itunesconnect) - macOS app to let you access iTunesConnect. -
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

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

- [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 (41) -- [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

+#### 📱 iOS / macOS (41) - [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:


- [AppleTrace](https://github.com/everettjf/AppleTrace) - Trace tool for iOS/macOS.
More

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

+- [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. @@ -473,11 +488,15 @@ You can see in which language an app is written. Currently there are following l - [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
Screenshots:

+
More

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

+- [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. @@ -514,12 +533,6 @@ You can see in which language an app is written. Currently there are following l
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:

-- [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)

-- [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

- [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
@@ -535,10 +548,10 @@ You can see in which language an app is written. Currently there are following l
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: 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:


-- [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:

- [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 (4) @@ -552,21 +565,23 @@ You can see in which language an app is written. Currently there are following l
More

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

⬆️ Back to Top
-#### 📦 CSV (1) +#### 📊 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 (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 (10) +#### 📝 Markdown (10) - [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
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. @@ -583,16 +598,14 @@ You can see in which language an app is written. Currently there are following l
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: 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/
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
Screenshots:


⬆️ Back to Top
-#### 📦 TeX (1) +#### 📐 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 (11) +#### ✏️ Text (11) - [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
Screenshots:

- [CotEditor](https://github.com/coteditor/CotEditor) - Lightweight Plain-Text Editor for macOS. @@ -601,8 +614,12 @@ You can see in which language an app is written. Currently there are following l
More

Languages: C icon c++
Links: Latest Release   GitHub stars   License
Website: 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
Screenshots:



(8 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. @@ -611,10 +628,6 @@ You can see in which language an app is written. Currently there are following l
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: 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

-- [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
Screenshots:



(8 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:

⬆️ Back to Top
### 🧩 Extensions (13) @@ -626,12 +639,14 @@ You can see in which language an app is written. Currently there are following l
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: 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/
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:

-- [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

- [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 @@ -642,31 +657,29 @@ You can see in which language an app is written. Currently there are following l
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:

-- [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/
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/

- [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:

-- [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:


- [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)

-- [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

-- [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/

- [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
@@ -719,14 +732,14 @@ You can see in which language an app is written. Currently there are following l
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/
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:

- [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:

-- [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:

⬆️ Back to Top
### 💻 IDE (12) @@ -770,15 +783,15 @@ You can see in which language an app is written. Currently there are following l - [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
Screenshots:

+
More

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

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

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



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

Languages: c++
Website: 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. @@ -817,6 +830,8 @@ You can see in which language an app is written. Currently there are following l ### 📧 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 @@ -827,11 +842,9 @@ You can see in which language an app is written. Currently there are following l
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/
Screenshots:



-- [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:

⬆️ Back to Top
-### 📦 Medical (1) +### 🏥 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
@@ -843,6 +856,8 @@ You can see in which language an app is written. Currently there are following l
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/
Screenshots:

- [CloudyTabs](https://github.com/josh-/CloudyTabs) - Simple menu bar macOS application for displaying lists of your iCloud Tabs and Reading List. @@ -853,10 +868,16 @@ You can see in which language an app is written. Currently there are following l
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/
Screenshots:

- [KubeContext](https://github.com/turkenh/KubeContext) - import, manage and switch between your Kubernetes contexts on Mac. @@ -867,10 +888,10 @@ You can see in which language an app is written. Currently there are following l
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:

-- [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

- [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/
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. @@ -881,8 +902,6 @@ You can see in which language an app is written. Currently there are following l
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

-- [PSIBar](https://github.com/nikhilsh/PSIBar) - Quickly hacked up PSI macOS status bar app. -
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/
Screenshots:

- [Pi Stats](https://github.com/Bunn/PiStats) - macOS app to visualize Pi-hole information. @@ -891,6 +910,8 @@ You can see in which language an app is written. Currently there are following l
More

Languages: Swift icon metal
Links: Latest Release   GitHub stars   License
Website: 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:

- [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. @@ -905,14 +926,6 @@ You can see in which language an app is written. Currently there are following l
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: 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
Screenshots:



(2 more screenshots available in the repository)

-- [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:

-- [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:

-- [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

-- [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

- [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
@@ -924,10 +937,14 @@ You can see in which language an app is written. Currently there are following l
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/
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
Screenshots:

- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. @@ -938,31 +955,27 @@ You can see in which language an app is written. Currently there are following l
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: 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/
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)

-- [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:


-- [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:


-- [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/
Screenshots:

⬆️ 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/
Screenshots:



(2 more screenshots available in the repository)

-- [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:

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

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

⬆️ Back to Top
### 📔 Notes (16) @@ -970,34 +983,34 @@ You can see in which language an app is written. Currently there are following l
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/
Screenshots:

-- [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:


- [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

-- [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:

+- [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
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
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/
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

-- [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

-- [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

-- [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
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)

- [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) @@ -1021,6 +1034,8 @@ You can see in which language an app is written. Currently there are following l
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. @@ -1037,46 +1052,44 @@ You can see in which language an app is written. Currently there are following l
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:

-- [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

-- [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:

⬆️ Back to Top
-### 📦 Player (6) +### ▶️ 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

-- [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
Screenshots:

-- [MPlayerX](https://github.com/niltsh/MPlayerX) - Media player on macOS. -
More

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

- [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
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/
Screenshots:

⬆️ Back to Top
-### 📦 Podcast (7) +### 🎙️ 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/
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/
Screenshots:



(2 more screenshots available in the repository)

-- [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/
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

⬆️ Back to Top
### ⏱️ Productivity (55) @@ -1098,6 +1111,10 @@ You can see in which language an app is written. Currently there are following l
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://devutils.com
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
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

- [Flycut](https://github.com/TermiT/flycut) - Clean and simple clipboard manager for developers.
More

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

- [Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar. @@ -1107,23 +1124,27 @@ You can see in which language an app is written. Currently there are following l - [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
Screenshots:

+
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
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
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:

-- [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

- [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 @@ -1134,18 +1155,26 @@ You can see in which language an app is written. Currently there are following l
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:

+- [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:

- [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
Screenshots:

+
More

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

- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' @@ -1154,10 +1183,10 @@ You can see in which language an app is written. Currently there are following l
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/
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
Screenshots:



(2 more screenshots available in the repository)

- [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
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. @@ -1174,25 +1203,9 @@ You can see in which language an app is written. Currently there are following l
More

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

- [Yomu](https://github.com/sendyhalim/Yomu) - Manga reader app for macOS.
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

-- [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
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

-- [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
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

-- [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:

-- [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/
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:

-- [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

⬆️ Back to Top
-### 📦 Screensaver (10) +### 🌙 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. @@ -1222,18 +1235,18 @@ You can see in which language an app is written. Currently there are following l
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: 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/
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
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

-- [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:

-- [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:


⬆️ Back to Top
### 📤 Sharing Files (9) @@ -1241,8 +1254,12 @@ You can see in which language an app is written. Currently there are following l
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: 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

+- [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. @@ -1251,10 +1268,6 @@ You can see in which language an app is written. Currently there are following l
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

-- [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

-- [qBittorrent](https://github.com/qbittorrent/qBittorrent) - BitTorrent client in Qt. -
More

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

⬆️ Back to Top
### 👥 Social Networking (9) @@ -1278,7 +1291,7 @@ You can see in which language an app is written. Currently there are following l
More

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


⬆️ Back to Top
-### 📦 Streaming (3) +### 📡 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. @@ -1288,16 +1301,18 @@ You can see in which language an app is written. Currently there are following l
⬆️ Back to Top
### ⚙️ System (23) -- [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)

- [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. @@ -1310,6 +1325,10 @@ You can see in which language an app is written. Currently there are following l
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
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. @@ -1328,12 +1347,6 @@ You can see in which language an app is written. Currently there are following l
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/

-- [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:

-- [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
Screenshots:

⬆️ Back to Top
### 📺 Terminal (13) @@ -1341,31 +1354,31 @@ You can see in which language an app is written. Currently there are following l
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

-- [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

-- [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

-- [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:

- [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) +### 🎚️ 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. @@ -1387,6 +1400,8 @@ You can see in which language an app is written. Currently there are following l
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

+- [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. @@ -1401,10 +1416,12 @@ You can see in which language an app is written. Currently there are following l
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
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

- [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
Screenshots:

+
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
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. @@ -1413,18 +1430,30 @@ You can see in which language an app is written. Currently there are following l
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
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/

- [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

- [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/
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:


+- [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/
Screenshots:

+- [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" @@ -1436,11 +1465,13 @@ You can see in which language an app is written. Currently there are following l - [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
Screenshots:

+
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
Screenshots:

- [Lunar](https://github.com/alin23/lunar) - Intelligent adaptive brightness for your external displays.
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:


+- [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/ 
Screenshots:

- [MacPass](https://github.com/MacPass/MacPass) - Native macOS KeePass client. @@ -1459,8 +1490,10 @@ You can see in which language an app is written. Currently there are following l
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

-- [NVM](https://github.com/nvm-sh/nvm) - Node Version Manager. -
More

Languages: Shell 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

- [Nmap](https://github.com/nmap/nmap) - Nmap - the Network Mapper.
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: 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. @@ -1469,12 +1502,14 @@ You can see in which language an app is written. Currently there are following l
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

- [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/

-- [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)

- [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. @@ -1511,32 +1546,10 @@ You can see in which language an app is written. Currently there are following l
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:

-- [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

-- [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:

-- [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

-- [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/

-- [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

-- [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

-- [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/
Screenshots:

-- [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:


-- [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:

-- [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

- [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
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

- [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. @@ -1544,6 +1557,10 @@ You can see in which language an app is written. Currently there are following l
⬆️ 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. @@ -1552,10 +1569,6 @@ You can see in which language an app is written. Currently there are following l
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

-- [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

⬆️ Back to Top
### 🎬 Video (19) @@ -1569,30 +1582,30 @@ You can see in which language an app is written. Currently there are following l
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:


-- [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

- [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

- [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/
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
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
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
Screenshots:

+
More

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

-- [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/

- [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/

- [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. @@ -1602,10 +1615,10 @@ You can see in which language an app is written. Currently there are following l ### 🖥️ 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

-- [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

- [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. @@ -1614,14 +1627,14 @@ You can see in which language an app is written. Currently there are following l
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
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

-- [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

⬆️ Back to Top
### 🪟 Window Management (11) diff --git a/api.json b/api.json new file mode 100644 index 0000000..f60724d --- /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-03T23:14:13Z", + "total_apps" : 613, + "total_categories" : 49 +} \ No newline at end of file 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