From 7c65ae38333b59badef7b8181337f2eeb0cef063 Mon Sep 17 00:00:00 2001 From: Makoto Aoyama Date: Fri, 28 Mar 2025 07:53:34 +0900 Subject: [PATCH 01/62] Add tempo (#947) --- applications.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/applications.json b/applications.json index 284cc8b..eeaffca 100644 --- a/applications.json +++ b/applications.json @@ -9710,6 +9710,23 @@ "languages": [ "python" ] + }, + { + "short_description": "Replace the Git CLI with a clear UI and AI assist.", + "categories": [ + "git" + ], + "repo_url": "https://github.com/maoyama/Tempo", + "title": "Tempo", + "icon_url": "https://raw.githubusercontent.com/maoyama/Tempo/refs/heads/main/GitClient/Assets.xcassets/AppIcon.appiconset/icon1024.png", + "screenshots": [ + "https://raw.githubusercontent.com/maoyama/Tempo/refs/heads/main/Screenshots/Screenshot.png", + "https://raw.githubusercontent.com/maoyama/Tempo/refs/heads/main/Screenshots/Screenshot2.png" + ], + "official_site": "", + "languages": [ + "swift" + ] } ] } From d3b23325a587acd6998242856b86bb5fa90da5de Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Thu, 27 Mar 2025 22:53:48 +0000 Subject: [PATCH 02/62] Generate README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ea10eb8..fc593af 100644 --- a/README.md +++ b/README.md @@ -230,6 +230,7 @@ You can see in which language an app is written. Currently there are following l - [Gitify](https://github.com/manosim/gitify) - Your GitHub notifications on your menu bar. ![javascript_icon] - [Streaker](https://github.com/jamieweavis/streaker) - GitHub contribution streak tracking menubar app. ![javascript_icon] - [TeamStatus-for-GitHub](https://github.com/marcinreliga/TeamStatus-for-GitHub) - macOS status bar application for tracking code review process within the team. ![swift_icon] +- [Tempo](https://github.com/maoyama/Tempo) - Replace the Git CLI with a clear UI and AI assist. ![swift_icon] - [Trailer](https://github.com/ptsochantaris/trailer) - Managing Pull Requests and Issues For GitHub & GitHub Enterprise. ![swift_icon] - [Xit](https://github.com/Uncommon/Xit) - Xit is a graphical tool for working with git repositories. ![swift_icon] - [osagitfilter](https://github.com/doekman/osagitfilter) - Filter to put OSA languages (AppleScript, JavaScript) into git, as if they where plain text-files. ![shell_icon] ![applescript_icon] From 08197e3c7d4ba748ea14ace030c34866db2f0c2c Mon Sep 17 00:00:00 2001 From: Serhii Londar Date: Fri, 11 Apr 2025 23:27:10 +0200 Subject: [PATCH 03/62] Remove unneeded files. --- .github/deploy.sh | 30 ------------------------------ .github/weekly-digest.yml | 7 ------- 2 files changed, 37 deletions(-) delete mode 100644 .github/deploy.sh delete mode 100644 .github/weekly-digest.yml diff --git a/.github/deploy.sh b/.github/deploy.sh deleted file mode 100644 index 73711b1..0000000 --- a/.github/deploy.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -set -e - -echo ${TRAVIS_EVENT_TYPE} -echo ${TRAVIS_BRANCH} - -if [[ ${TRAVIS_EVENT_TYPE} != 'push' ]] -then - exit -fi - -if [[ ${TRAVIS_BRANCH} != 'master' ]] -then - exit -fi - -git checkout master - -git config user.name "serhii-londar" -git config user.email "serhii.londar@gmail.com" - -echo add readme -git add README.md - -echo commit -git commit -m "Generate README" - -echo push -git push --quiet "https://${DANGER_GITHUB_API_TOKEN}@github.com/serhii-londar/open-source-mac-os-apps.git" master:master > /dev/null 2>&1 diff --git a/.github/weekly-digest.yml b/.github/weekly-digest.yml deleted file mode 100644 index 11abe61..0000000 --- a/.github/weekly-digest.yml +++ /dev/null @@ -1,7 +0,0 @@ -# Configuration for weekly-digest - https://github.com/apps/weekly-digest -publishDay: mon -canPublishIssues: true -canPublishPullRequests: true -canPublishContributors: true -canPublishStargazers: true -canPublishCommits: true \ No newline at end of file From 08c0ccfce644b9d295b4d9b533bee80764768cbc Mon Sep 17 00:00:00 2001 From: Serhii Londar Date: Fri, 11 Apr 2025 23:46:05 +0200 Subject: [PATCH 04/62] Update readme generation --- .github/main.swift | 144 ++++++++++++++++++++++++++++++------- .github/workflows/main.yml | 1 - 2 files changed, 119 insertions(+), 26 deletions(-) diff --git a/.github/main.swift b/.github/main.swift index 920f8b5..21d71fb 100644 --- a/.github/main.swift +++ b/.github/main.swift @@ -9,17 +9,33 @@ import Foundation let header = """ -[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://vshymanskyy.github.io/StandWithUkraine) +
+ + Stand With Ukraine + + + +

Awesome macOS Open Source Applications

+

A curated list of open source applications for macOS

+

+ Awesome + Join the chat at gitter + Telegram Channel +

+

- -

- -# Awesome macOS open source applications - -

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

List of awesome open source applications for macOS. This list contains a lot of native, and cross-platform apps. The main goal of this repository is to find free open source apps and start contributing. Feel free to [contribute](CONTRIBUTING.md) to the list, any suggestions are welcome! @@ -109,6 +125,8 @@ You can see in which language an app is written. Currently there are following l let footer = """ +
⬆️ Back to Top
+ ## Contributors Thanks to all the people who contribute: @@ -248,8 +266,13 @@ class ReadmeGenerator { print("Start iteration....") for category in categories { - readmeString.append(String.enter + String.section + String.space + category.title + String.enter) - var categoryApplications = applications.filter({ $0.categories.contains(category.id) }) + // Add category header with emoji and count + let categoryApps = applications.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 }) for application in categoryApplications { @@ -257,18 +280,29 @@ class ReadmeGenerator { readmeString.append(String.enter) } + // Add "Back to Top" link at the end of each category + readmeString.append("
⬆️ Back to Top
" + String.enter) + var subcategories = subcategories.filter({ $0.parent == category.id }) guard subcategories.count > 0 else { continue } subcategories = subcategories.sorted(by: { $0.title < $1.title }) for subcategory in subcategories { - readmeString.append(String.enter + String.subsection + String.space + subcategory.title + String.enter) - var categoryApplications = applications.filter({ $0.categories.contains(subcategory.id) }) + // Add subcategory header with emoji and count + let subcategoryApps = applications.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 }) for application in categoryApplications { readmeString.append(application.markdownDescription()) readmeString.append(String.enter) } + + // Add "Back to Top" link at the end of each subcategory + readmeString.append("
⬆️ Back to Top
" + String.enter) } } print("Finish iteration...") @@ -298,22 +332,82 @@ extension JSONApplication { languages.append("![\(lang)\(String.iconPrefix)] ") } - markdownDescription.append("- [\(self.title)](\(self.repoURL)) - \(self.shortDescription) \(languages)") - /* - if self.screenshots.count > 0 { - var screenshotsString = String.empty - screenshotsString += (String.space + Constants.detailsBeginString + String.space) - self.screenshots.forEach({ - screenshotsString += (String.space + (NSString(format: Constants.srcLinePattern as NSString, $0 as CVarArg) as String) + String.space) - }) - screenshotsString += (String.space + Constants.detailsEndString + String.space) - markdownDescription.append(screenshotsString) - } - */ + // Create a collapsible section for each application + markdownDescription.append("
") + markdownDescription.append("[\(self.title)](\(self.repoURL)) - \(self.shortDescription)") + markdownDescription.append("

") + + // Add languages + markdownDescription.append("Languages: \(languages)
") + + // Add official site if available + if !self.officialSite.isEmpty { + markdownDescription.append("Website: \(self.officialSite)
") + } + + // Add screenshots with lazy loading to improve page load performance + if self.screenshots.count > 0 { + markdownDescription.append("Screenshots:
") + + // Limit to first 3 screenshots to reduce load time + let limitedScreenshots = self.screenshots.count > 3 ? Array(self.screenshots.prefix(3)) : self.screenshots + + limitedScreenshots.forEach({ + markdownDescription.append("
") + }) + + // Add a note if there are more screenshots + if self.screenshots.count > 3 { + markdownDescription.append("(\(self.screenshots.count - 3) more screenshots available in the repository)
") + } + } + + markdownDescription.append("

") + markdownDescription.append("
") + return markdownDescription } } +// Helper function to get emoji for categories +func getCategoryEmoji(_ categoryId: String) -> String { + switch categoryId { + case "audio": return "🎵" + case "backup": return "💾" + case "browser": return "🌐" + case "chat": return "💬" + case "cryptocurrency": return "💰" + case "database": return "🗄️" + case "development": return "👨‍💻" + case "downloader": return "⬇️" + case "editors": return "📝" + case "extensions": return "🧩" + case "finder": return "🔍" + case "games": return "🎮" + case "graphics": return "🎨" + case "ide": return "💻" + case "images": return "🖼️" + case "keyboard": return "⌨️" + case "mail": return "📧" + case "menubar": return "📊" + case "music": return "🎧" + case "news": return "📰" + case "notes": return "📔" + case "productivity": return "⏱️" + case "security": return "🔒" + case "sharing-files": return "📤" + case "social-networking": return "👥" + case "system": return "⚙️" + case "terminal": return "📺" + case "utilities": return "🛠️" + case "video": return "🎬" + case "vpn--proxy": return "🔐" + case "wallpaper": return "🖥️" + case "window-management": return "🪟" + default: return "📦" + } +} + enum FilePaths: String { case readme = "./README.md" case applications = "./applications.json" diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d96d2e8..b0c4663 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,6 @@ jobs: steps: - uses: actions/checkout@v3 - run: swift ./.github/main.swift - - run: chmod +x ./.github/deploy.sh - run: git config user.name "serhii-londar" - run: git config user.email "serhii.londar@gmail.com" - run: git add README.md From c20378aefb4841c62fd6482560019ac6d4d73892 Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Fri, 11 Apr 2025 21:46:18 +0000 Subject: [PATCH 05/62] Generate README --- README.md | 1569 ++++++++++++++++++++++++++++------------------------- 1 file changed, 818 insertions(+), 751 deletions(-) diff --git a/README.md b/README.md index fc593af..439d351 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,30 @@ -[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://vshymanskyy.github.io/StandWithUkraine) +
+ + Stand With Ukraine + + + +

Awesome macOS Open Source Applications

+

A curated list of open source applications for macOS

+

+ Awesome + Join the chat at gitter + Telegram Channel +

+

- -

- -# Awesome macOS open source applications - -

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

List of awesome open source applications for macOS. This list contains a lot of native, and cross-platform apps. The main goal of this repository is to find free open source apps and start contributing. Feel free to [contribute](CONTRIBUTING.md) to the list, any suggestions are welcome! @@ -94,796 +110,847 @@ You can see in which language an app is written. Currently there are following l ## Applications -### Audio -- [AUHost](https://github.com/vgorloff/AUHost) - Application which hosts AudioUnits v3 using AVFoundation API. ![swift_icon] -- [Audacity](https://github.com/audacity/audacity) - Free, open source, cross-platform audio software ![c_icon] -- [Aural Player](https://github.com/kartik-venugopal/aural-player) - Aural Player is a audio player application for the macOS platform. Inspired by the classic Winamp player for Windows, it is designed to be to-the-point and easy to use. ![swift_icon] -- [AutoMute](https://github.com/yonilevy/automute) - Automatically mute the sound when headphones disconnect / Mac awake from sleep. ![objective_c_icon] -- [Background Music](https://github.com/kyleneideck/BackgroundMusic) - Background Music, a macOS audio utility: automatically pause your music, set individual apps' volumes and record system audio. ![cpp_icon] -- [BlackHole](https://github.com/ExistentialAudio/BlackHole) - BlackHole is a modern macOS virtual audio driver that allows applications to pass audio to other applications with zero additional latency. ![c_icon] -- [CAM](https://github.com/hanayik/CAM) - macOS camera recording using ffmpeg ![javascript_icon] -- [Clementine](https://github.com/clementine-player/Clementine) - Clementine is a modern music player and library organizer for Windows, Linux and macOS. ![cpp_icon] -- [Cog](https://bitbucket.org/losnoco/cog/src) - Cog is an open source audio player for macOS. The basic layout is a single-paned playlist interface with two retractable drawers, one for navigating the user's music folders and another for viewing audio file properties, like bitrate. ![objective_c_icon] -- [Karaoke Forever](https://github.com/bhj/KaraokeEternal) - Host awesome karaoke parties where everyone can queue songs from their phone's browser. Plays MP3+G and MP4 with WebGL visualizations. ![javascript_icon] -- [LocalRadio](https://github.com/dsward2/LocalRadio) - LocalRadio is software for listening to "Software-Defined Radio" on your Mac and mobile devices. ![objective_c_icon] -- [LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding. ![javascript_icon] -- [Lyricism](https://github.com/lyc2345/Lyricism) - macOS app to show you lyric what currently iTunes or Spotify is playing. ![objective_c_icon] ![swift_icon] -- [LyricsX](https://github.com/ddddxxx/LyricsX) - Lyrics for iTunes, Spotify and Vox. ![swift_icon] -- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. ![c_icon] -- [MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys. ![swift_icon] ![objective_c_icon] -- [Mous Player](https://github.com/bsdelf/mous) - Simple yet powerful audio player for BSD/Linux/macOS. ![cpp_icon] -- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. ![swift_icon] -- [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. ![swift_icon] -- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. ![swift_icon] -- [Scope](https://github.com/billthefarmer/audiotools/tree/master/Scope/swift) - Audio Oscilloscope ![swift_icon] -- [ShazamScrobbler](https://github.com/ShazamScrobbler/shazamscrobbler-macos) - Scrobble vinyl, radios, movies to Last.fm. ![objective_c_icon] -- [Sonora](https://github.com/sonoramac/Sonora) - Minimal, beautifully designed music player for macOS. ![objective_c_icon] -- [SpotMenu](https://github.com/kmikiy/SpotMenu) - Spotify and iTunes in your menu bar. ![objective_c_icon] ![swift_icon] -- [SpotSpot](https://github.com/will-stone/SpotSpot) - Spotify mini-player for macOS. ![javascript_icon] -- [Spotify4BigSur](https://github.com/fabiusBile/Spotify4BigSur) - Spotify widget for Notification Center. ![swift_icon] -- [Suohai](https://github.com/Sunnyyoung/Suohai) - Audio input/output source lock for macOS. ![swift_icon] -- [Tickeys](https://github.com/yingDev/Tickeys) - Instant audio feedback for typing. macOS version. ![rust_icon] -- [Tuner](https://github.com/billthefarmer/ctuner) - Musical Instrument Tuner ![swift_icon] -- [[Un]MuteMic](https://github.com/CocoaHeadsBrasil/MuteUnmuteMic) - macOS app to mute & unmute the input volume of your microphone. Perfect for podcasters. ![objective_c_icon] ![c_icon] -- [eqMac2](https://github.com/bitgapp/eqMac) - System-Wide Equalizer for the Mac. ![cpp_icon] -- [fre:ac](https://github.com/enzo1982/freac) - The fre:ac audio converter project. ![cpp_icon] -- [iTunes-Volume-Control](https://github.com/alberti42/iTunes-Volume-Control) - This app allows you to control the iTunes volume using volume up and volume down hotkeys. ![objective_c_icon] -- [jmc](https://github.com/jcm93/jmc) - jmc is new macOS media organizer. ![swift_icon] -- [shairport-sync](https://github.com/mikebrady/shairport-sync) - macOS/Linux/FreeBSD/OpenBSD Airplay audio receiver. ![c_icon] ![cpp_icon] -- [waveSDR](https://github.com/getoffmyhack/waveSDR) - macOS native desktop Software Defined Radio application using the RTL-SDR USB device. ![swift_icon] +### 🎵 Audio (36) +
[AUHost](https://github.com/vgorloff/AUHost) - Application which hosts AudioUnits v3 using AVFoundation API.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![c_icon]
Website: https://www.audacityteam.org/
Screenshots:

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

Languages: ![swift_icon]
Screenshots:



(5 more screenshots available in the repository)

+
[AutoMute](https://github.com/yonilevy/automute) - Automatically mute the sound when headphones disconnect / Mac awake from sleep.

Languages: ![objective_c_icon]
Website: https://yoni.ninja/automute/
Screenshots:


+
[Background Music](https://github.com/kyleneideck/BackgroundMusic) - Background Music, a macOS audio utility: automatically pause your music, set individual apps' volumes and record system audio.

Languages: ![cpp_icon]
Screenshots:

+
[BlackHole](https://github.com/ExistentialAudio/BlackHole) - BlackHole is a modern macOS virtual audio driver that allows applications to pass audio to other applications with zero additional latency.

Languages: ![c_icon]

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

Languages: ![javascript_icon]
Screenshots:



(1 more screenshots available in the repository)

+
[Clementine](https://github.com/clementine-player/Clementine) - Clementine is a modern music player and library organizer for Windows, Linux and macOS.

Languages: ![cpp_icon]
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.

Languages: ![objective_c_icon]
Website: https://cogx.org/

+
[Karaoke Forever](https://github.com/bhj/KaraokeEternal) - Host awesome karaoke parties where everyone can queue songs from their phone's browser. Plays MP3+G and MP4 with WebGL visualizations.

Languages: ![javascript_icon]
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.

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![javascript_icon]
Website: https://mifi.no/losslesscut/
Screenshots:

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

Languages: ![objective_c_icon] ![swift_icon]
Screenshots:



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

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

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

Languages: ![c_icon]
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.

Languages: ![swift_icon] ![objective_c_icon]
Screenshots:

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

Languages: ![cpp_icon]
Screenshots:



(2 more screenshots available in the repository)

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

Languages: ![swift_icon]

+
[PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Website: https://www.plugformac.com/
Screenshots:

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

Languages: ![swift_icon]
Website: https://billthefarmer.github.io/audiotools/
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![objective_c_icon] ![swift_icon]
Screenshots:

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

Languages: ![javascript_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![rust_icon]
Screenshots:



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

Languages: ![swift_icon]
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.

Languages: ![objective_c_icon] ![c_icon]
Screenshots:

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

Languages: ![cpp_icon]
Screenshots:


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

Languages: ![cpp_icon]
Screenshots:

+
[iTunes-Volume-Control](https://github.com/alberti42/iTunes-Volume-Control) - This app allows you to control the iTunes volume using volume up and volume down hotkeys.

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

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

Languages: ![c_icon] ![cpp_icon]

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

Languages: ![swift_icon]
Screenshots:

+ -### Backup -- [BorgBase/Vorta](https://github.com/borgbase) - Simple and Secure Offsite Backups ![python_icon] -- [Mackup](https://github.com/lra/mackup) - Keep your application settings in sync (macOS/Linux). ![python_icon] -- [Syncalicious](https://github.com/zenangst/Syncalicious) - Keeping multiple macOS preferences in sync can be painful, but it shouldn't be. ![swift_icon] -- [UrBackup](https://github.com/uroni/urbackup_backend) - UrBackup is Client/Server network backup for Windows, macOS and Linux. ![cpp_icon] ![c_icon] -- [shallow-backup](https://github.com/alichtman/shallow-backup) - Easily create lightweight documentation of installed applications, dotfiles, and more. ![python_icon] +### 💾 Backup (5) +
[BorgBase/Vorta](https://github.com/borgbase) - Simple and Secure Offsite Backups

Languages: ![python_icon]
Website: https://www.borgbase.com/

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

Languages: ![python_icon]

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

Languages: ![swift_icon]

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

Languages: ![cpp_icon] ![c_icon]

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

Languages: ![python_icon]
Screenshots:

+ -### Browser -- [Beaker Browser](https://github.com/beakerbrowser/beaker) - Beaker is an experimental peer-to-peer Web browser. ![javascript_icon] -- [Brave Browser](https://github.com/brave/brave-browser) - Brave browser for Desktop and Laptop computers running Windows, macOS, and Linux. ![javascript_icon] -- [Chromium](https://chromium.googlesource.com/chromium/src/) - Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web. ![javascript_icon] ![cpp_icon] ![c_icon] -- [Finicky](https://github.com/johnste/finicky) - Always opens the right browser. ![swift_icon] -- [Firefox](https://hg.mozilla.org/mozilla-central/) - Fast, privacy aware browser from a non-profit. Runs on Windows, macOS and Linux. ![javascript_icon] ![rust_icon] ![cpp_icon] -- [Helium](https://github.com/JadenGeller/Helium) - Floating browser window for macOS. ![objective_c_icon] ![swift_icon] -- [Min Browser](https://github.com/minbrowser/min) - A fast and efficient minimal web browser. ![javascript_icon] -- [Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium. ![javascript_icon] -- [Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper. ![swift_icon] -- [Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives. ![swift_icon] -- [browserosaurus](https://github.com/will-stone/browserosaurus) - macOS tool that prompts you to choose a browser when opening a link. ![javascript_icon] -- [otter-browser](https://github.com/OtterBrowser/otter-browser) - Otter Browser aims to recreate the best aspects of the classic Opera (12.x) UI using Qt5. ![cpp_icon] -- [seb-mac](https://github.com/SafeExamBrowser/seb-mac) - Safe Exam Browser for macOS and iOS. ![c_icon] +### 🌐 Browser (13) +
[Beaker Browser](https://github.com/beakerbrowser/beaker) - Beaker is an experimental peer-to-peer Web browser.

Languages: ![javascript_icon]
Screenshots:


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

Languages: ![javascript_icon]

+
[Chromium](https://chromium.googlesource.com/chromium/src/) - Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.

Languages: ![javascript_icon] ![cpp_icon] ![c_icon]
Website: https://www.chromium.org/

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

Languages: ![swift_icon]

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

Languages: ![javascript_icon] ![rust_icon] ![cpp_icon]
Website: https://www.mozilla.org/en-US/firefox/browsers/

+
[Helium](https://github.com/JadenGeller/Helium) - Floating browser window for macOS.

Languages: ![objective_c_icon] ![swift_icon]

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

Languages: ![javascript_icon]
Website: https://minbrowser.org

+
[Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium.

Languages: ![javascript_icon]
Screenshots:



(1 more screenshots available in the repository)

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

Languages: ![swift_icon]
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.

Languages: ![swift_icon]

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

Languages: ![javascript_icon]

+
[otter-browser](https://github.com/OtterBrowser/otter-browser) - Otter Browser aims to recreate the best aspects of the classic Opera (12.x) UI using Qt5.

Languages: ![cpp_icon]
Screenshots:

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

Languages: ![c_icon]

+ -### Chat -- [Adium](https://github.com/adium/adium) - Instant messaging application that can connect to XMPP (Jabber), IRC and more. ![c_icon] -- [Beagle IM](https://github.com/tigase/beagle-im) - Powerful XMPP client with support for file transfer, VoIP and end-to-end encryption. ![swift_icon] -- [ChitChat](https://github.com/stonesam92/ChitChat) - Native Mac app wrapper for WhatsApp Web. ![objective_c_icon] -- [Electronic WeChat](https://github.com/geeeeeeeeek/electronic-wechat) - Better WeChat on macOS and Linux. ![javascript_icon] -- [Element](https://github.com/vector-im/element-web) - Element is a collaboration app (currently Electron) for the [Matrix](https://matrix.org/) protocol. ![javascript_icon] -- [Franz](https://github.com/meetfranz/franz) - Franz is messaging application for services like WhatsApp, Slack, Messenger and many more. ![javascript_icon] -- [Google Allo for Desktop](https://github.com/kelyvin/Google-Allo-For-Desktop) - Native macOS & Windows desktop app for Google Allo. ![javascript_icon] -- [GroupMe](https://github.com/dcrousso/GroupMe) - Unofficial GroupMe App. ![javascript_icon] ![css_icon] -- [MessagesHistoryBrowser](https://github.com/glaurent/MessagesHistoryBrowser) - macOS application to comfortably browse and search through your Messages.app history. ![swift_icon] -- [RocketChat](https://github.com/RocketChat/Rocket.Chat.Electron) - Free open source chat system for teams. An alternative to Slack that can also be self hosted. ![javascript_icon] -- [Seaglass](https://github.com/neilalexander/seaglass) - A truly native [Matrix](https://matrix.org/blog/home/) client for macOS. ![swift_icon] -- [Signal Desktop](https://github.com/signalapp/Signal-Desktop) - Electron app that links with your Signal Android or Signal iOS app. ![javascript_icon] -- [Telegram](https://github.com/overtake/TelegramSwift) - Source code of Telegram for macOS on Swift. ![swift_icon] -- [Telegram Desktop](https://github.com/telegramdesktop/tdesktop) - Telegram Desktop messaging app. ![cpp_icon] -- [Textual](https://github.com/Codeux-Software/Textual) - Textual is an IRC client for macOS. ![objective_c_icon] -- [Thunderbird](https://hg.mozilla.org/mozilla-central) - Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client. ![cpp_icon] ![javascript_icon] ![rust_icon] -- [Torchat-Mac](https://github.com/javerous/TorChat-Mac) - TorChat for Mac is a macOS native and unofficial port of torchat. ![objective_c_icon] -- [WhatsAppBar](https://github.com/aldychris/WhatsAppBar) - Send WhatsApp message from menu bar. ![swift_icon] -- [Wire Desktop](https://github.com/wireapp/wire-desktop) - Standalone Electron app for the chatapp Wire. ![javascript_icon] +### 💬 Chat (19) +
[Adium](https://github.com/adium/adium) - Instant messaging application that can connect to XMPP (Jabber), IRC and more.

Languages: ![c_icon]
Website: https://adium.im/
Screenshots:

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

Languages: ![swift_icon]
Website: https://beagle.im/
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![javascript_icon]

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

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![javascript_icon] ![css_icon]
Screenshots:

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

Languages: ![swift_icon]

+
[RocketChat](https://github.com/RocketChat/Rocket.Chat.Electron) - Free open source chat system for teams. An alternative to Slack that can also be self hosted.

Languages: ![javascript_icon]
Website: https://www.rocket.chat/

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![javascript_icon]

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

Languages: ![swift_icon]

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

Languages: ![cpp_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:



(1 more screenshots available in the repository)

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

Languages: ![cpp_icon] ![javascript_icon] ![rust_icon]
Website: https://www.thunderbird.net/en-US/
Screenshots:



+
[Torchat-Mac](https://github.com/javerous/TorChat-Mac) - TorChat for Mac is a macOS native and unofficial port of torchat.

Languages: ![objective_c_icon]

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

Languages: ![swift_icon]
Screenshots:



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

Languages: ![javascript_icon]

+ -### Cryptocurrency -- [Balance Open](https://github.com/balance-io/balance-open) - App for all the world’s currencies. ![swift_icon] -- [CoinBar](https://github.com/adamwaite/CoinBar) - macOS menu bar application for tracking crypto coin prices. ![swift_icon] -- [Copay](https://github.com/bitpay/copay) - A secure bitcoin wallet platform for both desktop and mobile devices. ![typescript_icon] -- [Crypto Bar](https://github.com/geraldoramos/crypto-bar) - macOS menu bar application built with Electron. ![javascript_icon] -- [Float coin](https://github.com/kaunteya/FloatCoin) - Native menu bar app with floating window and support for many Exchanges. ![swift_icon] +### 💰 Cryptocurrency (5) +
[Balance Open](https://github.com/balance-io/balance-open) - App for all the world’s currencies.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

+
[Copay](https://github.com/bitpay/copay) - A secure bitcoin wallet platform for both desktop and mobile devices.

Languages: ![typescript_icon]

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

Languages: ![javascript_icon]

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

Languages: ![swift_icon]
Screenshots:

+ -### Database -- [Bdash](https://github.com/bdash-app/bdash) - Simple SQL Client for lightweight data analysis. ![javascript_icon] -- [Beekeeper Studio](https://github.com/beekeeper-studio/beekeeper-studio) - SQL editor and manager with support for SQLite, MySQL, MariaDB, Postgres, CockroachDB, SQL Server, and Amazon Redshift. ![javascript_icon] -- [DB Browser for SQLite](https://github.com/sqlitebrowser/sqlitebrowser) - SQLite database management GUI. ![cpp_icon] -- [DBeaver](https://github.com/dbeaver/dbeaver) - Universal database tool and SQL client. ![java_icon] -- [DbGate](https://github.com/dbgate/dbgate) - Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application. ![javascript_icon] ![typescript_icon] -- [Medis](https://github.com/luin/medis) - 💻 Medis is a beautiful, easy-to-use Mac database management application for Redis. ![javascript_icon] -- [MongoHub](https://github.com/jeromelebel/MongoHub-Mac) - Add another lightweight Mac Native MongoDB client. ![objective_c_icon] ![c_icon] -- [Postbird](https://github.com/Paxa/postbird) - PostgreSQL GUI client for macOS. ![javascript_icon] -- [Postgres.app](https://github.com/PostgresApp/PostgresApp) - The easiest way to get started with PostgreSQL on the Mac. ![swift_icon] -- [Redis Desktop Manager](https://github.com/uglide/RedisDesktopManager) - Cross-platform open source database management tool for Redis ® ![cpp_icon] -- [Redis.app](https://github.com/jpadilla/redisapp) - The easiest way to get started with Redis on the Mac. ![swift_icon] -- [Robo 3T](https://github.com/Studio3T/robomongo) - Robo 3T (formerly Robomongo) is the free lightweight GUI for MongoDB enthusiasts. ![cpp_icon] -- [Sequel Ace](https://github.com/Sequel-Ace/Sequel-Ace) - Sequel Ace is a fast, easy-to-use Mac database management application for working with MySQL & MariaDB databases. ![objective_c_icon] -- [Sequel Pro](https://github.com/sequelpro/sequelpro) - MySQL/MariaDB database management for macOS. ![objective_c_icon] -- [mongoDB.app](https://github.com/gcollazo/mongodbapp) - The easiest way to get started with mongoDB on the Mac. ![swift_icon] -- [redis-pro](https://github.com/cmushroom/redis-pro) - Redis management with SwiftUI. ![swift_icon] -- [reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system. ![typescript_icon] ![swift_icon] -- [sqlectron](https://github.com/sqlectron/sqlectron-gui) - A simple and lightweight SQL client desktop/terminal with cross database and platform support. ![typescript_icon] +### 🗄️ Database (18) +
[Bdash](https://github.com/bdash-app/bdash) - Simple SQL Client for lightweight data analysis.

Languages: ![javascript_icon]
Screenshots:


+
[Beekeeper Studio](https://github.com/beekeeper-studio/beekeeper-studio) - SQL editor and manager with support for SQLite, MySQL, MariaDB, Postgres, CockroachDB, SQL Server, and Amazon Redshift.

Languages: ![javascript_icon]
Website: https://www.beekeeperstudio.io
Screenshots:


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

Languages: ![cpp_icon]
Screenshots:

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

Languages: ![java_icon]
Screenshots:



(1 more screenshots available in the repository)

+
[DbGate](https://github.com/dbgate/dbgate) - Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application.

Languages: ![javascript_icon] ![typescript_icon]
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.

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![objective_c_icon] ![c_icon]

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

Languages: ![javascript_icon]
Screenshots:



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

Languages: ![swift_icon]

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

Languages: ![cpp_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![cpp_icon]
Screenshots:

+
[Sequel Ace](https://github.com/Sequel-Ace/Sequel-Ace) - Sequel Ace is a fast, easy-to-use Mac database management application for working with MySQL & MariaDB databases.

Languages: ![objective_c_icon]
Website: https://sequel-ace.com/

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

Languages: ![objective_c_icon]
Screenshots:


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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![typescript_icon] ![swift_icon]
Screenshots:

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

Languages: ![typescript_icon]
Website: https://sqlectron.github.io/
Screenshots:

+ -### Development -- [Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more. ![java_icon] -- [Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript. ![javascript_icon] -- [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. ![swift_icon] ![c_sharp_icon] ![objective_c_icon] -- [GitAhead](https://github.com/gitahead/gitahead/) - A graphical Git client designed to help you understand and manage your source code history. ![cpp_icon] ![c_icon] -- [KiCad](https://gitlab.com/kicad/code/kicad) - A software suite for electronic design automation. ![cpp_icon] ![c_icon] -- [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. ![swift_icon] -- [Pasteboard Viewer](https://github.com/sindresorhus/Pasteboard-Viewer) - Inspect the system pasteboards. ![swift_icon] -- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. ![swift_icon] -- [utmapp](https://github.com/utmapp/) - Virtualization for other operating systems. ![swift_icon] ![objective_c_icon] +### 👨‍💻 Development (9) +
[Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more.

Languages: ![java_icon]
Website: https://netbeans.apache.org/
Screenshots:


+
[Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript.

Languages: ![javascript_icon]
Website: https://brackets.io/
Screenshots:

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

Languages: ![swift_icon] ![c_sharp_icon] ![objective_c_icon]
Website: https://imazing.com/colorset
Screenshots:

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

Languages: ![cpp_icon] ![c_icon]
Website: https://gitahead.github.io/gitahead.com/

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

Languages: ![cpp_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.

Languages: ![swift_icon]
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.

Languages: ![swift_icon]
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.

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon] ![objective_c_icon]
Website: https://mac.getutm.app/
Screenshots:

+ -#### Git -- [Cashew](https://github.com/dhennessy/OpenCashew) - Cashew macOS Github Issue Tracker. ![objective_c_icon] ![c_icon] -- [GPM](https://github.com/mtgto/GPM) - macOS application for easily operating GitHub Projects. ![swift_icon] -- [Git Interactive Rebase Tool](https://github.com/MitMaro/git-interactive-rebase-tool) - Full feature terminal based sequence editor for interactive rebase. ![rust_icon] -- [GitAhead](https://github.com/gitahead/gitahead/) - A graphical Git client designed to help you understand and manage your source code history. ![cpp_icon] ![c_icon] -- [GitBlamePR](https://github.com/maoyama/GitBlamePR) - Mac app that shows pull request last modified each line of a file ![swift_icon] -- [GitHub Desktop](https://github.com/desktop/desktop) - Simple collaboration from your desktop. ![typescript_icon] -- [GitSync](https://github.com/eonist/GitSync) - Minimalistic Git client for Mac. ![swift_icon] -- [GitUp](https://github.com/git-up/GitUp) - The Git interface you've been missing all your life has finally arrived. ![objective_c_icon] -- [GitX](https://github.com/gitx/gitx) - Graphical client for the git version control system. ![objective_c_icon] -- [Gitee](https://github.com/Nightonke/Gitee) - Gitee, macOS status bar application for Github. ![objective_c_icon] ![swift_icon] -- [Github contributions](https://github.com/remirobert/Github-contributions) - GitHub contributions app, for iOS, WatchOS, and macOS. ![swift_icon] -- [GithubListener](https://github.com/ad/GithubListener) - Simple app that will notify about new commits to watched repositories. ![swift_icon] -- [GithubNotify](https://github.com/erik/github-notify) - Simple macOS app to alert you when you have unread GitHub notifications. ![swift_icon] -- [Gitify](https://github.com/manosim/gitify) - Your GitHub notifications on your menu bar. ![javascript_icon] -- [Streaker](https://github.com/jamieweavis/streaker) - GitHub contribution streak tracking menubar app. ![javascript_icon] -- [TeamStatus-for-GitHub](https://github.com/marcinreliga/TeamStatus-for-GitHub) - macOS status bar application for tracking code review process within the team. ![swift_icon] -- [Tempo](https://github.com/maoyama/Tempo) - Replace the Git CLI with a clear UI and AI assist. ![swift_icon] -- [Trailer](https://github.com/ptsochantaris/trailer) - Managing Pull Requests and Issues For GitHub & GitHub Enterprise. ![swift_icon] -- [Xit](https://github.com/Uncommon/Xit) - Xit is a graphical tool for working with git repositories. ![swift_icon] -- [osagitfilter](https://github.com/doekman/osagitfilter) - Filter to put OSA languages (AppleScript, JavaScript) into git, as if they where plain text-files. ![shell_icon] ![applescript_icon] +#### 📦 Git (20) +
[Cashew](https://github.com/dhennessy/OpenCashew) - Cashew macOS Github Issue Tracker.

Languages: ![objective_c_icon] ![c_icon]

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

Languages: ![swift_icon]

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

Languages: ![rust_icon]
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.

Languages: ![cpp_icon] ![c_icon]
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

Languages: ![swift_icon]

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

Languages: ![typescript_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:



(2 more screenshots available in the repository)

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

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon] ![swift_icon]
Screenshots:



(11 more screenshots available in the repository)

+
[Github contributions](https://github.com/remirobert/Github-contributions) - GitHub contributions app, for iOS, WatchOS, and macOS.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![javascript_icon]
Website: https://www.gitify.io/
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![shell_icon] ![applescript_icon]

+ -#### JSON Parsing -- [JSON Mapper](https://github.com/AppCraft-LLC/json-mapper) - Simple macOS app to generate Swift Object Mapper classes from JSON. ![swift_icon] -- [JSON to Model class](https://github.com/chanonly123/Json-Model-Generator) - Template based highly customizable macOS app to generate classes from JSON string, supports many languages. ![swift_icon] -- [JSONExport](https://github.com/Ahmed-Ali/JSONExport) - Desktop application for macOS which enables you to export JSON objects as model classes with their associated constructors, utility methods, setters and getters in your favorite language. ![swift_icon] -- [j2s](https://github.com/zadr/j2s) - macOS app to convert JSON objects into Swift structs (currently targets Swift 4 and Codable). ![swift_icon] +#### 📦 JSON Parsing (4) +
[JSON Mapper](https://github.com/AppCraft-LLC/json-mapper) - Simple macOS app to generate Swift Object Mapper classes from JSON.

Languages: ![swift_icon]

+
[JSON to Model class](https://github.com/chanonly123/Json-Model-Generator) - Template based highly customizable macOS app to generate classes from JSON string, supports many languages.

Languages: ![swift_icon]
Screenshots:

+
[JSONExport](https://github.com/Ahmed-Ali/JSONExport) - Desktop application for macOS which enables you to export JSON objects as model classes with their associated constructors, utility methods, setters and getters in your favorite language.

Languages: ![swift_icon]
Screenshots:

+
[j2s](https://github.com/zadr/j2s) - macOS app to convert JSON objects into Swift structs (currently targets Swift 4 and Codable).

Languages: ![swift_icon]

+ -#### Other Development -- [Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers. ![swift_icon] ![javascript_icon] -- [ChefInspector](https://github.com/Yasumoto/ChefInspector) - Node and Attribute viewer for Chef ![swift_icon] -- [MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client. ![javascript_icon] ![typescript_icon] -- [macho-browser](https://github.com/dcsch/macho-browser) - Browser for macOS Mach-O binaries. ![objective_c_icon] -- [vegvisir](https://github.com/ant4g0nist/vegvisir) - Browser based GUI for **LLDB** Debugger. ![javascript_icon] +#### 📦 Other Development (5) +
[Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers.

Languages: ![swift_icon] ![javascript_icon]
Website: https://boop.okat.best
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![javascript_icon] ![typescript_icon]
Screenshots:


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

Languages: ![objective_c_icon]

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

Languages: ![javascript_icon]
Screenshots:



(5 more screenshots available in the repository)

+ -#### Web Development -- [CoreOS VM](https://github.com/TheNewNormal/coreos-osx) - CoreOS VM is macOS status bar app which allows in an easy way to control CoreOS VM on your Mac. ![objective_c_icon] -- [Corectl App for macOS](https://github.com/TheNewNormal/corectl.app) - Corectl App is a macOS Status bar App which works like a wrapper around the corectl command line tool corectld to control the server runtime process. ![swift_icon] -- [HTTP Toolkit](https://github.com/httptoolkit/httptoolkit-desktop) - HTTP Toolkit is a cross-platform tool to intercept, debug & mock HTTP. ![typescript_icon] -- [Insomnia](https://github.com/Kong/insomnia) - Insomnia is a cross-platform REST client, built on top of Electron. ![javascript_icon] -- [KubeMonitor](https://github.com/Daniel-Sanche/KubeMonitor) - KubeMonitor is a macOS app that displays information about your active Kubernetes cluster in your menu bar. ![swift_icon] -- [KubeSwitch](https://github.com/nsriram/KubeSwitch) - KubeSwitch lists the available kubernetes cluster contexts on the mac, in Mac's Menu bar. ![swift_icon] -- [Lantern](https://github.com/RoyalIcing/Lantern) - Dedicated Mac app for website auditing and crawling. ![swift_icon] -- [LocalSites](https://github.com/plan44/localSites) - Simple Menu Bar (Status Bar) App for macOS listing local Bonjour websites (as Safari 11 no longer has Bonjour Bookmarks). ![swift_icon] -- [SimpleLocalize CLI](https://github.com/simplelocalize/simplelocalize-cli) - Open source tool for managing i18n keys in software projects. ![swift_icon] -- [aws-s3-uploader](https://github.com/RafalWilinski/s3-uploader) - Simple macOS app for uploading files to Amazon Web Services. ![javascript_icon] -- [iTunesConnect](https://github.com/trulyronak/itunesconnect) - macOS app to let you access iTunesConnect. ![swift_icon] -- [ndm](https://github.com/720kb/ndm) - Npm desktop GUI. ![javascript_icon] -- [nodeScratchpad](https://github.com/vsaravind007/nodeScratchpad) - Evaluate Nodejs/JS code snippets from Menubar. ![swift_icon] -- [stts](https://github.com/inket/stts) - macOS app for monitoring the status of cloud services. ![swift_icon] +#### 📦 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.

Languages: ![objective_c_icon]
Screenshots:

+
[Corectl App for macOS](https://github.com/TheNewNormal/corectl.app) - Corectl App is a macOS Status bar App which works like a wrapper around the corectl command line tool corectld to control the server runtime process.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![typescript_icon]
Website: https://httptoolkit.com/
Screenshots:



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

Languages: ![javascript_icon]
Screenshots:

+
[KubeMonitor](https://github.com/Daniel-Sanche/KubeMonitor) - KubeMonitor is a macOS app that displays information about your active Kubernetes cluster in your menu bar.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]

+
[LocalSites](https://github.com/plan44/localSites) - Simple Menu Bar (Status Bar) App for macOS listing local Bonjour websites (as Safari 11 no longer has Bonjour Bookmarks).

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Website: https://simplelocalize.io

+
[aws-s3-uploader](https://github.com/RafalWilinski/s3-uploader) - Simple macOS app for uploading files to Amazon Web Services.

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

+ -#### iOS / macOS -- [AVXCAssets Generator](https://github.com/angelvasa/AVXCAssets-Generator) - Takes path for your assets images and creates appiconset and imageset for you in just one click. ![swift_icon] -- [AppBox](https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation) - Tool for iOS developers to build and deploy Development, Ad-Hoc and In-house (Enterprise) applications directly to the devices from your Dropbox account. ![objective_c_icon] -- [AppIcons](https://github.com/kuyawa/AppIcons) - Tool for generating icons in all sizes as required by macOS and iOS apps. ![swift_icon] -- [AppStoreReviewTimes](https://github.com/arbel03/AppStoreReviewTimes) - Gives you indication about the average iOS / macOS app stores review times. ![swift_icon] -- [AppleTrace](https://github.com/everettjf/AppleTrace) - Trace tool for iOS/macOS. ![objective_c_icon] -- [Asset Catalog Tinkerer](https://github.com/insidegui/AssetCatalogTinkerer) - App that lets you open .car files and browse/extract their images. ![objective_c_icon] ![swift_icon] -- [Assets](https://github.com/e7711bbear/Assets) - Assets is a macOS app that manages assets for your development projects (Xcode, web, etc). ![swift_icon] -- [Attabench](https://github.com/attaswift/Attabench) - Attabench is a microbenchmarking app for macOS, designed to measure and visualize the performance of Swift code. ![swift_icon] -- [Board For GitHub](https://github.com/JustinFincher/BoardForGitHub) - Small application to monitor your GitHub project web page in a native macOS app :octocat:! ![objective_c_icon] -- [Brisk](https://github.com/br1sk/brisk) - macOS app for submitting radars. ![swift_icon] -- [Cleaner for Xcode](https://github.com/waylybaye/XcodeCleaner) - Cleaner for Xcode.app built with react-native-macOS. ![objective_c_icon] -- [CocoaRestClient](https://github.com/mmattozzi/cocoa-rest-client) - Native Apple macOS app for testing HTTP/REST endpoints. ![objective_c_icon] -- [Corona Tracker](https://github.com/MhdHejazi/CoronaTracker) - Coronavirus tracker app for iOS & macOS with maps & charts. ![swift_icon] -- [FilterShop](https://github.com/KrisYu/FilterShop) - macOS App to explore CoreImage Filters. ![swift_icon] -- [IconGenerator](https://github.com/onmyway133/IconGenerator) - macOS app to generate app icons. ![javascript_icon] -- [Iconizer](https://github.com/raphaelhanneken/iconizer) - Create Xcode image catalogs (xcassets) on the fly. ![swift_icon] -- [Iconology](https://github.com/liamrosenfeld/Iconology) - Edit icons and then export to Xcode, icns, ico, favicon, macOS iconset, or a custom collection. ![swift_icon] -- [Icons.app](https://github.com/SAP/macos-icon-generator) - App for macOS which is designed to generate consistent sized icons of an existing application in various states, jiggling (shaking) etc. ![objective_c_icon] -- [InjectionIII](https://github.com/johnno1962/InjectionIII) - overdue Swift rewrite of Injection. ![objective_c_icon] ![swift_icon] -- [Knuff](https://github.com/KnuffApp/Knuff) - The debug application for Apple Push Notification Service (APNs). ![objective_c_icon] -- [LayerX](https://github.com/yuhua-chen/LayerX) - Intuitive app to display transparent images on screen. ![swift_icon] -- [Localizable.strings](https://github.com/cristibaluta/Localizable.strings) - Mac app to localize your iOS and macOS projects. ![swift_icon] -- [Localization Editor](https://github.com/igorkulman/iOSLocalizationEditor) - Simple macOS editor app to help you manage iOS app localizations by allowing you to edit all the translations side by side. ![swift_icon] -- [Localizations](https://github.com/e7711bbear/Localizations) - Localizations is an macOS app that manages your Xcode project localization files (.strings). ![swift_icon] -- [Menubar Colors](https://github.com/nvzqz/Menubar-Colors) - macOS app for convenient access to the system color panel. ![swift_icon] -- [Notarize](https://github.com/macmade/Notarize) - Notarization status monitoring tool for macOS, supporting multiple developer accounts ![swift_icon] -- [PodsUpdater](https://github.com/kizitonwose/PodsUpdater) - macOS app which helps you manage dependency releases in your Podfile. ![swift_icon] -- [ProfilesManager](https://github.com/shaojiankui/ProfilesManager) - Apple iOS/macOS Provisioning Profiles management,.provisionprofile, .mobileprovision files manager tool for mac. ![objective_c_icon] -- [PushNotifications](https://github.com/onmyway133/PushNotifications) - macOS app to test push notifications on iOS and Android. ![javascript_icon] -- [ResignTool](https://github.com/InjoyDeng/ResignTool) - This is an app for macOS that can (re)sign apps and bundle them into ipa files that are ready to be installed on an iOS device. ![objective_c_icon] -- [Resizr](https://github.com/onurgenes/Resizr) - MacOS application for creating AppIcon for iOS and Android apps. ![swift_icon] -- [SmartPush](https://github.com/shaojiankui/SmartPush) - iOS Push Notification Debug App. ![objective_c_icon] -- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. ![swift_icon] -- [TransporterPad](https://github.com/iseebi/TransporterPad) - iOS/Android app deployment tool for macOS. ![swift_icon] -- [WWDC](https://github.com/insidegui/WWDC) - Unofficial WWDC app for macOS. ![swift_icon] -- [WWDC.srt](https://github.com/ssamadgh/WWDCsrt) - Powerful app for downloading subtitle for each WWDC session video since 2013 in (srt) format. ![swift_icon] -- [Xcodes.app](https://github.com/RobotsAndPencils/XcodesApp) - The easiest way to install and switch between multiple versions of Xcode. ![swift_icon] -- [calabash-launcher](https://github.com/xing/calabash-launcher) - iOS Calabash Launcher is a macOS app that helps you run and manage Calabash tests on your Mac. ![swift_icon] -- [iOS Images Extractor](https://github.com/devcxm/iOS-Images-Extractor) - iOS Images Extractor is a Mac app to normalize, decode, and extract images from iOS apps. ![objective_c_icon] -- [iSimulator](https://github.com/wigl/iSimulator) - iSimulator is a GUI utility to control the Simulator and manage the app installed on the simulator. ![objective_c_icon] -- [xib2Storyboard](https://github.com/novemberfiveco/xib2Storyboard) - Tool to convert Xcode .xib to .storyboard files. ![objective_c_icon] +#### 📦 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.

Languages: ![swift_icon]

+
[AppBox](https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation) - Tool for iOS developers to build and deploy Development, Ad-Hoc and In-house (Enterprise) applications directly to the devices from your Dropbox account.

Languages: ![objective_c_icon]
Screenshots:



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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon] ![swift_icon]
Screenshots:



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

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:



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

Languages: ![objective_c_icon]
Screenshots:



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

Languages: ![swift_icon]
Screenshots:


+
[Cleaner for Xcode](https://github.com/waylybaye/XcodeCleaner) - Cleaner for Xcode.app built with react-native-macOS.

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon]
Screenshots:



(2 more screenshots available in the repository)

+
[Corona Tracker](https://github.com/MhdHejazi/CoronaTracker) - Coronavirus tracker app for iOS & macOS with maps & charts.

Languages: ![swift_icon]
Website: https://coronatracker.samabox.com/
Screenshots:


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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:


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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
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.

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon] ![swift_icon]

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]

+
[Localization Editor](https://github.com/igorkulman/iOSLocalizationEditor) - Simple macOS editor app to help you manage iOS app localizations by allowing you to edit all the translations side by side.

Languages: ![swift_icon]

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:



(6 more screenshots available in the repository)

+
[ResignTool](https://github.com/InjoyDeng/ResignTool) - This is an app for macOS that can (re)sign apps and bundle them into ipa files that are ready to be installed on an iOS device.

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:



(2 more screenshots available in the repository)

+
[Xcodes.app](https://github.com/RobotsAndPencils/XcodesApp) - The easiest way to install and switch between multiple versions of Xcode.

Languages: ![swift_icon]
Screenshots:

+
[calabash-launcher](https://github.com/xing/calabash-launcher) - iOS Calabash Launcher is a macOS app that helps you run and manage Calabash tests on your Mac.

Languages: ![swift_icon]
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.

Languages: ![objective_c_icon]
Screenshots:


+
[iSimulator](https://github.com/wigl/iSimulator) - iSimulator is a GUI utility to control the Simulator and manage the app installed on the simulator.

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon]

+ -### Downloader -- [App Downloader](https://github.com/yep/app-downloader) - Easily search and download macOS apps from the huge `homebrew cask` app catalog. ![swift_icon] -- [Extream Download Manager](https://github.com/subhra74/xdm) - a powerful tool to increase download speeds up to 500% ![java_icon] -- [Get It](https://github.com/Kevin-De-Koninck/Get-It) - Native macOS video/audio downloader. Think of it as a youtube downloader that works on many sites. ![swift_icon] -- [Motrix](https://github.com/agalwood/Motrix) - A full-featured download manager. ![javascript_icon] -- [Pillager](https://github.com/Pjirlip/Pillager) - macOS Video Downloader written in Swift and Objective-C. ![objective_c_icon] ![swift_icon] -- [YouTube Downloader for macOS](https://github.com/DenBeke/YouTube-Downloader-for-macOS) - Simple menu bar app to download YouTube movies on your Mac. I wrote this as a test project to learn more about app development on macOS. ![swift_icon] -- [udemy-downloader-gui](https://github.com/FaisalUmair/udemy-downloader-gui) - desktop application for downloading Udemy Courses. ![javascript_icon] +### ⬇️ Downloader (7) +
[App Downloader](https://github.com/yep/app-downloader) - Easily search and download macOS apps from the huge `homebrew cask` app catalog.

Languages: ![swift_icon]

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

Languages: ![java_icon]
Website: https://subhra74.github.io/xdm/

+
[Get It](https://github.com/Kevin-De-Koninck/Get-It) - Native macOS video/audio downloader. Think of it as a youtube downloader that works on many sites.

Languages: ![swift_icon]

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

Languages: ![javascript_icon]
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.

Languages: ![objective_c_icon] ![swift_icon]
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.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![javascript_icon]

+ -### Editors -- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. ![swift_icon] -- [Chime](https://github.com/ChimeHQ/Chime) - An editor for macOS ![swift_icon] -- [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. ![swift_icon] -- [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. ![c_icon] ![c++_icon] +### 📝 Editors (4) +
[AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS.

Languages: ![swift_icon]
Website: https://auroraeditor.com
Screenshots:

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

Languages: ![swift_icon]
Website: https://www.chimehq.com/
Screenshots:

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

Languages: ![swift_icon]
Website: https://www.codeedit.app/
Screenshots:

+
[Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.

Languages: ![c_icon] ![c++_icon]
Website: https://www.geany.org/
Screenshots:

+ -#### CSV -- [TableTool](https://github.com/jakob/TableTool) - simple CSV editor for the macOS. ![objective_c_icon] +#### 📦 CSV (1) +
[TableTool](https://github.com/jakob/TableTool) - simple CSV editor for the macOS.

Languages: ![objective_c_icon]

+ -#### JSON -- [JSON Editor](https://github.com/fand/json-editor-app) - Dead simple JSON editor using josdejong/jsoneditor ![typescript_icon] -- [JSON-Splora](https://github.com/wellsjo/JSON-Splora) - GUI for editing, visualizing, and manipulating JSON data. ![javascript_icon] +#### 📦 JSON (2) +
[JSON Editor](https://github.com/fand/json-editor-app) - Dead simple JSON editor using josdejong/jsoneditor

Languages: ![typescript_icon]
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:


+ -#### Markdown -- [Gingko](https://github.com/gingko/client) - Tree-structured markdown editor for macOS, Windows, and Linux. ![elm_icon] -- [MacDown](https://github.com/MacDownApp/macdown) - Markdown editor for macOS. ![objective_c_icon] -- [Mark Text](https://github.com/marktext/marktext/) - Realtime preview markdown editor for macOS Windows and Linux. ![javascript_icon] -- [MarkEdit](https://github.com/MarkEdit-app/MarkEdit) - MarkEdit is a free and open-source Markdown editor, for macOS. It's just like TextEdit on Mac but dedicated to Markdown. ![swift_icon] ![typescript_icon] -- [Notenik](https://github.com/hbowie/notenik-swift) - Note-taking app with many organizational options. ![swift_icon] -- [Obsidian plugins & themes](https://github.com/obsidianmd/obsidian-releases) - Community plugins list, theme list, and releases of Obsidian. ![javascript_icon] -- [Pine](https://github.com/lukakerr/Pine) - A modern MacOS markdown editor. ![swift_icon] -- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. ![cpp_icon] -- [Zettlr](https://github.com/Zettlr/Zettlr) - A Markdown Editor for the 21st century. ![javascript_icon] ![typescript_icon] -- [linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis. ![javascript_icon] ![vue_icon] ![css_icon] +#### 📦 Markdown (10) +
[Gingko](https://github.com/gingko/client) - Tree-structured markdown editor for macOS, Windows, and Linux.

Languages: ![elm_icon]
Screenshots:

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

Languages: ![objective_c_icon]

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

Languages: ![javascript_icon]

+
[MarkEdit](https://github.com/MarkEdit-app/MarkEdit) - MarkEdit is a free and open-source Markdown editor, for macOS. It's just like TextEdit on Mac but dedicated to Markdown.

Languages: ![swift_icon] ![typescript_icon]
Website: https://markedit.app/
Screenshots:



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

Languages: ![swift_icon]
Website: https://notenik.app
Screenshots:

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

Languages: ![javascript_icon]
Website: https://obsidian.md/
Screenshots:

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

Languages: ![swift_icon]
Screenshots:



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

Languages: ![cpp_icon]
Website: https://www.qownnotes.org/
Screenshots:

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

Languages: ![javascript_icon] ![typescript_icon]
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.

Languages: ![javascript_icon] ![vue_icon] ![css_icon]
Website: https://uselinked.com
Screenshots:


+ -#### TeX -- [Qilin Editor](https://github.com/qilin-editor/qilin-app) - Text editor for exact sciences with built-in KaTeX/AsciiMath support. ![javascript_icon] +#### 📦 TeX (1) +
[Qilin Editor](https://github.com/qilin-editor/qilin-app) - Text editor for exact sciences with built-in KaTeX/AsciiMath support.

Languages: ![javascript_icon]
Screenshots:



+ -#### Text -- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. ![swift_icon] -- [CotEditor](https://github.com/coteditor/CotEditor) - Lightweight Plain-Text Editor for macOS. ![swift_icon] -- [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. ![c_icon] ![c++_icon] -- [MacVim](https://github.com/macvim-dev/macvim) - Text editor for macOS. ![c_icon] -- [Noto](https://github.com/brunophilipe/noto) - Plain text editor for macOS with customizable themes. ![swift_icon] -- [SubEthaEdit](https://github.com/subethaedit/SubEthaEdit) - General purpose plain text editor for macOS. Widely known for its live collaboration feature. ![objective_c_icon] -- [TextMate](https://github.com/textmate/textmate) - TextMate is a graphical text editor for macOS. ![objective_c_icon] -- [Tincta](https://github.com/CodingFriends/Tincta) - One-window text editor with syntax highlighting. ![objective_c_icon] -- [VimR](https://github.com/qvacua/vimr) - Refined Neovim experience for macOS. ![swift_icon] -- [micro](https://github.com/zyedidia/micro) - A terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the capabilities of modern terminals. ![go_icon] -- [reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system. ![typescript_icon] ![swift_icon] +#### 📦 Text (11) +
[AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS.

Languages: ![swift_icon]
Website: https://auroraeditor.com
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

+
[Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.

Languages: ![c_icon] ![c++_icon]
Website: https://www.geany.org/
Screenshots:

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

Languages: ![c_icon]

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![objective_c_icon]
Screenshots:


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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Website: https://codingfriends.github.io/Tincta/

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

Languages: ![swift_icon]

+
[micro](https://github.com/zyedidia/micro) - A terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the capabilities of modern terminals.

Languages: ![go_icon]
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.

Languages: ![typescript_icon] ![swift_icon]
Screenshots:

+ -### Extensions -- [AdGuard for Safari](https://github.com/adguardteam/adguardforsafari) - The most advanced ad blocking extension for Safari ![javascript_icon] -- [BetterPiP](https://github.com/Capevace/BetterPiP) - Use native picture-in-picture with browsers such as Google Chrome for HTML5 videos. ![swift_icon] -- [Is It Private?](https://github.com/ffittschen/IsItPrivate) - A Safari Extension providing a toolbar icon that changes its visual appearance if Private Browsing is enabled. ![swift_icon] -- [Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse ![c_icon] -- [PageExtender](https://github.com/fphilipe/PageExtender.app) - Extend pages with your own CSS and JS files. ![swift_icon] ![javascript_icon] -- [PiPTool](https://github.com/bfmatei/PiPTool) - Add the Picture-in-Picture Functionality to YouTube, Netflix, Plex and other video broadcasting services in macOS. ![javascript_icon] -- [PiPifier](https://github.com/arnoappenzeller/PiPifier) - PiPifier is a native macOS 10.12 Safari extension that lets you use every HTML5 video in Picture in Picture mode. ![swift_icon] -- [Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives. ![swift_icon] -- [Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions ![swift_icon] -- [Swimat](https://github.com/Jintin/Swimat) - Swimat is an Xcode plug-in to format your Swift code. ![swift_icon] -- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' ![swift_icon] -- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari ![swift_icon] -- [nef](https://github.com/bow-swift/nef-plugin) - This Xcode extension enables you to make a code selection and export it to a snippets. Available on Mac AppStore. ![swift_icon] +### 🧩 Extensions (13) +
[AdGuard for Safari](https://github.com/adguardteam/adguardforsafari) - The most advanced ad blocking extension for Safari

Languages: ![javascript_icon]
Website: https://adguard.com/en/welcome.html
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

+
[Is It Private?](https://github.com/ffittschen/IsItPrivate) - A Safari Extension providing a toolbar icon that changes its visual appearance if Private Browsing is enabled.

Languages: ![swift_icon]
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

Languages: ![c_icon]
Screenshots:

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

Languages: ![swift_icon] ![javascript_icon]
Screenshots:

+
[PiPTool](https://github.com/bfmatei/PiPTool) - Add the Picture-in-Picture Functionality to YouTube, Netflix, Plex and other video broadcasting services in macOS.

Languages: ![javascript_icon]

+
[PiPifier](https://github.com/arnoappenzeller/PiPifier) - PiPifier is a native macOS 10.12 Safari extension that lets you use every HTML5 video in Picture in Picture mode.

Languages: ![swift_icon]
Screenshots:



+
[Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives.

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Website: https://jintin.github.io/Swimat/
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

+
[nef](https://github.com/bow-swift/nef-plugin) - This Xcode extension enables you to make a code selection and export it to a snippets. Available on Mac AppStore.

Languages: ![swift_icon]
Website: https://nef.bow-swift.io/
Screenshots:


+ -### Finder -- [Clipy](https://github.com/Clipy/Clipy) - Clipy is a Clipboard extension app for macOS. ![swift_icon] -- [CopyQ](https://github.com/hluk/CopyQ) - Clipboard manager with advanced features ![cpp_icon] -- [Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder. ![swift_icon] -- [FiScript](https://github.com/Mortennn/FiScript) - Execute custom scripts from the MacOS context menu (CTRL+click) in Finder. ![swift_icon] -- [Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder. ![swift_icon] -- [OpenInCode](https://github.com/sozercan/OpenInCode) - Finder toolbar app to open current folder in Visual Studio Code. ![objective_c_icon] -- [OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - Finder Toolbar app for macOS to open the current directory in Terminal, iTerm, Hyper or Alacritty. ![swift_icon] -- [Quick Look plugins](https://github.com/sindresorhus/quick-look-plugins) - List of useful Quick Look plugins for developers. ![objective_c_icon] ![c_icon] -- [cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal ![objective_c_icon] -- [dupeGuru](https://github.com/arsenetar/dupeguru/) - dupeGuru is a tool to find duplicate files on your computer. It can scan using file names and file contents. ![objective_c_icon] -- [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. ![rust_icon] +### 🔍 Finder (11) +
[Clipy](https://github.com/Clipy/Clipy) - Clipy is a Clipboard extension app for macOS.

Languages: ![swift_icon]
Screenshots:


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

Languages: ![cpp_icon]

+
[Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![objective_c_icon] ![c_icon]
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

Languages: ![objective_c_icon]

+
[dupeGuru](https://github.com/arsenetar/dupeguru/) - dupeGuru is a tool to find duplicate files on your computer. It can scan using file names and file contents.

Languages: ![objective_c_icon]
Website: https://dupeguru.voltaicideas.net/

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

Languages: ![rust_icon]
Screenshots:

+ -### Games -- [0 A.D.](https://svn.wildfiregames.com/public/ps/trunk/) - Real-time strategy game of ancient warfare ![cpp_icon] -- [Battle for Wesnoth](https://github.com/wesnoth/wesnoth) - Turn-based tactical strategy game, featuring both single-player and online multiplayer combat. ![cpp_icon] -- [Boxer](https://github.com/alunbestor/Boxer) - The DOS game emulator that’s fit for your Mac. ![cpp_icon] ![objective_c_icon] -- [Chess](https://opensource.apple.com/source/Chess/Chess-410.4.1/) - The chess app that comes with macOS. ![objective-c_icon] -- [Dolphin](https://github.com/dolphin-emu/dolphin) - Powerful emulator for Nintendo GameCube and Wii games. ![cpp_icon] -- [Dynamic Dark Mode](https://github.com/ApolloZhu/Dynamic-Dark-Mode) - Dynamic Dark Mode is the app you are looking for to power up Dark Mode on macOS Mojave and beyond. ![swift_icon] -- [OpenEmu](https://github.com/OpenEmu/OpenEmu) - Retro video game emulation for macOS. ![objective_c_icon] -- [OpenRCT2](https://github.com/OpenRCT2/OpenRCT2) - Re-implementation of RollerCoaster Tycoon 2. ![cpp_icon] -- [Screentendo](https://github.com/AaronRandall/Screentendo) - Turn your screen into a playable level of Mario. ![objective_c_icon] -- [Stockfish](https://github.com/daylen/stockfish-mac) - Beautiful, powerful chess application. ![cpp_icon] ![objective_c_icon] -- [Widelands](https://github.com/widelands/widelands) - Widelands is a free, open source real-time strategy game with singleplayer campaigns and a multiplayer mode. The game was inspired by Settlers II™ (© Bluebyte) but has significantly more variety and depth to it. ![c++_icon] ![python_icon] ![lua_icon] ![javascript_icon] +### 🎮 Games (11) +
[0 A.D.](https://svn.wildfiregames.com/public/ps/trunk/) - Real-time strategy game of ancient warfare

Languages: ![cpp_icon]
Website: https://play0ad.com
Screenshots:


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

Languages: ![cpp_icon]

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

Languages: ![cpp_icon] ![objective_c_icon]

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

Languages: ![objective-c_icon]
Website: https://www.apple.com/
Screenshots:

+
[Dolphin](https://github.com/dolphin-emu/dolphin) - Powerful emulator for Nintendo GameCube and Wii games.

Languages: ![cpp_icon]

+
[Dynamic Dark Mode](https://github.com/ApolloZhu/Dynamic-Dark-Mode) - Dynamic Dark Mode is the app you are looking for to power up Dark Mode on macOS Mojave and beyond.

Languages: ![swift_icon]
Website: https://apollozhu.github.io/Dynamic-Dark-Mode/
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![cpp_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![cpp_icon] ![objective_c_icon]

+
[Widelands](https://github.com/widelands/widelands) - Widelands is a free, open source real-time strategy game with singleplayer campaigns and a multiplayer mode. The game was inspired by Settlers II™ (© Bluebyte) but has significantly more variety and depth to it.

Languages: ![c++_icon] ![python_icon] ![lua_icon] ![javascript_icon]
Website: https://www.widelands.org
Screenshots:

+ -### Graphics -- [Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux). ![cpp_icon] ![c_icon] -- [Blender](https://projects.blender.org/) - Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline: modeling, rigging, animation, simulation, rendering, compositing, motion tracking, and video editing. ![c_icon] ![cpp_icon] ![python_icon] -- [CaptuocrToy](https://github.com/sfragrance/CaptuocrToy) - Tool to capture screenshot and recognize text by online ocr apis. ![swift_icon] -- [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. ![swift_icon] ![c_sharp_icon] ![objective_c_icon] -- [FreeCAD](https://github.com/FreeCAD/FreeCAD) - FreeCAD is an open-source 3D parametric modeler ![c++_icon] ![python_icon] -- [Gaphor](https://github.com/gaphor/gaphor) - Gaphor is the simple modeling tool for UML and SysML. ![python_icon] -- [GifCapture](https://github.com/onmyway133/GifCapture) - Gif capture app for macOS. ![swift_icon] -- [Gifcurry](https://github.com/lettier/gifcurry) - Video to GIF maker with a graphical interface capable of cropping, adding text, seeking, and trimming. ![haskell_icon] -- [Gifski](https://github.com/sindresorhus/Gifski) - Convert videos to high-quality GIFs. ![swift_icon] -- [InfiniteCanvas](https://github.com/CleanCocoa/InfiniteCanvas) - Proof of concept Mac drawing application. ![swift_icon] -- [Krita](https://invent.kde.org/graphics/krita) - Krita is a cross-platform application for creating digital art files from scratch like illustrations, concept art, matte painting, textures, comics and animations. ![cpp_icon] ![python_icon] ![c_icon] -- [Material Colors Native](https://github.com/BafS/Material-Colors-native) - Choose your Material colours and copy the hex code. ![objective_c_icon] -- [Pencil2D Animation](https://github.com/pencil2d/pencil) - Pencil2D is an animation/drawing software for macOS, Windows, and Linux. It lets you create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics. ![cpp_icon] -- [ScreenToLayers for macOS](https://github.com/duyquoc/ScreenToLayers) - ScreenToLayers is a macOS application to easily capture your screen as a layered PSD file. ![objective_c_icon] ![css_icon] -- [macSVG](https://github.com/dsward2/macSVG) - macOS application for designing HTML5 SVG (Scalable Vector Graphics) art and animation with a WebKit web view. ![objective_c_icon] +### 🎨 Graphics (15) +
[Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux).

Languages: ![cpp_icon] ![c_icon]

+
[Blender](https://projects.blender.org/) - Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline: modeling, rigging, animation, simulation, rendering, compositing, motion tracking, and video editing.

Languages: ![c_icon] ![cpp_icon] ![python_icon]
Website: https://www.blender.org
Screenshots:



(3 more screenshots available in the repository)

+
[CaptuocrToy](https://github.com/sfragrance/CaptuocrToy) - Tool to capture screenshot and recognize text by online ocr apis.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon] ![c_sharp_icon] ![objective_c_icon]
Website: https://imazing.com/colorset
Screenshots:

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

Languages: ![c++_icon] ![python_icon]
Website: https://www.freecad.org/
Screenshots:

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

Languages: ![python_icon]
Website: https://gaphor.org

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

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

+
[Gifcurry](https://github.com/lettier/gifcurry) - Video to GIF maker with a graphical interface capable of cropping, adding text, seeking, and trimming.

Languages: ![haskell_icon]
Screenshots:


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

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![cpp_icon] ![python_icon] ![c_icon]
Website: https://krita.org/en/
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

+
[Pencil2D Animation](https://github.com/pencil2d/pencil) - Pencil2D is an animation/drawing software for macOS, Windows, and Linux. It lets you create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics.

Languages: ![cpp_icon]

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

Languages: ![objective_c_icon] ![css_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

+ -### IDE -- [Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more. ![java_icon] -- [Atom](https://github.com/atom/atom) - The hackable text editor. ![javascript_icon] -- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. ![swift_icon] -- [Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript. ![javascript_icon] -- [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. ![swift_icon] -- [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. ![c_icon] ![c++_icon] -- [IntelliJ IDEA Community Edition](https://github.com/JetBrains/intellij-community) - IntelliJ IDEA is an integrated development environment written in Java for developing computer software ![java_icon] -- [LiveCode](https://github.com/livecode/livecode) - Cross-platform development IDE. ![c_icon] -- [Oni](https://github.com/onivim/oni) - Oni is a modern take on modal editing code editor focused on developer productivity. ![javascript_icon] ![typescript_icon] -- [Vim](https://github.com/vim/vim) - ubiquitous text editor ![C_icon] ![Vim script_icon] -- [Visual Studio Code](https://github.com/Microsoft/vscode) - Code editor developed by Microsoft. ![typescript_icon] -- [ZeroBraneStudio](https://github.com/pkulchenko/ZeroBraneStudio) - ZeroBrane Studio is a lightweight cross-platform Lua IDE with code completion, syntax highlighting, remote debugger, code analyzer, live coding, and debugging support for various Lua engines. ![lua_icon] +### 💻 IDE (12) +
[Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more.

Languages: ![java_icon]
Website: https://netbeans.apache.org/
Screenshots:


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

Languages: ![javascript_icon]
Screenshots:


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

Languages: ![swift_icon]
Website: https://auroraeditor.com
Screenshots:

+
[Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript.

Languages: ![javascript_icon]
Website: https://brackets.io/
Screenshots:

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

Languages: ![swift_icon]
Website: https://www.codeedit.app/
Screenshots:

+
[Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.

Languages: ![c_icon] ![c++_icon]
Website: https://www.geany.org/
Screenshots:

+
[IntelliJ IDEA Community Edition](https://github.com/JetBrains/intellij-community) - IntelliJ IDEA is an integrated development environment written in Java for developing computer software

Languages: ![java_icon]
Website: https://www.jetbrains.com/idea/
Screenshots:

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

Languages: ![c_icon]
Website: https://livecode.org/

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

Languages: ![javascript_icon] ![typescript_icon]

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

Languages: ![C_icon] ![Vim script_icon]
Website: https://www.vim.org/
Screenshots:

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

Languages: ![typescript_icon]
Screenshots:

+
[ZeroBraneStudio](https://github.com/pkulchenko/ZeroBraneStudio) - ZeroBrane Studio is a lightweight cross-platform Lua IDE with code completion, syntax highlighting, remote debugger, code analyzer, live coding, and debugging support for various Lua engines.

Languages: ![lua_icon]
Screenshots:

+ -### Images -- [APNGb](https://github.com/shgodoroja/APNGb) - macOS app which assembles and disassembles animated png files. ![swift_icon] -- [Crunch](https://github.com/chrissimpkins/Crunch) - Insane(ly slow but wicked good) PNG image optimization. ![python_icon] -- [ExifCleaner](https://github.com/szTheory/exifcleaner) - Remove image metadata with drag and drop, multi-core batch processing, and dark mode. ![javascript_icon] -- [Flameshot](https://github.com/flameshot-org/flameshot) - Powerful yet simple to use screenshot software. ![cpp_icon] -- [Freehand](https://github.com/wddwycc/Freehand) - macOS Status Bar App for quick sketch. ![swift_icon] -- [Gimp](https://github.com/GNOME/gimp) - Gimp is GNU Image Manipulation Program. ![c_icon] -- [Iconology](https://github.com/liamrosenfeld/Iconology) - Edit icons and then export to Xcode, icns, ico, favicon, macOS iconset, or a custom collection. ![swift_icon] -- [ImageAlpha](https://github.com/kornelski/ImageAlpha) - Mac GUI for pngquant, pngnq and posterizer. ![objective_c_icon] ![python_icon] -- [Imagine](https://github.com/meowtec/Imagine) - Imagine is a desktop app for compression of PNG and JPEG, with a modern and friendly UI. ![typescript_icon] -- [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software ![python_icon] -- [Inkscape](https://gitlab.com/inkscape/inkscape) - Inkscape is a Free and open source vector graphics editor. ![c++_icon] -- [Katana](https://github.com/bluegill/katana) - Katana is a simple screenshot utility for macOS that lives in your menubar. ![javascript_icon] ![css_icon] -- [Krita](https://invent.kde.org/graphics/krita) - Krita is a cross-platform application for creating digital art files from scratch like illustrations, concept art, matte painting, textures, comics and animations. ![cpp_icon] ![python_icon] ![c_icon] -- [PhotoMiner](https://github.com/gergelysanta/photominer) - macOS app for finding and lost forgotten photos on your disks. ![swift_icon] -- [Screenbar](https://github.com/crilleengvall/Screenbar) - macOS menubar app for automating screenshots. ![swift_icon] -- [Seashore](https://github.com/robaho/seashore) - Easy to use macOS image editing application for the rest of us. ![objective_c_icon] -- [WebPonize](https://github.com/1000ch/WebPonize) - WebPonize is a macOS App for converting PNG, JPEG, animated (or not) GIF images into WebP. ![swift_icon] ![c_icon] +### 🖼️ Images (17) +
[APNGb](https://github.com/shgodoroja/APNGb) - macOS app which assembles and disassembles animated png files.

Languages: ![swift_icon]

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

Languages: ![python_icon]

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

Languages: ![javascript_icon]
Website: https://exifcleaner.com
Screenshots:



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

Languages: ![cpp_icon]
Website: https://flameshot.org
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![c_icon]

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

Languages: ![swift_icon]
Website: https://apps.apple.com/us/app/iconology/id1463452867
Screenshots:

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

Languages: ![objective_c_icon] ![python_icon]
Screenshots:

+
[Imagine](https://github.com/meowtec/Imagine) - Imagine is a desktop app for compression of PNG and JPEG, with a modern and friendly UI.

Languages: ![typescript_icon]

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

Languages: ![python_icon]
Screenshots:



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

Languages: ![c++_icon]
Website: https://inkscape.org/
Screenshots:

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

Languages: ![javascript_icon] ![css_icon]

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

Languages: ![cpp_icon] ![python_icon] ![c_icon]
Website: https://krita.org/en/
Screenshots:

+
[PhotoMiner](https://github.com/gergelysanta/photominer) - macOS app for finding and lost forgotten photos on your disks.

Languages: ![swift_icon]
Screenshots:



(3 more screenshots available in the repository)

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon] ![c_icon]

+ -### Keyboard -- [AnnePro-mac](https://github.com/msvisser/AnnePro-mac) - macOS application for controlling AnnePro keyboard over bluetooth. ![swift_icon] -- [Fluor](https://github.com/Pyroh/Fluor) - Handy tool for macOS allowing you to switch Fn keys' mode based on active application. ![swift_icon] -- [GokuRakuJoudo](https://github.com/yqrashawn/GokuRakuJoudo) - Karabiner-Elements configuration manager, rescue to bloated karabiner.json ![clojure_icon] -- [Karabiner](https://github.com/tekezo/Karabiner) - Karabiner (KeyRemap4MacBook) is a powerful utility for keyboard customization. ![cpp_icon] ![objective_c_icon] -- [Karabiner-Elements](https://github.com/pqrs-org/Karabiner-Elements) - Karabiner-Elements is a powerful utility for keyboard customization on macOS Sierra (10.12) or later. ![cpp_icon] ![objective_c_icon] -- [Kawa](https://github.com/hatashiro/kawa) - Better input source switcher for macOS. ![swift_icon] -- [Keycastr](https://github.com/keycastr/keycastr) - Keystroke visualizer. ![Objective-C_icon] -- [Thor](https://github.com/gbammc/Thor) - Switch the right application ASAP. ![swift_icon] -- [Unshaky](https://github.com/aahung/Unshaky) - A software attempt to address the "double key press" issue on Apple's butterfly keyboard ![swift_icon] +### ⌨️ Keyboard (9) +
[AnnePro-mac](https://github.com/msvisser/AnnePro-mac) - macOS application for controlling AnnePro keyboard over bluetooth.

Languages: ![swift_icon]

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

Languages: ![swift_icon]

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

Languages: ![clojure_icon]

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

Languages: ![cpp_icon] ![objective_c_icon]

+
[Karabiner-Elements](https://github.com/pqrs-org/Karabiner-Elements) - Karabiner-Elements is a powerful utility for keyboard customization on macOS Sierra (10.12) or later.

Languages: ![cpp_icon] ![objective_c_icon]

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![Objective-C_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]
Website: https://unshaky.nestederror.com/
Screenshots:


+ -### Mail -- [Correo](https://github.com/amitmerchant1990/correo) - Menubar/taskbar Gmail App for Windows and macOS. ![javascript_icon] -- [ElectronMail](https://github.com/vladimiry/ElectronMail) - Unofficial desktop app for ProtonMail and Tutanota end-to-end encrypted email providers. ![typescript_icon] -- [Mailspring](https://github.com/Foundry376/Mailspring) - 💌 A beautiful, fast and maintained fork of @nylas Mail by one of the original authors ![javascript_icon] -- [Rambox](https://github.com/ramboxapp/community-edition) - Cross Platform messaging and emailing app that combines common web applications into one. ![javascript_icon] ![css_icon] -- [SimpleLogin](https://github.com/simple-login/mac-app) - Email Alias solution: protect your real email address. ![swift_icon] -- [Thunderbird](https://hg.mozilla.org/mozilla-central) - Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client. ![cpp_icon] ![javascript_icon] ![rust_icon] -- [dejalu](https://github.com/dinhvh/dejalu) - Fast and Simple Email Client. ![cpp_icon] ![objective_c_icon] +### 📧 Mail (7) +
[Correo](https://github.com/amitmerchant1990/correo) - Menubar/taskbar Gmail App for Windows and macOS.

Languages: ![javascript_icon]

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

Languages: ![typescript_icon]
Screenshots:


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

Languages: ![javascript_icon]
Website: https://getmailspring.com/

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

Languages: ![javascript_icon] ![css_icon]

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

Languages: ![swift_icon]

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

Languages: ![cpp_icon] ![javascript_icon] ![rust_icon]
Website: https://www.thunderbird.net/en-US/
Screenshots:



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

Languages: ![cpp_icon] ![objective_c_icon]
Screenshots:

+ -### Medical -- [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software ![python_icon] +### 📦 Medical (1) +
[InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software

Languages: ![python_icon]
Screenshots:



+ -### Menubar -- [Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks. ![javascript_icon] -- [Akku](https://github.com/jariz/Akku) - The missing macOS bluetooth headset battery indicator app. ![swift_icon] ![python_icon] ![ruby_icon] -- [AnyBar](https://github.com/tonsky/AnyBar) - macOS menubar status indicator. ![objective_c_icon] -- [BarTranslate](https://github.com/ThijmenDam/BarTranslate) - A handy menu bar translator app that supports DeepL and Google Translate. ![typescript_icon] -- [CloudyTabs](https://github.com/josh-/CloudyTabs) - Simple menu bar macOS application for displaying lists of your iCloud Tabs and Reading List. ![objective_c_icon] -- [DatWeatherDoe](https://github.com/inderdhir/DatWeatherDoe) - Simple menu bar weather app for macOS written in Swift. ![swift_icon] -- [DisplayMenu](https://github.com/Kwpolska/DisplayMenu) - Simple (bare-bones) macOS menubar extra to apply display presets. ![swift_icon] -- [Dozer](https://github.com/Mortennn/Dozer) - Hide MacOS menubar items. ![swift_icon] -- [Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Manage grayscale mode from menu bar. ![swift_icon] -- [Hidden Bar](https://github.com/dwarvesf/hidden) - An ultra-light MacOS utility that helps hide menu bar icons ![swift_icon] -- [Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar. ![objective_c_icon] -- [KubeContext](https://github.com/turkenh/KubeContext) - import, manage and switch between your Kubernetes contexts on Mac. ![swift_icon] -- [LinkLiar](https://github.com/halo/LinkLiar) - Keep your MAC address random for privacy (intuitive GUI for ifconfig) ![swift_icon] -- [Market Bar](https://github.com/mnndnl/market-bar ) - Tiny stocks watcher for the menu bar. ![swift_icon] -- [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings ![swift_icon] -- [MenuMeters](https://github.com/yujitach/MenuMeters) - CPU, memory, disk, and network monitoring tools for macOS. ![objective_c_icon] -- [Menubar Brightness](https://github.com/lucasbento/menubar-brightness) - macOS app to change the screen brightness on the menubar. ![javascript_icon] -- [MiniSim](https://github.com/okwasniewski/MiniSim) - MacOS menu bar app for launching iOS  and Android 🤖 emulators. ![swift_icon] -- [Monitor Bar](https://github.com/tidiemme/monitorbar) - Monitor Bar app supports three modes, compact, normal, extra. It monitors battery, Disk, Memory, CPU, Network bandwidth, Wi-Fi. ![Swift_icon] -- [Night Shift Control](https://github.com/isaiasmatewos/night-shift-control) - Night Shift Control is a simple macOS menubar app for controlling Night Shift. It's aim is to bring features from f.lux which are missing from Night Shift such as disabling Night Shift for certain apps. ![swift_icon] -- [Nocturnal](https://github.com/joshjon/nocturnal) - Menu bar app featuring darker than dark dimming, Night Shift fine tuning, and the ability to turn off TouchBar on MacBook Pro. ![swift_icon] -- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. ![swift_icon] -- [PSIBar](https://github.com/nikhilsh/PSIBar) - Quickly hacked up PSI macOS status bar app. ![swift_icon] -- [Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene. ![swift_icon] -- [Pi Stats](https://github.com/Bunn/PiStats) - macOS app to visualize Pi-hole information. ![swift_icon] ![objective_c_icon] -- [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. ![swift_icon] ![metal_icon] -- [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. ![swift_icon] -- [Quickeys](https://github.com/alexrosenfeld10/Quickeys) - A mac menu bar app that provides note taking functionality though a quick dropdown menu. ![swift_icon] -- [SensibleSideButtons](https://github.com/archagon/sensible-side-buttons) - Small menu bar utility that lets you use your third-party mouse's side buttons for navigation across a variety of apps. ![objective_c_icon] ![c_icon] -- [Shifty](https://github.com/thompsonate/Shifty) - macOS menu bar app that gives you more control over Night Shift. ![swift_icon] -- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. ![swift_icon] -- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar ![swift_icon] -- [SwiftBar](https://github.com/swiftbar/SwiftBar) - Powerful macOS menu bar customization tool. ![swift_icon] -- [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. ![objective_c_icon] -- [eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI. ![swift_icon] -- [gSwitch](https://github.com/CodySchrank/gSwitch) - macOS status bar app that allows control over the gpu on dual gpu macbooks. ![swift_icon] -- [iGlance](https://github.com/iglance/iGlance) - macOS System Monitor (cpu, memory, network, fan and battery) for the Status Bar. ![swift_icon] -- [xbar](https://github.com/matryer/xbar) - Put the output from any script or program into your macOS Menu Bar. ![objective_c_icon] +### 📊 Menubar (38) +
[Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks.

Languages: ![javascript_icon]

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

Languages: ![swift_icon] ![python_icon] ![ruby_icon]
Screenshots:

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

Languages: ![objective_c_icon]

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

Languages: ![typescript_icon]
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.

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Website: https://www.mowglii.com/itsycal/
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]
Website: https://halo.github.io/LinkLiar/
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![objective_c_icon]

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

Languages: ![javascript_icon]

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

Languages: ![swift_icon]
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.

Languages: ![Swift_icon]

+
[Night Shift Control](https://github.com/isaiasmatewos/night-shift-control) - Night Shift Control is a simple macOS menubar app for controlling Night Shift. It's aim is to bring features from f.lux which are missing from Night Shift such as disabling Night Shift for certain apps.

Languages: ![swift_icon]
Screenshots:

+
[Nocturnal](https://github.com/joshjon/nocturnal) - Menu bar app featuring darker than dark dimming, Night Shift fine tuning, and the ability to turn off TouchBar on MacBook Pro.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Website: https://paretosecurity.com/
Screenshots:

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

Languages: ![swift_icon] ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon] ![metal_icon]
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.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

+
[SensibleSideButtons](https://github.com/archagon/sensible-side-buttons) - Small menu bar utility that lets you use your third-party mouse's side buttons for navigation across a variety of apps.

Languages: ![objective_c_icon] ![c_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Website: https://swiftbar.app

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]

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

Languages: ![objective_c_icon]

+ -### Music -- [Carol](https://github.com/AnaghSharma/Carol) - A minimal and beautiful lyrics app that stays in the menu bar of macOS. ![c_sharp_icon] -- [ChordDetector](https://github.com/cemolcay/ChordDetector) - Tiny menu bar app that listens iTunes and Spotify to detect chords of songs! ![swift_icon] -- [DeezPlayer](https://github.com/imanel/deezplayer) - Deezer Desktop app for Windows, Linux and macOS. ![coffee_script_icon] -- [Karaoke Forever](https://github.com/bhj/KaraokeEternal) - Host awesome karaoke parties where everyone can queue songs from their phone's browser. Plays MP3+G and MP4 with WebGL visualizations. ![javascript_icon] -- [Lilypond UI](https://github.com/doches/lilypond-ui) - Create beautiful musical scores with LilyPond. ![javascript_icon] -- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. ![c_icon] -- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. ![swift_icon] -- [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. ![swift_icon] -- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. ![swift_icon] -- [SoundCleod](https://github.com/salomvary/soundcleod) - SoundCloud for macOS and Windows. ![javascript_icon] -- [Spotify-Cli-Mac](https://github.com/ersel/spotify-cli-mac) - Control Spotify without leaving your terminal. :notes: ![javascript_icon] -- [YouTube-Music](https://github.com/steve228uk/YouTube-Music) - macOS wrapper for music.youtube.com. ![swift_icon] -- [iTunes Graphs](https://github.com/Zac-Garby/iTunes-Graphs) - macOS app to visualise your iTunes library as graphs. ![swift_icon] -- [lyricsify](https://github.com/mamal72/lyricsify-mac) - Simple Spotify lyrics viewer menu bar app for macOS in Swift. ![swift_icon] -- [spicetify-cli](https://github.com/spicetify/spicetify-cli) - Command-line tool to customize the official Spotify client. Supports Windows, MacOS and Linux. ![javascript_icon] +### 🎧 Music (15) +
[Carol](https://github.com/AnaghSharma/Carol) - A minimal and beautiful lyrics app that stays in the menu bar of macOS.

Languages: ![c_sharp_icon]

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

Languages: ![swift_icon]

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

Languages: ![coffee_script_icon]

+
[Karaoke Forever](https://github.com/bhj/KaraokeEternal) - Host awesome karaoke parties where everyone can queue songs from their phone's browser. Plays MP3+G and MP4 with WebGL visualizations.

Languages: ![javascript_icon]
Website: https://www.karaoke-eternal.com/
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![c_icon]
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.

Languages: ![swift_icon]

+
[PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Website: https://www.plugformac.com/
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:


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

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![swift_icon]
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.

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![javascript_icon]
Website: https://spicetify.app/
Screenshots:

+ -### News -- [Diurna](https://github.com/ngquerol/Diurna) - Basic/Classic Hacker News app, used as a Cocoa & Swift learning platform. ![swift_icon] -- [NetNewsWire](https://github.com/Ranchero-Software/NetNewsWire) - Feed reader for macOS. ![swift_icon] -- [Vienna](https://github.com/ViennaRSS/vienna-rss) - Vienna is a RSS/Atom newsreader for macOS. ![objective_c_icon] -- [Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io ![javascript_icon] -- [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. ![objective_c_icon] -- [hacker-menu](https://github.com/owenthereal/hacker-menu) - Hacker News Delivered to Desktop. ![javascript_icon] +### 📰 News (6) +
[Diurna](https://github.com/ngquerol/Diurna) - Basic/Classic Hacker News app, used as a Cocoa & Swift learning platform.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![objective_c_icon]

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

Languages: ![javascript_icon]
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.

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:

+ -### Notes -- [Boostnote](https://github.com/BoostIO/BoostNote-Legacy) - Note-taking application made for programmers just like you. ![javascript_icon] -- [Dnote](https://github.com/dnote/dnote) - A simple command line notebook with multi-device sync and web interface. ![go_icon] ![typescript_icon] -- [FSNotes](https://github.com/glushchenko/fsnotes) - Notes manager for macOS/iOS: modern notational velocity (nvALT) on steroids. ![swift_icon] -- [FromScratch](https://github.com/Kilian/fromscratch) - Little app that you can use as a quick note taking or todo app. ![javascript_icon] ![css_icon] -- [Jupyter Notebook Viewer](https://github.com/tuxu/nbviewer-app) - Notebook viewer for macOS. ![swift_icon] -- [NoteTaker](https://github.com/insidegui/NoteTaker) - Simple note taking app for macOS and iOS which uses Realm and CloudKit for syncing. ![swift_icon] -- [Notenik](https://github.com/hbowie/notenik-swift) - Note-taking app with many organizational options. ![swift_icon] -- [Notes](https://github.com/SauvageP/Notes) - Notes is a macOS application built to create notes, using text amongst other formats: images, videos, contacts, and etc. ![swift_icon] -- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. ![cpp_icon] -- [Simplenote](https://github.com/Automattic/simplenote-macos) - Simplest way to keep notes. ![objective_c_icon] -- [Standard Notes](https://github.com/standardnotes/app) - Safe place for your notes, thoughts, and life's work. ![javascript_icon] ![css_icon] -- [Tusk](https://github.com/klaudiosinani/tusk) - Unofficial, third-party, community driven Evernote app with a handful of useful features. ![javascript_icon] ![css_icon] -- [joplin](https://github.com/laurent22/joplin) - Note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS. ![javascript_icon] -- [linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis. ![javascript_icon] ![vue_icon] ![css_icon] -- [notable](https://github.com/jmcfarlane/notable) - Simple note taking application. ![javascript_icon] -- [tmpNote](https://github.com/buddax2/tmpNote) - Very simple macOS app to make temporary notes. ![swift_icon] +### 📔 Notes (16) +
[Boostnote](https://github.com/BoostIO/BoostNote-Legacy) - Note-taking application made for programmers just like you.

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![go_icon] ![typescript_icon]
Website: https://www.getdnote.com/
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![javascript_icon] ![css_icon]

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
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.

Languages: ![swift_icon]

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

Languages: ![cpp_icon]
Website: https://www.qownnotes.org/
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![javascript_icon] ![css_icon]

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

Languages: ![javascript_icon] ![css_icon]

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

Languages: ![javascript_icon]

+
[linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis.

Languages: ![javascript_icon] ![vue_icon] ![css_icon]
Website: https://uselinked.com
Screenshots:


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

Languages: ![javascript_icon]
Screenshots:



(4 more screenshots available in the repository)

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

Languages: ![swift_icon]
Screenshots:

+ -### Other -- [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. ![javascript_icon] -- [Cakebrew](https://github.com/brunophilipe/Cakebrew) - Manage your Homebrew formulas with style using Cakebrew. ![objective_c_icon] -- [ChipMunk](https://github.com/esrlabs/chipmunk) - Log analysis tool. ![typescript_icon] ![rust_icon] -- [DevDocs for macOS](https://github.com/dteoh/devdocs-macos) - An unofficial DevDocs API documentation viewer. ![swift_icon] -- [Gas Mask](https://github.com/2ndalpha/gasmask) - Hosts file manager for macOS. ![objective_c_icon] -- [Hosts](https://github.com/specialunderwear/Hosts.prefpane) - Cocoa GUI for /etc/hosts. ![objective_c_icon] -- [ImageOptim](https://github.com/ImageOptim/ImageOptim) - GUI image optimizer for Mac. ![objective_c_icon] -- [Keyframes Player](https://github.com/insidegui/KeyframesPlayer) - Simple macOS app to preview animations created with Facebook's keyframes framework. ![swift_icon] -- [Lepton](https://github.com/hackjutsu/Lepton) - Democratizing Code Snippets Management (macOS/Win/Linux). ![javascript_icon] -- [Letters](https://github.com/klaaspieter/letters) - Teach your kids the alphabet and how to type. ![swift_icon] -- [Platypus](https://github.com/sveinbjornt/Platypus) - Mac developer tool that creates application bundles from command line scripts. ![objective_c_icon] -- [QorumLogs](https://github.com/Esqarrouth/QorumLogs) - Swift Logging Utility for Xcode & Google Docs. ![swift_icon] -- [React Native Debugger](https://github.com/jhen0409/react-native-debugger) - Desktop app for inspecting your React Native projects. macOS, Linux, and Windows. ![javascript_icon] -- [Reactotron](https://github.com/infinitered/reactotron) - Desktop app for inspecting your React JS and React Native projects. macOS, Linux, and Windows. ![javascript_icon] -- [RktMachine](https://github.com/woofwoofinc/rktmachine) - Menu bar macOS app for running rkt in a macOS hypervisor CoreOS VM. ![swift_icon] -- [Ruby.app](https://github.com/gosu/ruby-app) - macOS app that contains a full Ruby installation (for use with Ruby/Gosu). ![ruby_icon] -- [Shuttle](https://github.com/fitztrev/shuttle) - Simple SSH shortcut menu for macOS. ![objective_c_icon] -- [SwiftyBeaver](https://github.com/SwiftyBeaver/SwiftyBeaver) - Convenient logging during development & release in Swift. ![swift_icon] -- [Unused](https://github.com/jeffhodnett/Unused) - Mac app for checking Xcode projects for unused resources. ![objective_c_icon] -- [Vagrant Manager](https://github.com/lanayotech/vagrant-manager) - Manage your vagrant machines in one place with Vagrant Manager for macOS. ![objective_c_icon] -- [macGist](https://github.com/Bunn/macGist) - Simple app to send pasteboard items to GitHub's Gist. ![swift_icon] -- [syncthing-macosx](https://github.com/syncthing/syncthing-macos) - Frugal nativemacOS macOS Syncthing application bundle. ![objective_c_icon] +### 📦 Other (22) +
[Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware.

Languages: ![javascript_icon]
Website: https://betaflight.com/
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![typescript_icon] ![rust_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![javascript_icon]

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

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

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

Languages: ![objective_c_icon]

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

Languages: ![swift_icon]

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

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![javascript_icon]

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![ruby_icon]

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon]
Screenshots:

+
[macGist](https://github.com/Bunn/macGist) - Simple app to send pasteboard items to GitHub's Gist.

Languages: ![swift_icon]

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

Languages: ![objective_c_icon]
Screenshots:

+ -### Player -- [IINA](https://github.com/iina/iina) - The modern video player for macOS. ![swift_icon] -- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. ![c_icon] -- [MPlayerX](https://github.com/niltsh/MPlayerX) - Media player on macOS. ![objective_c_icon] -- [MacMorpheus](https://github.com/emoRaivis/MacMorpheus) - 3D 180/360 video player for macOS for PSVR with head tracking. ![objective_c_icon] -- [Movie Monad](https://github.com/lettier/movie-monad) - Desktop video player built with Haskell that uses GStreamer and GTK+. ![haskell_icon] -- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. ![swift_icon] +### 📦 Player (6) +
[IINA](https://github.com/iina/iina) - The modern video player for macOS.

Languages: ![swift_icon]
Website: https://iina.io

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

Languages: ![c_icon]
Website: https://mpv.io
Screenshots:

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

Languages: ![objective_c_icon]

+
[MacMorpheus](https://github.com/emoRaivis/MacMorpheus) - 3D 180/360 video player for macOS for PSVR with head tracking.

Languages: ![objective_c_icon]
Screenshots:

+
[Movie Monad](https://github.com/lettier/movie-monad) - Desktop video player built with Haskell that uses GStreamer and GTK+.

Languages: ![haskell_icon]
Screenshots:


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

Languages: ![swift_icon]
Website: https://www.plugformac.com/
Screenshots:

+ -### Podcast -- [Cumulonimbus](https://github.com/z-------------/CPod) - Simple, beautiful podcast app. ![javascript_icon] -- [Doughnut](https://github.com/dyerc/Doughnut) - Podcast player and library for mac ![swift_icon] -- [PodcastMenu](https://github.com/insidegui/PodcastMenu) - PodcastMenu is a simple app which puts [Overcast](https://overcast.fm/) on your Mac's menu bar so you can listen to your favorite podcasts while you work. ![swift_icon] -- [Podlive for macOS](https://github.com/Podlive/podlive-macos) - macOS client to listen to live streaming podcasts (only). It currently supports all livestreams broadcasting via Ultraschall with [Studio Link On Air](https://studio-link.de). ![objective_c_icon] -- [Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io ![javascript_icon] -- [gPodder](https://github.com/gpodder/gpodder) - gPodder is a simple, open source podcast client. ![python_icon] -- [mkchromecast](https://github.com/muammar/mkchromecast) - Cast macOS and Linux Audio/Video to your Google Cast and Sonos Devices. ![python_icon] +### 📦 Podcast (7) +
[Cumulonimbus](https://github.com/z-------------/CPod) - Simple, beautiful podcast app.

Languages: ![javascript_icon]
Screenshots:

+
[Doughnut](https://github.com/dyerc/Doughnut) - Podcast player and library for mac

Languages: ![swift_icon]
Screenshots:

+
[PodcastMenu](https://github.com/insidegui/PodcastMenu) - PodcastMenu is a simple app which puts [Overcast](https://overcast.fm/) on your Mac's menu bar so you can listen to your favorite podcasts while you work.

Languages: ![swift_icon]

+
[Podlive for macOS](https://github.com/Podlive/podlive-macos) - macOS client to listen to live streaming podcasts (only). It currently supports all livestreams broadcasting via Ultraschall with [Studio Link On Air](https://studio-link.de).

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![javascript_icon]
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.

Languages: ![python_icon]
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.

Languages: ![python_icon]

+ -### Productivity -- [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app. ![javascript_icon] ![css_icon] -- [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. ![swift_icon] -- [Cerebro](https://github.com/cerebroapp/cerebro) - Cross-platform launcher app. ![javascript_icon] -- [ClipMenu](https://github.com/naotaka/ClipMenu) - Clipboard manager for macOS. ![objective_c_icon] -- [Clocker](https://github.com/n0shake/Clocker) - macOS app to plan and organize through timezones. ![objective_c_icon] -- [Condution](https://github.com/Shabang-Systems/Condution) - Create tasks, manage due dates, and filter with powerful perspectives. ![javascript_icon] -- [ControlPlane](https://github.com/dustinrue/ControlPlane) - Automate running tasks based on where you are or what you do. ![objective_c_icon] -- [DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator... ![swift_icon] -- [DropPoint](https://github.com/GameGodS3/DropPoint) - Make drag-and-drop easier using DropPoint. Helps to drag content without having to open side-by-side windows. ![javascript_icon] -- [Flycut](https://github.com/TermiT/flycut) - Clean and simple clipboard manager for developers. ![objective_c_icon] -- [Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar. ![objective_c_icon] -- [KeyHolder](https://github.com/Clipy/KeyHolder) - Record shortcuts in macOS, like Alfred.app. ![swift_icon] -- [Kiwix](https://github.com/kiwix/apple) - Kiwix for iOS and macOS, build on Swift. ![swift_icon] -- [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. ![swift_icon] -- [Linked Ideas](https://github.com/fespinoza/LinkedIdeas) - macOS application to write down and connect ideas. ![swift_icon] -- [Mac Screenshot Tracker](https://github.com/instance01/mac-screenshot-tracker) - An open source, free and hackable screenshot tracker. Re-watch what you've been working on! ![python_icon] -- [Maccy](https://github.com/p0deje/Maccy) - Lightweight search-as-you-type clipboard manager. ![swift_icon] -- [Manta](https://github.com/hql287/Manta) - Flexible invoicing desktop app with beautiful & customizable templates. ![javascript_icon] -- [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings ![swift_icon] -- [Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse ![c_icon] -- [PDF Archiver](https://github.com/PDF-Archiver/PDF-Archiver) - Nice tool for tagging and archiving tasks. ![swift_icon] -- [Paperless Desktop](https://github.com/thomasbrueggemann/paperless-desktop) - Desktop app that uses the paperless API to manage your document scans. ![javascript_icon] -- [Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium. ![javascript_icon] -- [Pomodoro Cycle](https://github.com/ziulev/pomodoro-cycle-app) - Pomodoro Cycle for macOS ![typescript_icon] -- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. ![cpp_icon] -- [Quicksilver](https://github.com/quicksilver/Quicksilver) - Quicksilver is a fast macOS productivity application that gives you the power to control your Mac quickly and elegantly. ![objective_c_icon] -- [Quickwords](https://github.com/quickwords/quickwords) - Write anything in a matter of seconds. Create snippets that can substitute text, execute tedious tasks and more. ![javascript_icon] ![css_icon] -- [SelfControl](https://github.com/SelfControlApp/selfcontrol) - macOS app to block your own access to distracting websites etc for a predetermined period of time. It can not be undone by the app or by a restart – you must wait for the timer to run out. ![objective_c_icon] -- [Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions ![swift_icon] -- [Speed Reader](https://github.com/LumingYin/SpeedReader) - Read faster with the power of silencing vocalization with SpeedReader. ![swift_icon] -- [Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative. ![typescript_icon] ![swift_icon] -- [StickyNotes](https://github.com/LumingYin/StickyNotes) - A Windows 10-esque Sticky Notes app implemented in AppKit. ![swift_icon] -- [Strategr](https://github.com/khrykin/StrategrDesktop) - No-fuss time management. ![cpp_icon] ![objective_c_icon] -- [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. ![typescript_icon] ![javascript_icon] -- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' ![swift_icon] -- [Thyme](https://github.com/joaomoreno/thyme) - The task timer for OS X. ![objective_c_icon] -- [Time to Leave](https://github.com/thamara/time-to-leave) - Log work hours and get notified when it's time to leave the office and start to live. ![javascript_icon] ![css_icon] ![html_icon] -- [Timer](https://github.com/michaelvillar/timer-app) - Simple Timer app for Mac. ![swift_icon] -- [Toggl Desktop](https://github.com/toggl-open-source/toggldesktop) - Toggl Desktop app for Windows, Mac and Linux. ![cpp_icon] -- [TomatoBar](https://github.com/ivoronin/TomatoBar) - Pomodoro Technique Timer for macOS with Touch Bar support. ![swift_icon] -- [TrelloApp](https://github.com/jlong/TrelloApp) - Unofficial wrapper application for Trello.com written in Swift. This is almost a "Hello World" for a site specific browser. ![swift_icon] -- [Ueli](https://github.com/oliverschwendener/ueli) - A keystroke launcher for macOS (and Windows) like Spotlight or Alfred. ![typescript_icon] -- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari ![swift_icon] -- [Watson](https://github.com/TailorDev/Watson) - A CLI application for time tracking. ![python_icon] -- [Whale](https://github.com/1000ch/whale) - Unofficial Trello app. ![javascript_icon] -- [Yomu](https://github.com/sendyhalim/Yomu) - Manga reader app for macOS. ![swift_icon] -- [espanso](https://github.com/espanso/espanso) - Cross-platform Text Expander, a powerful replacement for Alfred Snippets ![rust_icon] -- [far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2 ![c_icon] ![cpp_icon] -- [linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis. ![javascript_icon] ![vue_icon] ![css_icon] -- [macOrganizer](https://github.com/shubhambatra3019/macOrganizer) - macOS app for organizing files or removing unnecessary files. ![swift_icon] -- [reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system. ![typescript_icon] ![swift_icon] -- [sqlectron](https://github.com/sqlectron/sqlectron-gui) - A simple and lightweight SQL client desktop/terminal with cross database and platform support. ![typescript_icon] -- [status-bar-todo](https://github.com/Onix-Systems/osx-status-bar-todo) - Simple macOS app to keep TODO-list in status bar. ![swift_icon] -- [stretchly](https://github.com/hovancik/stretchly) - Cross-platform electron app that reminds you to take breaks when working with computer. ![javascript_icon] +### ⏱️ Productivity (54) +
[Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app.

Languages: ![javascript_icon] ![css_icon]

+
[Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar.

Languages: ![swift_icon]

+
[Cerebro](https://github.com/cerebroapp/cerebro) - Cross-platform launcher app.

Languages: ![javascript_icon]

+
[ClipMenu](https://github.com/naotaka/ClipMenu) - Clipboard manager for macOS.

Languages: ![objective_c_icon]
Screenshots:

+
[Clocker](https://github.com/n0shake/Clocker) - macOS app to plan and organize through timezones.

Languages: ![objective_c_icon]

+
[Condution](https://github.com/Shabang-Systems/Condution) - Create tasks, manage due dates, and filter with powerful perspectives.

Languages: ![javascript_icon]
Website: https://www.condution.com
Screenshots:

+
[ControlPlane](https://github.com/dustinrue/ControlPlane) - Automate running tasks based on where you are or what you do.

Languages: ![objective_c_icon]

+
[DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator...

Languages: ![swift_icon]
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.

Languages: ![javascript_icon]
Screenshots:


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

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon]
Website: https://www.mowglii.com/itsycal/
Screenshots:

+
[KeyHolder](https://github.com/Clipy/KeyHolder) - Record shortcuts in macOS, like Alfred.app.

Languages: ![swift_icon]

+
[Kiwix](https://github.com/kiwix/apple) - Kiwix for iOS and macOS, build on Swift.

Languages: ![swift_icon]

+
[Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView.

Languages: ![swift_icon]
Website: https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12
Screenshots:

+
[Linked Ideas](https://github.com/fespinoza/LinkedIdeas) - macOS application to write down and connect ideas.

Languages: ![swift_icon]
Screenshots:

+
[Mac Screenshot Tracker](https://github.com/instance01/mac-screenshot-tracker) - An open source, free and hackable screenshot tracker. Re-watch what you've been working on!

Languages: ![python_icon]
Screenshots:


+
[Maccy](https://github.com/p0deje/Maccy) - Lightweight search-as-you-type clipboard manager.

Languages: ![swift_icon]
Screenshots:

+
[Manta](https://github.com/hql287/Manta) - Flexible invoicing desktop app with beautiful & customizable templates.

Languages: ![javascript_icon]

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

Languages: ![swift_icon]
Screenshots:

+
[Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse

Languages: ![c_icon]
Screenshots:

+
[PDF Archiver](https://github.com/PDF-Archiver/PDF-Archiver) - Nice tool for tagging and archiving tasks.

Languages: ![swift_icon]

+
[Paperless Desktop](https://github.com/thomasbrueggemann/paperless-desktop) - Desktop app that uses the paperless API to manage your document scans.

Languages: ![javascript_icon]
Screenshots:


+
[Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium.

Languages: ![javascript_icon]
Screenshots:



(1 more screenshots available in the repository)

+
[Pomodoro Cycle](https://github.com/ziulev/pomodoro-cycle-app) - Pomodoro Cycle for macOS

Languages: ![typescript_icon]
Website: https://github.com/ziulev/pomodoro-cycle-app/releases
Screenshots:

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

Languages: ![cpp_icon]
Website: https://www.qownnotes.org/
Screenshots:

+
[Quicksilver](https://github.com/quicksilver/Quicksilver) - Quicksilver is a fast macOS productivity application that gives you the power to control your Mac quickly and elegantly.

Languages: ![objective_c_icon]

+
[Quickwords](https://github.com/quickwords/quickwords) - Write anything in a matter of seconds. Create snippets that can substitute text, execute tedious tasks and more.

Languages: ![javascript_icon] ![css_icon]
Screenshots:

+
[SelfControl](https://github.com/SelfControlApp/selfcontrol) - macOS app to block your own access to distracting websites etc for a predetermined period of time. It can not be undone by the app or by a restart – you must wait for the timer to run out.

Languages: ![objective_c_icon]

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

Languages: ![swift_icon]
Screenshots:

+
[Speed Reader](https://github.com/LumingYin/SpeedReader) - Read faster with the power of silencing vocalization with SpeedReader.

Languages: ![swift_icon]
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.

Languages: ![typescript_icon] ![swift_icon]

+
[StickyNotes](https://github.com/LumingYin/StickyNotes) - A Windows 10-esque Sticky Notes app implemented in AppKit.

Languages: ![swift_icon]
Website: https://github.com/LumingYin/StickyNotes/releases
Screenshots:

+
[Strategr](https://github.com/khrykin/StrategrDesktop) - No-fuss time management.

Languages: ![cpp_icon] ![objective_c_icon]
Website: https://khrykin.github.io/StrategrDesktop/
Screenshots:


+
[Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration.

Languages: ![typescript_icon] ![javascript_icon]
Website: https://super-productivity.com
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

+
[Thyme](https://github.com/joaomoreno/thyme) - The task timer for OS X.

Languages: ![objective_c_icon]

+
[Time to Leave](https://github.com/thamara/time-to-leave) - Log work hours and get notified when it's time to leave the office and start to live.

Languages: ![javascript_icon] ![css_icon] ![html_icon]
Website: https://timetoleave.app/
Screenshots:


+
[Timer](https://github.com/michaelvillar/timer-app) - Simple Timer app for Mac.

Languages: ![swift_icon]
Screenshots:


+
[Toggl Desktop](https://github.com/toggl-open-source/toggldesktop) - Toggl Desktop app for Windows, Mac and Linux.

Languages: ![cpp_icon]

+
[TomatoBar](https://github.com/ivoronin/TomatoBar) - Pomodoro Technique Timer for macOS with Touch Bar support.

Languages: ![swift_icon]

+
[TrelloApp](https://github.com/jlong/TrelloApp) - Unofficial wrapper application for Trello.com written in Swift. This is almost a "Hello World" for a site specific browser.

Languages: ![swift_icon]

+
[Ueli](https://github.com/oliverschwendener/ueli) - A keystroke launcher for macOS (and Windows) like Spotlight or Alfred.

Languages: ![typescript_icon]
Website: https://ueli.app/
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

+
[Watson](https://github.com/TailorDev/Watson) - A CLI application for time tracking.

Languages: ![python_icon]
Screenshots:


+
[Whale](https://github.com/1000ch/whale) - Unofficial Trello app.

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![swift_icon]

+
[espanso](https://github.com/espanso/espanso) - Cross-platform Text Expander, a powerful replacement for Alfred Snippets

Languages: ![rust_icon]
Website: https://espanso.org
Screenshots:

+
[far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2

Languages: ![c_icon] ![cpp_icon]

+
[linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis.

Languages: ![javascript_icon] ![vue_icon] ![css_icon]
Website: https://uselinked.com
Screenshots:


+
[macOrganizer](https://github.com/shubhambatra3019/macOrganizer) - macOS app for organizing files or removing unnecessary files.

Languages: ![swift_icon]

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

Languages: ![typescript_icon] ![swift_icon]
Screenshots:

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

Languages: ![typescript_icon]
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.

Languages: ![swift_icon]
Screenshots:

+
[stretchly](https://github.com/hovancik/stretchly) - Cross-platform electron app that reminds you to take breaks when working with computer.

Languages: ![javascript_icon]

+ -### Screensaver -- [Aerial](https://github.com/JohnCoates/Aerial) - Apple TV Aerial Screensaver for macOS. ![swift_icon] -- [Brooklyn](https://github.com/pedrommcarrasco/Brooklyn) - Screensaver inspired by Apple's Event on October 30, 2018. ![swift_icon] -- [Epoch Flip Clock Screensaver](https://github.com/chrstphrknwtn/epoch-flip-clock-screensaver) - Unix epoch timestamp flip clock screensaver. ![objective_c_icon] -- [Image-As-Wallpaper](https://github.com/ved62/Image-As-Wallpaper) - Utility application helps with selection of images for using as desktop wallpaper or in screensaver on Mac computers. ![swift_icon] -- [Irvue](https://github.com/leonspok/Irvue-Screensaver) - Screensaver for macOS. ![objective_c_icon] -- [Life Saver](https://github.com/amiantos/lifesaver) - An abstract screensaver based on Conway's Game of Life implemented with SpriteKit ![swift_icon] -- [MinimalClock](https://github.com/mattiarossini/MinimalClock) - Simple and elegant screensaver that displays the time. ![swift_icon] -- [MusaicFM](https://github.com/obrhoff/MusaicFM) - iTunes Screensaver Clone for Spotify and Last.fm ![objective_c_icon] -- [Predator](https://github.com/vpeschenkov/Predator) - A predator-inspired clock screensaver for macOS ![swift_icon] -- [The GitHub Matrix Screensaver](https://github.com/winterbe/github-matrix-screensaver) - The GitHub Matrix Screensaver for macOS. ![javascript_icon] +### 📦 Screensaver (10) +
[Aerial](https://github.com/JohnCoates/Aerial) - Apple TV Aerial Screensaver for macOS.

Languages: ![swift_icon]
Screenshots:



(3 more screenshots available in the repository)

+
[Brooklyn](https://github.com/pedrommcarrasco/Brooklyn) - Screensaver inspired by Apple's Event on October 30, 2018.

Languages: ![swift_icon]
Screenshots:


+
[Epoch Flip Clock Screensaver](https://github.com/chrstphrknwtn/epoch-flip-clock-screensaver) - Unix epoch timestamp flip clock screensaver.

Languages: ![objective_c_icon]
Screenshots:

+
[Image-As-Wallpaper](https://github.com/ved62/Image-As-Wallpaper) - Utility application helps with selection of images for using as desktop wallpaper or in screensaver on Mac computers.

Languages: ![swift_icon]

+
[Irvue](https://github.com/leonspok/Irvue-Screensaver) - Screensaver for macOS.

Languages: ![objective_c_icon]
Screenshots:



+
[Life Saver](https://github.com/amiantos/lifesaver) - An abstract screensaver based on Conway's Game of Life implemented with SpriteKit

Languages: ![swift_icon]
Screenshots:



+
[MinimalClock](https://github.com/mattiarossini/MinimalClock) - Simple and elegant screensaver that displays the time.

Languages: ![swift_icon]
Website: https://mattiarossini.github.io/MinimalClock/
Screenshots:

+
[MusaicFM](https://github.com/obrhoff/MusaicFM) - iTunes Screensaver Clone for Spotify and Last.fm

Languages: ![objective_c_icon]
Screenshots:

+
[Predator](https://github.com/vpeschenkov/Predator) - A predator-inspired clock screensaver for macOS

Languages: ![swift_icon]
Screenshots:


+
[The GitHub Matrix Screensaver](https://github.com/winterbe/github-matrix-screensaver) - The GitHub Matrix Screensaver for macOS.

Languages: ![javascript_icon]
Screenshots:


+ -### Security -- [Cloaker](https://github.com/spieglt/cloaker) - simple drag-and-drop, password-based file encryption. ![rust_icon] -- [Cryptomator](https://github.com/cryptomator/cryptomator) - Multi-platform transparent client-side encryption of your files in the cloud. ![java_icon] -- [LuLu](https://github.com/objective-see/LuLu) - LuLu is macOS firewall application that aims to block unauthorized (outgoing) network traffic. ![objective_c_icon] -- [Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene. ![swift_icon] -- [Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives. ![swift_icon] -- [Swifty](https://github.com/swiftyapp/swifty) - Free and offline password manager. ![javascript_icon] -- [VeraCrypt](https://github.com/veracrypt/VeraCrypt) - Disk encryption with strong security based on TrueCrypt. ![c_icon] ![cpp_icon] -- [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. ![shell_icon] -- [stronghold](https://github.com/alichtman/stronghold) - Easily configure macOS security settings from the terminal. ![python_icon] +### 🔒 Security (9) +
[Cloaker](https://github.com/spieglt/cloaker) - simple drag-and-drop, password-based file encryption.

Languages: ![rust_icon]
Website: https://adequate.systems/
Screenshots:

+
[Cryptomator](https://github.com/cryptomator/cryptomator) - Multi-platform transparent client-side encryption of your files in the cloud.

Languages: ![java_icon]
Website: https://cryptomator.org/

+
[LuLu](https://github.com/objective-see/LuLu) - LuLu is macOS firewall application that aims to block unauthorized (outgoing) network traffic.

Languages: ![objective_c_icon]

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

Languages: ![swift_icon]
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.

Languages: ![swift_icon]

+
[Swifty](https://github.com/swiftyapp/swifty) - Free and offline password manager.

Languages: ![javascript_icon]
Website: https://getswifty.pro
Screenshots:


+
[VeraCrypt](https://github.com/veracrypt/VeraCrypt) - Disk encryption with strong security based on TrueCrypt.

Languages: ![c_icon] ![cpp_icon]
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.

Languages: ![shell_icon]
Screenshots:

+
[stronghold](https://github.com/alichtman/stronghold) - Easily configure macOS security settings from the terminal.

Languages: ![python_icon]
Screenshots:


+ -### Sharing Files -- [Cyberduck](https://github.com/iterate-ch/cyberduck) - Cyberduck is a libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure & OneDrive, Google Drive and Dropbox. ![java_icon] -- [Deluge](https://github.com/deluge-torrent/deluge) - Lightweight cross-platform BitTorrent client. ![python_icon] -- [NitroShare](https://github.com/nitroshare/nitroshare-desktop) - Transferring files from one device to another ![cpp_icon] -- [Rhea](https://github.com/timonus/Rhea) - macOS status bar app for quickly sharing files and URLs. ![objective_c_icon] -- [Soduto](https://github.com/soduto/Soduto) - Soduto is a KDEConnect compatible application for macOS. It gives AirDrop like integration and allows file and clipboard sharing between your phones, desktops and tablets. ![swift_icon] ![objective_c_icon] -- [Transmission](https://github.com/transmission/transmission) - Official Transmission BitTorrent client repository. ![objective_c_icon] ![c_icon] -- [Tribler](https://github.com/Tribler/tribler) - Privacy enhanced BitTorrent client with P2P content discovery. ![python_icon] -- [mac2imgur](https://github.com/mileswd/mac2imgur) - Simple Mac app designed to make uploading images and screenshots to Imgur quick and effortless. ![swift_icon] -- [qBittorrent](https://github.com/qbittorrent/qBittorrent) - BitTorrent client in Qt. ![cpp_icon] +### 📤 Sharing Files (9) +
[Cyberduck](https://github.com/iterate-ch/cyberduck) - Cyberduck is a libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure & OneDrive, Google Drive and Dropbox.

Languages: ![java_icon]
Website: https://cyberduck.io
Screenshots:


+
[Deluge](https://github.com/deluge-torrent/deluge) - Lightweight cross-platform BitTorrent client.

Languages: ![python_icon]

+
[NitroShare](https://github.com/nitroshare/nitroshare-desktop) - Transferring files from one device to another

Languages: ![cpp_icon]
Website: https://nitroshare.net

+
[Rhea](https://github.com/timonus/Rhea) - macOS status bar app for quickly sharing files and URLs.

Languages: ![objective_c_icon]

+
[Soduto](https://github.com/soduto/Soduto) - Soduto is a KDEConnect compatible application for macOS. It gives AirDrop like integration and allows file and clipboard sharing between your phones, desktops and tablets.

Languages: ![swift_icon] ![objective_c_icon]
Website: https://soduto.com/

+
[Transmission](https://github.com/transmission/transmission) - Official Transmission BitTorrent client repository.

Languages: ![objective_c_icon] ![c_icon]

+
[Tribler](https://github.com/Tribler/tribler) - Privacy enhanced BitTorrent client with P2P content discovery.

Languages: ![python_icon]

+
[mac2imgur](https://github.com/mileswd/mac2imgur) - Simple Mac app designed to make uploading images and screenshots to Imgur quick and effortless.

Languages: ![swift_icon]

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

Languages: ![cpp_icon]

+ -### Social Networking -- [Caprine](https://github.com/sindresorhus/caprine#features) - Elegant Facebook Messenger desktop app. ![javascript_icon] ![css_icon] -- [Goofy](https://github.com/danielbuechele/goofy) - Unofficial Facebook Messenger client. ![javascript_icon] -- [Leviathan](https://github.com/Swiftodon/Leviathan) - Leviathan is a iOS and macOS client application for the Mastodon social network. ![swift_icon] -- [Messenger](https://github.com/rsms/fb-mac-messenger) - macOS app wrapping Facebook's Messenger for desktop. ![objective_c_icon] -- [Product Hunt](https://github.com/producthunt/producthunt-osx) - share and discover your favorite new products and applications. ![swift_icon] -- [Quail](https://github.com/1000ch/quail) - Unofficial [esa](https://esa.io) app. ![javascript_icon] -- [Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram Desktop App. ![javascript_icon] ![css_icon] -- [RedditOS](https://github.com/Dimillian/RedditOS) - A SwiftUI Reddit client for macOS. ![swift_icon] -- [Simpo](https://github.com/KeliCheng/Simpo) - macOS menubar app to post status quickly. ![swift_icon] +### 👥 Social Networking (9) +
[Caprine](https://github.com/sindresorhus/caprine#features) - Elegant Facebook Messenger desktop app.

Languages: ![javascript_icon] ![css_icon]

+
[Goofy](https://github.com/danielbuechele/goofy) - Unofficial Facebook Messenger client.

Languages: ![javascript_icon]

+
[Leviathan](https://github.com/Swiftodon/Leviathan) - Leviathan is a iOS and macOS client application for the Mastodon social network.

Languages: ![swift_icon]

+
[Messenger](https://github.com/rsms/fb-mac-messenger) - macOS app wrapping Facebook's Messenger for desktop.

Languages: ![objective_c_icon]
Screenshots:

+
[Product Hunt](https://github.com/producthunt/producthunt-osx) - share and discover your favorite new products and applications.

Languages: ![swift_icon]

+
[Quail](https://github.com/1000ch/quail) - Unofficial [esa](https://esa.io) app.

Languages: ![javascript_icon]
Screenshots:

+
[Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram Desktop App.

Languages: ![javascript_icon] ![css_icon]

+
[RedditOS](https://github.com/Dimillian/RedditOS) - A SwiftUI Reddit client for macOS.

Languages: ![swift_icon]
Screenshots:

+
[Simpo](https://github.com/KeliCheng/Simpo) - macOS menubar app to post status quickly.

Languages: ![swift_icon]
Screenshots:


+ -### Streaming -- [Galeri](https://github.com/michealparks/galeri) - Perpetual artwork streaming app. ![javascript_icon] -- [OBS Studio](https://github.com/obsproject/obs-studio) - Free and open source software for live streaming and screen recording. ![cpp_icon] -- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. ![swift_icon] +### 📦 Streaming (3) +
[Galeri](https://github.com/michealparks/galeri) - Perpetual artwork streaming app.

Languages: ![javascript_icon]

+
[OBS Studio](https://github.com/obsproject/obs-studio) - Free and open source software for live streaming and screen recording.

Languages: ![cpp_icon]
Website: https://obsproject.com/

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

Languages: ![swift_icon]
Website: https://www.plugformac.com/
Screenshots:

+ -### System -- [AppPolice](https://github.com/AppPolice/AppPolice) - App for macOS with a minimalistic UI which lets you quickly throttle down the CPU usage of any running process. ![objective_c_icon] -- [Apple Juice](https://github.com/raphaelhanneken/apple-juice) - Advanced battery gauge for macOS. ![swift_icon] -- [Clean-Me](https://github.com/Kevin-De-Koninck/Clean-Me) - Small macOS app that acts as a system cleaner (logs, cache, ...). ![swift_icon] -- [Diagnostics](https://github.com/macmade/Diagnostics) - Diagnostics is an application displaying the diagnostic reports from applications on macOS. ![swift_icon] -- [DisableMonitor](https://github.com/Eun/DisableMonitor) - Easily disable or enable a monitor on your Mac. ![objective_c_icon] -- [Fanny](https://github.com/DanielStormApps/Fanny) - Monitor your Mac's fan speed and CPU temperature from your Notification Center. ![objective_c_icon] -- [HoRNDIS](https://github.com/jwise/HoRNDIS) - Android USB tethering driver for macOS. ![cpp_icon] -- [Juice](https://github.com/brianmichel/Juice) - Make your battery information a bit more interesting. ![swift_icon] -- [KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevents your Mac from going to sleep. ![objective_c_icon] -- [Latest](https://github.com/mangerlahn/Latest) - Small utility app for macOS that makes sure you know about all the latest updates to the apps you use. ![swift_icon] -- [Loading](https://github.com/BonzaiThePenguin/Loading) - Simple network activity monitor for macOS. ![objective_c_icon] -- [Overkill](https://github.com/KrauseFx/overkill-for-mac) - Stop iTunes from opening when you connect your iPhone. ![swift_icon] -- [ProfileCreator](https://github.com/ProfileCreator/ProfileCreator) - macOS Application to create standard or customized configuration profiles. ![objective_c_icon] -- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. ![swift_icon] -- [Sloth](https://github.com/sveinbjornt/Sloth) - Sloth is an macOS application that displays a list of all open files and sockets in use by all running applications on your system. ![objective_c_icon] -- [Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative. ![typescript_icon] ![swift_icon] -- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar ![swift_icon] -- [Turbo Boost Switcher](https://github.com/rugarciap/Turbo-Boost-Switcher) - Turbo Boost Switcher is a little application for Mac computers that allows to enable and/or disable the Turbo Boost feature. ![objective_c_icon] -- [VerticalBar](https://github.com/DeromirNeves/DockSeparator) - macOS application to add a vertical bar to Dock. ![swift_icon] -- [Wireshark](https://gitlab.com/wireshark/wireshark/-/tree/master) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions. ![c_icon] ![c++_icon] -- [eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI. ![swift_icon] -- [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. ![shell_icon] -- [macOSLucidaGrande](https://github.com/LumingYin/macOSLucidaGrande) - A small utility to set Lucida Grande as your Mac's system UI font. ![objective_c_icon] +### ⚙️ 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.

Languages: ![objective_c_icon]
Screenshots:



(2 more screenshots available in the repository)

+
[Apple Juice](https://github.com/raphaelhanneken/apple-juice) - Advanced battery gauge for macOS.

Languages: ![swift_icon]
Screenshots:



+
[Clean-Me](https://github.com/Kevin-De-Koninck/Clean-Me) - Small macOS app that acts as a system cleaner (logs, cache, ...).

Languages: ![swift_icon]
Screenshots:


+
[Diagnostics](https://github.com/macmade/Diagnostics) - Diagnostics is an application displaying the diagnostic reports from applications on macOS.

Languages: ![swift_icon]
Screenshots:

+
[DisableMonitor](https://github.com/Eun/DisableMonitor) - Easily disable or enable a monitor on your Mac.

Languages: ![objective_c_icon]

+
[Fanny](https://github.com/DanielStormApps/Fanny) - Monitor your Mac's fan speed and CPU temperature from your Notification Center.

Languages: ![objective_c_icon]
Screenshots:

+
[HoRNDIS](https://github.com/jwise/HoRNDIS) - Android USB tethering driver for macOS.

Languages: ![cpp_icon]

+
[Juice](https://github.com/brianmichel/Juice) - Make your battery information a bit more interesting.

Languages: ![swift_icon]
Screenshots:


+
[KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevents your Mac from going to sleep.

Languages: ![objective_c_icon]
Screenshots:

+
[Latest](https://github.com/mangerlahn/Latest) - Small utility app for macOS that makes sure you know about all the latest updates to the apps you use.

Languages: ![swift_icon]
Screenshots:

+
[Loading](https://github.com/BonzaiThePenguin/Loading) - Simple network activity monitor for macOS.

Languages: ![objective_c_icon]
Screenshots:

+
[Overkill](https://github.com/KrauseFx/overkill-for-mac) - Stop iTunes from opening when you connect your iPhone.

Languages: ![swift_icon]

+
[ProfileCreator](https://github.com/ProfileCreator/ProfileCreator) - macOS Application to create standard or customized configuration profiles.

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


+
[Sloth](https://github.com/sveinbjornt/Sloth) - Sloth is an macOS application that displays a list of all open files and sockets in use by all running applications on your system.

Languages: ![objective_c_icon]
Screenshots:



+
[Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative.

Languages: ![typescript_icon] ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

+
[Turbo Boost Switcher](https://github.com/rugarciap/Turbo-Boost-Switcher) - Turbo Boost Switcher is a little application for Mac computers that allows to enable and/or disable the Turbo Boost feature.

Languages: ![objective_c_icon]

+
[VerticalBar](https://github.com/DeromirNeves/DockSeparator) - macOS application to add a vertical bar to Dock.

Languages: ![swift_icon]
Screenshots:

+
[Wireshark](https://gitlab.com/wireshark/wireshark/-/tree/master) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions.

Languages: ![c_icon] ![c++_icon]
Website: https://www.wireshark.org/

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

Languages: ![swift_icon]
Screenshots:

+
[macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper.

Languages: ![shell_icon]
Screenshots:

+
[macOSLucidaGrande](https://github.com/LumingYin/macOSLucidaGrande) - A small utility to set Lucida Grande as your Mac's system UI font.

Languages: ![objective_c_icon]
Website: https://github.com/LumingYin/macOSLucidaGrande/releases
Screenshots:

+ -### Terminal -- [Alacritty](https://github.com/alacritty/alacritty) - Cross-platform, GPU-accelerated terminal emulator. ![rust_icon] -- [Bifrost](https://github.com/ishuah/bifrost) - A tiny terminal emulator for serial port communication (macOS/Linux). ![go_icon] -- [Console](https://github.com/macmade/Console) - macOS console application. ![swift_icon] -- [Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder. ![swift_icon] -- [Hyper](https://github.com/vercel/hyper) - Terminal built on web technologies. ![javascript_icon] ![css_icon] -- [Kitty](https://github.com/kovidgoyal/kitty) - Cross-platform, fast, feature full, GPU based terminal emulator. ![python_icon] ![c_icon] -- [OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - Finder Toolbar app for macOS to open the current directory in Terminal, iTerm, Hyper or Alacritty. ![swift_icon] -- [OpenTerminal](https://github.com/es-kumagai/OpenTerminal) - App for macOS that opens a new Finder window and changes the current directory to the folder launched by the app. ![swift_icon] -- [cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal ![objective_c_icon] -- [iTerm 2](https://github.com/gnachman/iTerm2) - Terminal emulator for macOS that does amazing things. ![objective_c_icon] -- [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. ![shell_icon] -- [wallpapper](https://github.com/mczachurski/wallpapper) - wallpapper is a console application for creating dynamic wallpapers for Mojave. ![swift_icon] -- [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. ![rust_icon] +### 📺 Terminal (13) +
[Alacritty](https://github.com/alacritty/alacritty) - Cross-platform, GPU-accelerated terminal emulator.

Languages: ![rust_icon]
Screenshots:

+
[Bifrost](https://github.com/ishuah/bifrost) - A tiny terminal emulator for serial port communication (macOS/Linux).

Languages: ![go_icon]

+
[Console](https://github.com/macmade/Console) - macOS console application.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]

+
[Hyper](https://github.com/vercel/hyper) - Terminal built on web technologies.

Languages: ![javascript_icon] ![css_icon]
Screenshots:

+
[Kitty](https://github.com/kovidgoyal/kitty) - Cross-platform, fast, feature full, GPU based terminal emulator.

Languages: ![python_icon] ![c_icon]

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

Languages: ![swift_icon]
Screenshots:


+
[OpenTerminal](https://github.com/es-kumagai/OpenTerminal) - App for macOS that opens a new Finder window and changes the current directory to the folder launched by the app.

Languages: ![swift_icon]

+
[cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal

Languages: ![objective_c_icon]

+
[iTerm 2](https://github.com/gnachman/iTerm2) - Terminal emulator for macOS that does amazing things.

Languages: ![objective_c_icon]

+
[macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper.

Languages: ![shell_icon]
Screenshots:

+
[wallpapper](https://github.com/mczachurski/wallpapper) - wallpapper is a console application for creating dynamic wallpapers for Mojave.

Languages: ![swift_icon]

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

Languages: ![rust_icon]
Screenshots:

+ -### Touch Bar -- [Muse](https://github.com/xzzz9097/Muse) - Spotify controller with TouchBar support. ![swift_icon] -- [MyTouchbarMyRules](https://github.com/toxblh/MTMR) - App to customize your Touch Bar as you want. ![swift_icon] -- [Pock](https://github.com/pock/pock) - Display macOS Dock in Touch Bar. ![swift_icon] -- [Touch Bar Preview](https://github.com/touchbar/Touch-Bar-Preview) - Small application to display your designs on the Touch Bar of the new MacBook Pro. ![swift_icon] -- [Touch Bar Simulator](https://github.com/sindresorhus/touch-bar-simulator) - Use the Touch Bar on any Mac. ![swift_icon] -- [Touch Emoji](https://github.com/ilyalesik/touch-emoji) - Emoji picker for MacBook Pro Touch Bar. ![swift_icon] +### 📦 Touch Bar (6) +
[Muse](https://github.com/xzzz9097/Muse) - Spotify controller with TouchBar support.

Languages: ![swift_icon]
Screenshots:

+
[MyTouchbarMyRules](https://github.com/toxblh/MTMR) - App to customize your Touch Bar as you want.

Languages: ![swift_icon]

+
[Pock](https://github.com/pock/pock) - Display macOS Dock in Touch Bar.

Languages: ![swift_icon]
Website: https://pock.app/
Screenshots:

+
[Touch Bar Preview](https://github.com/touchbar/Touch-Bar-Preview) - Small application to display your designs on the Touch Bar of the new MacBook Pro.

Languages: ![swift_icon]

+
[Touch Bar Simulator](https://github.com/sindresorhus/touch-bar-simulator) - Use the Touch Bar on any Mac.

Languages: ![swift_icon]

+
[Touch Emoji](https://github.com/ilyalesik/touch-emoji) - Emoji picker for MacBook Pro Touch Bar.

Languages: ![swift_icon]
Screenshots:


+ -### Utilities -- [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android ![swift_icon] -- [ArchiveMounter](https://github.com/ivoronin/ArchiveMounter) - Mounts archives like disk images. ![swift_icon] -- [Balena Etcher](https://github.com/balena-io/etcher) - Flash OS images to SD cards & USB drives, safely and easily. ![typescript_icon] -- [BeardedSpice](https://github.com/beardedspice/beardedspice) - Control web based media players with the media keys found on Mac keyboards. ![objective_c_icon] -- [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. ![javascript_icon] -- [Bitwarden](https://github.com/bitwarden/desktop) - Cross-platform password management solutions for individuals, teams, and business organizations. ![typescript_icon] -- [Bitwarden Menu](https://github.com/jnsdrtlf/bitwarden-menubar) - Bitwarden Password Manager in your menu bar ![typescript_icon] ![swift_icon] -- [Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers. ![swift_icon] ![javascript_icon] -- [Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Secure password manager for mac and other platforms. ![javascript_icon] -- [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. ![swift_icon] -- [Catch](https://github.com/mipstian/catch/) - Catch: Broadcatching made easy. ![swift_icon] -- [Clear Clipboard Text Format](https://github.com/LumingYin/ClipboardClear) - Easily clear the format of your clipboard text with Clear Clipboard Text Format. ![objective_c_icon] -- [CoreLocationCLI](https://github.com/fulldecent/corelocationcli) - Get the physical location of your device and prints it to standard output ![swift_icon] -- [CornerCal](https://github.com/ekreutz/CornerCal) - Simple, clean calendar and clock app for macOS. ![swift_icon] -- [Crypter](https://github.com/HR/Crypter) - Crypter is an innovative, convenient and secure cross-platform crypto app that simplifies secure password generation and management by requiring you to only remember one bit, the MasterPass. ![javascript_icon] -- [DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator... ![swift_icon] -- [Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder. ![swift_icon] -- [ECheck](https://github.com/josejuanqm/ECheck) - Small tool to validate epub files for macOS. ![swift_icon] -- [Flying Carpet](https://github.com/spieglt/flyingcarpet) - cross-platform file transfer over ad-hoc wifi, like AirDrop but for Mac/Windows/Linux. ![go_icon] -- [Funky](https://github.com/thecatalinstan/Funky) - Easily toggle the function key on your Mac on a per app basis. ![objective_c_icon] -- [Gray](https://github.com/zenangst/Gray) - Pick between the light appearance and the dark appearance on a per-app basis with the click of a button ![swift_icon] -- [Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Manage grayscale mode from menu bar. ![swift_icon] -- [Kap](https://github.com/wulkano/kap) - Screen recorder application built with web technology. ![javascript_icon] -- [KeePassXC](https://github.com/keepassxreboot/keepassxc) - Cross-platform community-driven port of the Windows application "Keepass Password Safe" ![cpp_icon] -- [KeeWeb](https://github.com/keeweb/keeweb) - Cross-platform password manager compatible with KeePass. ![javascript_icon] -- [Keka](https://github.com/aonez/Keka) - Keka is a full featured file archiver, as easy as it can be. ![swift_icon] -- [Kyapchar](https://github.com/vishaltelangre/Kyapchar) - Simple screen and microphone audio recorder for macOS. ![swift_icon] -- [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. ![swift_icon] -- [Lunar](https://github.com/alin23/lunar) - Intelligent adaptive brightness for your external displays. ![swift_icon] -- [MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client. ![javascript_icon] ![typescript_icon] -- [MacPass](https://github.com/MacPass/MacPass) - Native macOS KeePass client. ![objective_c_icon] -- [Maria](https://github.com/shincurry/Maria) - macOS native app/widget for aria2 download tool. ![swift_icon] -- [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings ![swift_icon] -- [Meme Maker](https://github.com/MemeMaker/Meme-Maker-Mac) - Meme Maker macOS application for meme creation. ![swift_icon] -- [Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse ![c_icon] -- [MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys. ![swift_icon] ![objective_c_icon] -- [Monolingual](https://github.com/IngmarStein/Monolingual) - Remove unnecessary language resources from macOS ![swift_icon] -- [Mos](https://github.com/Caldis/Mos) - Smooth your mouse's scrolling and reverse the mouse scroll direction ![swift_icon] -- [NVM](https://github.com/nvm-sh/nvm) - Node Version Manager. ![shell_icon] -- [Nmap](https://github.com/nmap/nmap) - Nmap - the Network Mapper. ![cpp_icon] -- [Nocturnal](https://github.com/joshjon/nocturnal) - Menu bar app featuring darker than dark dimming, Night Shift fine tuning, and the ability to turn off TouchBar on MacBook Pro. ![swift_icon] -- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. ![swift_icon] -- [Noti](https://github.com/jariz/Noti/) - Receive Android notifications on your mac (with PushBullet). ![swift_icon] -- [OpenRocket](https://github.com/openrocket/openrocket) - OpenRocket is a cross-platform utility tool to model and simulate model rockets and their flight characteristics. ![java_icon] -- [PB for Desktop](https://github.com/sidneys/pb-for-desktop) - Receive native push notifications on macOS, Windows and Linux. ![javascript_icon] -- [Padlock](https://github.com/padloc/padloc) - A minimal, open source password manager for macOS. ![javascript_icon] -- [PercentCalculator](https://github.com/cemolcay/PercentCalculator) - A menu bar application that calculates percents. ![swift_icon] -- [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. ![swift_icon] ![metal_icon] -- [Plain Pasta](https://github.com/hisaac/PlainPasta) - Plaintextify your clipboard ![swift_icon] -- [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. ![swift_icon] -- [PowerShell](https://github.com/powershell/powershell) - PowerShell is a cross-platform automation and configuration tool/framework that works well with your existing tools. ![c_sharp_icon] -- [Rugby](https://github.com/swiftyfinch/Rugby) - 🏈 Cache CocoaPods for faster rebuild and indexing Xcode project. ![swift_icon] -- [ScreenCat](https://github.com/maxogden/screencat) - ScreenCat is a screen sharing + remote collaboration application. ![javascript_icon] ![css_icon] -- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. ![swift_icon] -- [SlowQuitApps](https://github.com/dteoh/SlowQuitApps) - Add a global delay to Command-Q to stop accidental app quits. ![objective_c_icon] -- [Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative. ![typescript_icon] ![swift_icon] -- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar ![swift_icon] -- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. ![swift_icon] -- [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. ![typescript_icon] ![javascript_icon] -- [Telephone](https://github.com/64characters/Telephone) - SIP softphone for macOS. ![objective_c_icon] ![swift_icon] -- [The Blockstack Browser](https://github.com/stacks-network/blockstack-browser) - Blockstack is an internet for decentralized apps where users own their data. The Blockstack Browser allows you to explore the Blockstack internet. ![javascript_icon] -- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' ![swift_icon] -- [ToTheTop](https://github.com/zenangst/ToTheTop) - Small macOS application to help you scroll to the top. ![swift_icon] -- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari ![swift_icon] -- [Wireshark](https://github.com/wireshark/wireshark) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions. ![cpp_icon] -- [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. ![objective_c_icon] -- [calibre](https://github.com/kovidgoyal/calibre) - cross platform e-book manager. ![python_icon] -- [dupeGuru](https://github.com/arsenetar/dupeguru/) - dupeGuru is a tool to find duplicate files on your computer. It can scan using file names and file contents. ![objective_c_icon] -- [eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI. ![swift_icon] -- [far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2 ![c_icon] ![cpp_icon] -- [fselect](https://github.com/jhspetersson/fselect) - Command-line tool to search files with SQL syntax. ![rust_icon] -- [homebrew-cask](https://github.com/Homebrew/homebrew-cask) - A CLI workflow for the administration of macOS applications distributed as binaries ![ruby_icon] -- [iOScanX](https://github.com/alessiomaffeis/iOScanX) - Cocoa application for semi-automated iOS app analysis and evaluation. ![objective_c_icon] ![c_icon] -- [mac-sound-fix](https://github.com/dragstor/mac-sound-fix) - Mac Sound Re-Enabler. ![swift_icon] -- [macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper. ![shell_icon] -- [nix-package-manager](https://github.com/NixOS/nix) - Nix is a reproducible package manager alternative to Homebrew, with over 80,000 packages. ![c++_icon] ![shell_icon] ![nix_icon] -- [wechsel](https://github.com/friedrichweise/wechsel) - manage bluetooth connections with your keyboard. ![swift_icon] -- [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. ![rust_icon] -- [Übersicht](https://github.com/felixhageloh/uebersicht) - Keep an eye on what's happening on your machine and in the world. ![objective_c_icon] +### 🛠️ Utilities (79) +
[Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android

Languages: ![swift_icon]
Screenshots:



(2 more screenshots available in the repository)

+
[ArchiveMounter](https://github.com/ivoronin/ArchiveMounter) - Mounts archives like disk images.

Languages: ![swift_icon]

+
[Balena Etcher](https://github.com/balena-io/etcher) - Flash OS images to SD cards & USB drives, safely and easily.

Languages: ![typescript_icon]
Website: https://www.balena.io/etcher

+
[BeardedSpice](https://github.com/beardedspice/beardedspice) - Control web based media players with the media keys found on Mac keyboards.

Languages: ![objective_c_icon]

+
[Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware.

Languages: ![javascript_icon]
Website: https://betaflight.com/
Screenshots:

+
[Bitwarden](https://github.com/bitwarden/desktop) - Cross-platform password management solutions for individuals, teams, and business organizations.

Languages: ![typescript_icon]
Website: https://bitwarden.com/
Screenshots:



+
[Bitwarden Menu](https://github.com/jnsdrtlf/bitwarden-menubar) - Bitwarden Password Manager in your menu bar

Languages: ![typescript_icon] ![swift_icon]
Screenshots:

+
[Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers.

Languages: ![swift_icon] ![javascript_icon]
Website: https://boop.okat.best
Screenshots:

+
[Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Secure password manager for mac and other platforms.

Languages: ![javascript_icon]
Screenshots:

+
[Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar.

Languages: ![swift_icon]

+
[Catch](https://github.com/mipstian/catch/) - Catch: Broadcatching made easy.

Languages: ![swift_icon]

+
[Clear Clipboard Text Format](https://github.com/LumingYin/ClipboardClear) - Easily clear the format of your clipboard text with Clear Clipboard Text Format.

Languages: ![objective_c_icon]
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

Languages: ![swift_icon]
Screenshots:

+
[CornerCal](https://github.com/ekreutz/CornerCal) - Simple, clean calendar and clock app for macOS.

Languages: ![swift_icon]
Screenshots:

+
[Crypter](https://github.com/HR/Crypter) - Crypter is an innovative, convenient and secure cross-platform crypto app that simplifies secure password generation and management by requiring you to only remember one bit, the MasterPass.

Languages: ![javascript_icon]
Screenshots:



(1 more screenshots available in the repository)

+
[DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator...

Languages: ![swift_icon]
Website: https://devutils.com
Screenshots:

+
[Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder.

Languages: ![swift_icon]
Screenshots:

+
[ECheck](https://github.com/josejuanqm/ECheck) - Small tool to validate epub files for macOS.

Languages: ![swift_icon]

+
[Flying Carpet](https://github.com/spieglt/flyingcarpet) - cross-platform file transfer over ad-hoc wifi, like AirDrop but for Mac/Windows/Linux.

Languages: ![go_icon]
Website: https://adequate.systems/
Screenshots:

+
[Funky](https://github.com/thecatalinstan/Funky) - Easily toggle the function key on your Mac on a per app basis.

Languages: ![objective_c_icon]

+
[Gray](https://github.com/zenangst/Gray) - Pick between the light appearance and the dark appearance on a per-app basis with the click of a button

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:


+
[Kap](https://github.com/wulkano/kap) - Screen recorder application built with web technology.

Languages: ![javascript_icon]

+
[KeePassXC](https://github.com/keepassxreboot/keepassxc) - Cross-platform community-driven port of the Windows application "Keepass Password Safe"

Languages: ![cpp_icon]

+
[KeeWeb](https://github.com/keeweb/keeweb) - Cross-platform password manager compatible with KeePass.

Languages: ![javascript_icon]

+
[Keka](https://github.com/aonez/Keka) - Keka is a full featured file archiver, as easy as it can be.

Languages: ![swift_icon]
Website: https://www.keka.io/en/
Screenshots:

+
[Kyapchar](https://github.com/vishaltelangre/Kyapchar) - Simple screen and microphone audio recorder for macOS.

Languages: ![swift_icon]

+
[Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView.

Languages: ![swift_icon]
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.

Languages: ![swift_icon]

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

Languages: ![javascript_icon] ![typescript_icon]
Screenshots:


+
[MacPass](https://github.com/MacPass/MacPass) - Native macOS KeePass client.

Languages: ![objective_c_icon]
Screenshots:

+
[Maria](https://github.com/shincurry/Maria) - macOS native app/widget for aria2 download tool.

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

+
[Meme Maker](https://github.com/MemeMaker/Meme-Maker-Mac) - Meme Maker macOS application for meme creation.

Languages: ![swift_icon]

+
[Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse

Languages: ![c_icon]
Screenshots:

+
[MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys.

Languages: ![swift_icon] ![objective_c_icon]
Screenshots:

+
[Monolingual](https://github.com/IngmarStein/Monolingual) - Remove unnecessary language resources from macOS

Languages: ![swift_icon]
Screenshots:

+
[Mos](https://github.com/Caldis/Mos) - Smooth your mouse's scrolling and reverse the mouse scroll direction

Languages: ![swift_icon]

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

Languages: ![shell_icon]

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

Languages: ![cpp_icon]
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.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]

+
[Noti](https://github.com/jariz/Noti/) - Receive Android notifications on your mac (with PushBullet).

Languages: ![swift_icon]

+
[OpenRocket](https://github.com/openrocket/openrocket) - OpenRocket is a cross-platform utility tool to model and simulate model rockets and their flight characteristics.

Languages: ![java_icon]
Website: https://openrocket.info/

+
[PB for Desktop](https://github.com/sidneys/pb-for-desktop) - Receive native push notifications on macOS, Windows and Linux.

Languages: ![javascript_icon]
Screenshots:



(1 more screenshots available in the repository)

+
[Padlock](https://github.com/padloc/padloc) - A minimal, open source password manager for macOS.

Languages: ![javascript_icon]

+
[PercentCalculator](https://github.com/cemolcay/PercentCalculator) - A menu bar application that calculates percents.

Languages: ![swift_icon]

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

Languages: ![swift_icon] ![metal_icon]
Website: https://superhighfives.com/pika
Screenshots:

+
[Plain Pasta](https://github.com/hisaac/PlainPasta) - Plaintextify your clipboard

Languages: ![swift_icon]
Screenshots:


+
[PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar.

Languages: ![swift_icon]
Screenshots:

+
[PowerShell](https://github.com/powershell/powershell) - PowerShell is a cross-platform automation and configuration tool/framework that works well with your existing tools.

Languages: ![c_sharp_icon]

+
[Rugby](https://github.com/swiftyfinch/Rugby) - 🏈 Cache CocoaPods for faster rebuild and indexing Xcode project.

Languages: ![swift_icon]
Website: https://swiftyfinch.github.io/en/2021-03-09-rugby-story/
Screenshots:

+
[ScreenCat](https://github.com/maxogden/screencat) - ScreenCat is a screen sharing + remote collaboration application.

Languages: ![javascript_icon] ![css_icon]

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

Languages: ![swift_icon]
Screenshots:


+
[SlowQuitApps](https://github.com/dteoh/SlowQuitApps) - Add a global delay to Command-Q to stop accidental app quits.

Languages: ![objective_c_icon]

+
[Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative.

Languages: ![typescript_icon] ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


+
[Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration.

Languages: ![typescript_icon] ![javascript_icon]
Website: https://super-productivity.com
Screenshots:

+
[Telephone](https://github.com/64characters/Telephone) - SIP softphone for macOS.

Languages: ![objective_c_icon] ![swift_icon]

+
[The Blockstack Browser](https://github.com/stacks-network/blockstack-browser) - Blockstack is an internet for decentralized apps where users own their data. The Blockstack Browser allows you to explore the Blockstack internet.

Languages: ![javascript_icon]

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

Languages: ![swift_icon]
Screenshots:

+
[ToTheTop](https://github.com/zenangst/ToTheTop) - Small macOS application to help you scroll to the top.

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

+
[Wireshark](https://github.com/wireshark/wireshark) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions.

Languages: ![cpp_icon]
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.

Languages: ![objective_c_icon]
Screenshots:

+
[calibre](https://github.com/kovidgoyal/calibre) - cross platform e-book manager.

Languages: ![python_icon]
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.

Languages: ![objective_c_icon]
Website: https://dupeguru.voltaicideas.net/

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

Languages: ![swift_icon]
Screenshots:

+
[far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2

Languages: ![c_icon] ![cpp_icon]

+
[fselect](https://github.com/jhspetersson/fselect) - Command-line tool to search files with SQL syntax.

Languages: ![rust_icon]

+
[homebrew-cask](https://github.com/Homebrew/homebrew-cask) - A CLI workflow for the administration of macOS applications distributed as binaries

Languages: ![ruby_icon]
Website: https://brew.sh/
Screenshots:

+
[iOScanX](https://github.com/alessiomaffeis/iOScanX) - Cocoa application for semi-automated iOS app analysis and evaluation.

Languages: ![objective_c_icon] ![c_icon]
Screenshots:


+
[mac-sound-fix](https://github.com/dragstor/mac-sound-fix) - Mac Sound Re-Enabler.

Languages: ![swift_icon]
Screenshots:

+
[macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper.

Languages: ![shell_icon]
Screenshots:

+
[nix-package-manager](https://github.com/NixOS/nix) - Nix is a reproducible package manager alternative to Homebrew, with over 80,000 packages.

Languages: ![c++_icon] ![shell_icon] ![nix_icon]
Website: https://nixos.org/explore.html

+
[wechsel](https://github.com/friedrichweise/wechsel) - manage bluetooth connections with your keyboard.

Languages: ![swift_icon]
Website: https://wechsel.weise.io
Screenshots:

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

Languages: ![rust_icon]
Screenshots:

+
[Übersicht](https://github.com/felixhageloh/uebersicht) - Keep an eye on what's happening on your machine and in the world.

Languages: ![objective_c_icon]

+ -### VPN & Proxy -- [ShadowsocksX-NG](https://github.com/shadowsocks/ShadowsocksX-NG) - Next Generation of ShadowsocksX. ![swift_icon] -- [Specht](https://github.com/zhuhaow/Specht) - Rule-based proxy app built with Network Extension for macOS. ![swift_icon] -- [SpechtLite](https://github.com/zhuhaow/SpechtLite) - Rule-based proxy app for macOS. ![swift_icon] -- [Tunnelblick](https://github.com/Tunnelblick/Tunnelblick) - Tunnelblick is a graphic user interface for OpenVPN on macOS. ![objective_c_icon] -- [clashX](https://github.com/yichengchen/clashX) - A rule based custom proxy with GUI for Mac base on clash. ![swift_icon] -- [rvc-mac](https://github.com/riboseinc/cryptode-mac) - Ribose VPN Client macOS Menu App. ![swift_icon] +### 🔐 VPN & Proxy (6) +
[ShadowsocksX-NG](https://github.com/shadowsocks/ShadowsocksX-NG) - Next Generation of ShadowsocksX.

Languages: ![swift_icon]

+
[Specht](https://github.com/zhuhaow/Specht) - Rule-based proxy app built with Network Extension for macOS.

Languages: ![swift_icon]
Screenshots:

+
[SpechtLite](https://github.com/zhuhaow/SpechtLite) - Rule-based proxy app for macOS.

Languages: ![swift_icon]

+
[Tunnelblick](https://github.com/Tunnelblick/Tunnelblick) - Tunnelblick is a graphic user interface for OpenVPN on macOS.

Languages: ![objective_c_icon]

+
[clashX](https://github.com/yichengchen/clashX) - A rule based custom proxy with GUI for Mac base on clash.

Languages: ![swift_icon]

+
[rvc-mac](https://github.com/riboseinc/cryptode-mac) - Ribose VPN Client macOS Menu App.

Languages: ![swift_icon]

+ -### Video -- [Acid.Cam.v2.OSX](https://github.com/lostjared/Acid.Cam.v2.OSX) - Acid Cam v2 for macOS distorts video to create art. ![cpp_icon] -- [AppleEvents](https://github.com/insidegui/AppleEvents) - Unofficial Apple Events app for macOS. ![objective_c_icon] -- [Conferences.digital](https://github.com/zagahr/Conferences.digital) - Best way to watch the latest and greatest videos from your favourite developer conferences for free on your Mac. ![swift_icon] -- [Datamosh](https://github.com/maelswarm/Datamosh) - Datamosh your videos on macOS. ![swift_icon] -- [Face Data](https://github.com/xiaohk/FaceData) - macOS application used to auto-annotate landmarks from a video. ![swift_icon] -- [GNU Gatekeeper](https://github.com/willamowius/gnugk) - Video conferencing server for H.323 terminals. ![cpp_icon] -- [Gifted](https://github.com/vdel26/gifted) - Turn any short video into an animated GIF quickly and easily. ![objective_c_icon] -- [HandBrake](https://github.com/HandBrake/HandBrake) - HandBrake is a video transcoder available for Linux, Mac, and Windows. ![c_icon] -- [LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding. ![javascript_icon] -- [MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player. ![c_icon] -- [MenuTube](https://github.com/edanchenkov/MenuTube) - Catch YouTube into your macOS menu bar! ![javascript_icon] -- [OpenShot](https://github.com/OpenShot/openshot-qt) - Easy to use, quick to learn, and surprisingly powerful video editor. ![python_icon] -- [Quick Caption](https://github.com/LumingYin/Caption) - Transcribe and generate caption files (SRT, ASS and FCPXML) without manually entering time codes. ![swift_icon] -- [QuickLook Video](https://github.com/Marginal/QLVideo) - This package allows macOS Finder to display thumbnails, static QuickLook previews, cover art and metadata for most types of video files. ![objective_c_icon] -- [Subler](https://bitbucket.org/galad87/subler/src) - Subler is an macOS app created to mux and tag mp4 files. ![objective_c_icon] -- [VLC](https://github.com/videolan/vlc) - VLC is a free and open source cross-platform multimedia player ![c_icon] -- [Vid Quiz Creator](https://github.com/sahil-a/vidquizcreator) - macOS application to insert quizzes within video playback and play those videos to receiving devices using the LISNR API. ![swift_icon] -- [WebTorrent Desktop](https://github.com/webtorrent/webtorrent-desktop) - Streaming torrent app. For Mac, Windows, and Linux. ![javascript_icon] -- [Yoda](https://github.com/whoisandy/yoda) - Nifty macOS application which enables you to browse and download videos from YouTube. ![javascript_icon] +### 🎬 Video (19) +
[Acid.Cam.v2.OSX](https://github.com/lostjared/Acid.Cam.v2.OSX) - Acid Cam v2 for macOS distorts video to create art.

Languages: ![cpp_icon]

+
[AppleEvents](https://github.com/insidegui/AppleEvents) - Unofficial Apple Events app for macOS.

Languages: ![objective_c_icon]

+
[Conferences.digital](https://github.com/zagahr/Conferences.digital) - Best way to watch the latest and greatest videos from your favourite developer conferences for free on your Mac.

Languages: ![swift_icon]
Screenshots:

+
[Datamosh](https://github.com/maelswarm/Datamosh) - Datamosh your videos on macOS.

Languages: ![swift_icon]
Screenshots:

+
[Face Data](https://github.com/xiaohk/FaceData) - macOS application used to auto-annotate landmarks from a video.

Languages: ![swift_icon]
Screenshots:


+
[GNU Gatekeeper](https://github.com/willamowius/gnugk) - Video conferencing server for H.323 terminals.

Languages: ![cpp_icon]
Website: https://www.gnugk.org

+
[Gifted](https://github.com/vdel26/gifted) - Turn any short video into an animated GIF quickly and easily.

Languages: ![objective_c_icon]

+
[HandBrake](https://github.com/HandBrake/HandBrake) - HandBrake is a video transcoder available for Linux, Mac, and Windows.

Languages: ![c_icon]

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

Languages: ![javascript_icon]
Website: https://mifi.no/losslesscut/
Screenshots:

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

Languages: ![c_icon]
Website: https://mpv.io
Screenshots:

+
[MenuTube](https://github.com/edanchenkov/MenuTube) - Catch YouTube into your macOS menu bar!

Languages: ![javascript_icon]

+
[OpenShot](https://github.com/OpenShot/openshot-qt) - Easy to use, quick to learn, and surprisingly powerful video editor.

Languages: ![python_icon]

+
[Quick Caption](https://github.com/LumingYin/Caption) - Transcribe and generate caption files (SRT, ASS and FCPXML) without manually entering time codes.

Languages: ![swift_icon]
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.

Languages: ![objective_c_icon]

+
[Subler](https://bitbucket.org/galad87/subler/src) - Subler is an macOS app created to mux and tag mp4 files.

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

Languages: ![c_icon]
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.

Languages: ![swift_icon]

+
[WebTorrent Desktop](https://github.com/webtorrent/webtorrent-desktop) - Streaming torrent app. For Mac, Windows, and Linux.

Languages: ![javascript_icon]
Screenshots:



+
[Yoda](https://github.com/whoisandy/yoda) - Nifty macOS application which enables you to browse and download videos from YouTube.

Languages: ![javascript_icon]

+ -### Wallpaper -- [500-mac-wallpaper](https://github.com/markcheeky/500-mac-wallpaper) - Simple macOS app for the status bar to automatically download photos from 500px.com to a local folder that can be set as a source of wallpapers. ![swift_icon] -- [ArtWall](https://github.com/JustinFincher/ASWP-for-macOS) - ArtStation set as wallpapers from artwork.rss ![objective_c_icon] -- [Artify](https://github.com/NghiaTranUIT/artify-macos) - A macOS application for bringing dedicatedly 18th century Arts to everyone ![swift_icon] -- [BingPaper](https://github.com/pengsrc/BingPaper) - Use Bing daily photo as your wallpaper on macOS. ![swift_icon] -- [Desktop Wallpaper Switcher](https://github.com/VioletGiraffe/desktop-wallpaper-switcher) - Win / Linux / macOS tool for managing and cycling desktop wallpapers. ![cpp_icon] -- [Muzei](https://github.com/naman14/Muzei-macOS) - Muzei wallpaper app for macOS. ![swift_icon] -- [Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper. ![swift_icon] -- [Satellite Eyes](https://github.com/tomtaylor/satellite-eyes) - macOS app to automatically set your desktop wallpaper to the satellite view overhead. ![objective_c_icon] -- [Sunscreen](https://github.com/davidcelis/Sunscreen) - Sunscreen is a fun, lightweight application that changes your desktop wallpaper based on sunrise and sunset. ![swift_icon] -- [WallpaperMenu](https://github.com/diogosantos/WallpaperMenu) - macOS menubar application for navigation through beautiful pictures on the web and set them up as your desktop image. ![ruby_icon] -- [pyDailyChanger](https://github.com/IngoMeyer441/pyDailyChanger) - pyDailyChanger is a program that changes your wallpaper daily. ![python_icon] +### 🖥️ 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.

Languages: ![swift_icon]

+
[ArtWall](https://github.com/JustinFincher/ASWP-for-macOS) - ArtStation set as wallpapers from artwork.rss

Languages: ![objective_c_icon]

+
[Artify](https://github.com/NghiaTranUIT/artify-macos) - A macOS application for bringing dedicatedly 18th century Arts to everyone

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

+
[BingPaper](https://github.com/pengsrc/BingPaper) - Use Bing daily photo as your wallpaper on macOS.

Languages: ![swift_icon]
Screenshots:


+
[Desktop Wallpaper Switcher](https://github.com/VioletGiraffe/desktop-wallpaper-switcher) - Win / Linux / macOS tool for managing and cycling desktop wallpapers.

Languages: ![cpp_icon]

+
[Muzei](https://github.com/naman14/Muzei-macOS) - Muzei wallpaper app for macOS.

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Website: https://sindresorhus.com/plash
Screenshots:

+
[Satellite Eyes](https://github.com/tomtaylor/satellite-eyes) - macOS app to automatically set your desktop wallpaper to the satellite view overhead.

Languages: ![objective_c_icon]
Screenshots:

+
[Sunscreen](https://github.com/davidcelis/Sunscreen) - Sunscreen is a fun, lightweight application that changes your desktop wallpaper based on sunrise and sunset.

Languages: ![swift_icon]
Screenshots:

+
[WallpaperMenu](https://github.com/diogosantos/WallpaperMenu) - macOS menubar application for navigation through beautiful pictures on the web and set them up as your desktop image.

Languages: ![ruby_icon]

+
[pyDailyChanger](https://github.com/IngoMeyer441/pyDailyChanger) - pyDailyChanger is a program that changes your wallpaper daily.

Languages: ![python_icon]

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

Languages: ![swift_icon] ![shell_icon]
Website: https://alt-tab-macos.netlify.app/
Screenshots:



+
[Amethyst](https://github.com/ianyh/Amethyst) - Automatic tiling window manager for macOS.

Languages: ![swift_icon]
Screenshots:



+
[AppGrid](https://github.com/mjolnirapp/AppGrid) - Grid-based keyboard window manager for macOS.

Languages: ![objective_c_icon]
Screenshots:


+
[Desktop Profiles](https://github.com/mamiksik/Desktop-Profiles) - An innovative desktop/window manager for macOS

Languages: ![swift_icon]
Screenshots:


+
[Hammerspoon](https://github.com/Hammerspoon/hammerspoon) - Staggeringly powerful macOS desktop automation with Lua.

Languages: ![lua_icon] ![objective_c_icon]

+
[Phoenix](https://github.com/kasper/phoenix) - Lightweight macOS window and app manager scriptable with JavaScript.

Languages: ![objective_c_icon]
Screenshots:

+
[Rectangle](https://github.com/rxhanson/Rectangle) - Rectangle is a window manager heavily based on Spectacle, written in Swift.

Languages: ![swift_icon]
Website: https://rectangleapp.com

+
[ShiftIt](https://github.com/fikovnik/ShiftIt) - Managing windows size and position.

Languages: ![objective_c_icon]
Screenshots:



+
[Slate](https://github.com/jigish/slate) - Slate is a window management application similar to Divvy and SizeUp

Languages: ![objective_c_icon]

+
[Spectacle](https://github.com/eczarny/spectacle) - Spectacle allows you to organize your windows without using a mouse.

Languages: ![objective_c_icon]

+
[Yabai](https://github.com/koekeishiya/yabai) - A tiling window manager for macOS based on binary space partitioning.

Languages: ![c_icon] ![objective_c_icon]
Screenshots:

+ + + ## Contributors From 468b22484b89333c0a84f2840fa5b08fc8b17440 Mon Sep 17 00:00:00 2001 From: Serhii Londar Date: Fri, 11 Apr 2025 23:48:33 +0200 Subject: [PATCH 06/62] Update main.swift --- .github/main.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/main.swift b/.github/main.swift index 21d71fb..071e74f 100644 --- a/.github/main.swift +++ b/.github/main.swift @@ -14,7 +14,7 @@ let header = """ Stand With Ukraine - +

Awesome macOS Open Source Applications

A curated list of open source applications for macOS

From 6e5dca573b4b7433697519853cac461487e76a9d Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Fri, 11 Apr 2025 21:48:47 +0000 Subject: [PATCH 07/62] Generate README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 439d351..2c1ad72 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Stand With Ukraine - +

Awesome macOS Open Source Applications

A curated list of open source applications for macOS

From e49c2c59ef5f2ba29dc98bd80839320c2d8d139f Mon Sep 17 00:00:00 2001 From: WINBIGFOX Date: Sun, 27 Apr 2025 00:41:25 +0200 Subject: [PATCH 08/62] Add TimeScribe (#953) --- applications.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/applications.json b/applications.json index eeaffca..22a7a05 100644 --- a/applications.json +++ b/applications.json @@ -9727,6 +9727,29 @@ "languages": [ "swift" ] + }, + { + "short_description": "Simple and free working time recording.", + "categories": [ + "menubar", + "productivity" + ], + "repo_url": "https://github.com/WINBIGFOX/timescribe", + "title": "TimeScribe", + "icon_url": "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/public/icon.png", + "screenshots": [ + "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/menubar_light.png", + "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/dayview_en_light.webp", + "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/app_activity_en_light.webp", + "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/absences_en_light.webp", + "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/start_break_en_light.webp" + ], + "official_site": "https://timescribe.app", + "languages": [ + "css", + "javascript", + "typescript", + ] } ] } From be6046fac5c1d02750deaaaddca6d0e73adb7027 Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Sat, 26 Apr 2025 22:41:37 +0000 Subject: [PATCH 09/62] Generate README --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c1ad72..0094104 100644 --- a/README.md +++ b/README.md @@ -515,7 +515,7 @@ You can see in which language an app is written. Currently there are following l

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

Languages: ![python_icon]
Screenshots:



-### 📊 Menubar (38) +### 📊 Menubar (39)
[Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks.

Languages: ![javascript_icon]

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

Languages: ![swift_icon] ![python_icon] ![ruby_icon]
Screenshots:

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

Languages: ![objective_c_icon]

@@ -549,6 +549,7 @@ You can see in which language an app is written. Currently there are following l
[SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs.

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Website: https://swiftbar.app

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

Languages: ![css_icon] ![javascript_icon] ![typescript_icon]
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.

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]

@@ -646,7 +647,7 @@ You can see in which language an app is written. Currently there are following l
[mkchromecast](https://github.com/muammar/mkchromecast) - Cast macOS and Linux Audio/Video to your Google Cast and Sonos Devices.

Languages: ![python_icon]

-### ⏱️ Productivity (54) +### ⏱️ Productivity (55)
[Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app.

Languages: ![javascript_icon] ![css_icon]

[Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar.

Languages: ![swift_icon]

[Cerebro](https://github.com/cerebroapp/cerebro) - Cross-platform launcher app.

Languages: ![javascript_icon]

@@ -684,6 +685,7 @@ You can see in which language an app is written. Currently there are following l
[ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then'

Languages: ![swift_icon]
Screenshots:

[Thyme](https://github.com/joaomoreno/thyme) - The task timer for OS X.

Languages: ![objective_c_icon]

[Time to Leave](https://github.com/thamara/time-to-leave) - Log work hours and get notified when it's time to leave the office and start to live.

Languages: ![javascript_icon] ![css_icon] ![html_icon]
Website: https://timetoleave.app/
Screenshots:


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

Languages: ![css_icon] ![javascript_icon] ![typescript_icon]
Website: https://timescribe.app
Screenshots:



(2 more screenshots available in the repository)

[Timer](https://github.com/michaelvillar/timer-app) - Simple Timer app for Mac.

Languages: ![swift_icon]
Screenshots:


[Toggl Desktop](https://github.com/toggl-open-source/toggldesktop) - Toggl Desktop app for Windows, Mac and Linux.

Languages: ![cpp_icon]

[TomatoBar](https://github.com/ivoronin/TomatoBar) - Pomodoro Technique Timer for macOS with Touch Bar support.

Languages: ![swift_icon]

From 43520f554f9b3e6f5228b3d2dfb4df1b7462d9bd Mon Sep 17 00:00:00 2001 From: Serhii Londar Date: Sun, 14 Sep 2025 18:57:04 +0200 Subject: [PATCH 10/62] Refactor language icon handling in JSONApplication Updated the language display logic to use HTML tags for language icons instead of markdown syntax. Added a new function to generate the appropriate HTML for each language icon based on a predefined mapping. --- .github/main.swift | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/.github/main.swift b/.github/main.swift index 071e74f..15e0320 100644 --- a/.github/main.swift +++ b/.github/main.swift @@ -329,7 +329,7 @@ extension JSONApplication { var markdownDescription = String.empty var languages: String = String.empty for lang in self.languages { - languages.append("![\(lang)\(String.iconPrefix)] ") + languages.append(languageIconHTML(for: lang) + " ") } // Create a collapsible section for each application @@ -369,6 +369,38 @@ extension JSONApplication { } } +// Build HTML tags for language icons to ensure rendering inside HTML blocks +private func languageIconHTML(for languageKey: String) -> String { + struct LanguageIcon { let fileName: String; let label: String } + let icons: [String: LanguageIcon] = [ + "c": .init(fileName: "c-16.png", label: "C"), + "cpp": .init(fileName: "cpp-16.png", label: "C++"), + "c_sharp": .init(fileName: "csharp-16.png", label: "C#"), + "clojure": .init(fileName: "clojure-16.png", label: "Clojure"), + "coffee_script": .init(fileName: "coffeescript-16.png", label: "CoffeeScript"), + "css": .init(fileName: "css-16.png", label: "CSS"), + "elm": .init(fileName: "elm-16.png", label: "Elm"), + "go": .init(fileName: "golang-16.png", label: "Go"), + "haskell": .init(fileName: "haskell-16.png", label: "Haskell"), + "java": .init(fileName: "java-16.png", label: "Java"), + "javascript": .init(fileName: "javascript-16.png", label: "JavaScript"), + "lua": .init(fileName: "Lua-16.png", label: "Lua"), + "objective_c": .init(fileName: "objective-c-16.png", label: "Objective-C"), + "python": .init(fileName: "python-16.png", label: "Python"), + "ruby": .init(fileName: "ruby-16.png", label: "Ruby"), + "rust": .init(fileName: "rust-16.png", label: "Rust"), + "shell": .init(fileName: "shell-16.png", label: "Shell"), + "swift": .init(fileName: "swift-16.png", label: "Swift"), + "typescript": .init(fileName: "typescript-16.png", label: "TypeScript") + ] + let key = languageKey.lowercased() + if let icon = icons[key] { + return "\(icon.label) icon" + } else { + return "\(languageKey)" + } +} + // Helper function to get emoji for categories func getCategoryEmoji(_ categoryId: String) -> String { switch categoryId { From f870f9f3cc6206ad2e903df00bf4706f805e906d Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Sun, 14 Sep 2025 16:57:19 +0000 Subject: [PATCH 11/62] Generate README --- README.md | 1390 ++++++++++++++++++++++++++--------------------------- 1 file changed, 695 insertions(+), 695 deletions(-) diff --git a/README.md b/README.md index 0094104..e5a3e27 100644 --- a/README.md +++ b/README.md @@ -111,845 +111,845 @@ 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.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![c_icon]
Website: https://www.audacityteam.org/
Screenshots:

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

Languages: ![swift_icon]
Screenshots:



(5 more screenshots available in the repository)

-
[AutoMute](https://github.com/yonilevy/automute) - Automatically mute the sound when headphones disconnect / Mac awake from sleep.

Languages: ![objective_c_icon]
Website: https://yoni.ninja/automute/
Screenshots:


-
[Background Music](https://github.com/kyleneideck/BackgroundMusic) - Background Music, a macOS audio utility: automatically pause your music, set individual apps' volumes and record system audio.

Languages: ![cpp_icon]
Screenshots:

-
[BlackHole](https://github.com/ExistentialAudio/BlackHole) - BlackHole is a modern macOS virtual audio driver that allows applications to pass audio to other applications with zero additional latency.

Languages: ![c_icon]

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

Languages: ![javascript_icon]
Screenshots:



(1 more screenshots available in the repository)

-
[Clementine](https://github.com/clementine-player/Clementine) - Clementine is a modern music player and library organizer for Windows, Linux and macOS.

Languages: ![cpp_icon]
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.

Languages: ![objective_c_icon]
Website: https://cogx.org/

-
[Karaoke Forever](https://github.com/bhj/KaraokeEternal) - Host awesome karaoke parties where everyone can queue songs from their phone's browser. Plays MP3+G and MP4 with WebGL visualizations.

Languages: ![javascript_icon]
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.

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![javascript_icon]
Website: https://mifi.no/losslesscut/
Screenshots:

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

Languages: ![objective_c_icon] ![swift_icon]
Screenshots:



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

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

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

Languages: ![c_icon]
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.

Languages: ![swift_icon] ![objective_c_icon]
Screenshots:

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

Languages: ![cpp_icon]
Screenshots:



(2 more screenshots available in the repository)

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

Languages: ![swift_icon]

-
[PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Website: https://www.plugformac.com/
Screenshots:

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

Languages: ![swift_icon]
Website: https://billthefarmer.github.io/audiotools/
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![objective_c_icon] ![swift_icon]
Screenshots:

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

Languages: ![javascript_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![rust_icon]
Screenshots:



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

Languages: ![swift_icon]
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.

Languages: ![objective_c_icon] ![c_icon]
Screenshots:

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

Languages: ![cpp_icon]
Screenshots:


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

Languages: ![cpp_icon]
Screenshots:

-
[iTunes-Volume-Control](https://github.com/alberti42/iTunes-Volume-Control) - This app allows you to control the iTunes volume using volume up and volume down hotkeys.

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

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

Languages: ![c_icon] ![cpp_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: C icon
Website: https://www.audacityteam.org/
Screenshots:

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

Languages: Swift icon
Screenshots:



(5 more screenshots available in the repository)

+
[AutoMute](https://github.com/yonilevy/automute) - Automatically mute the sound when headphones disconnect / Mac awake from sleep.

Languages: Objective-C icon
Website: https://yoni.ninja/automute/
Screenshots:


+
[Background Music](https://github.com/kyleneideck/BackgroundMusic) - Background Music, a macOS audio utility: automatically pause your music, set individual apps' volumes and record system audio.

Languages: C++ icon
Screenshots:

+
[BlackHole](https://github.com/ExistentialAudio/BlackHole) - BlackHole is a modern macOS virtual audio driver that allows applications to pass audio to other applications with zero additional latency.

Languages: C icon

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

Languages: JavaScript icon
Screenshots:



(1 more screenshots available in the repository)

+
[Clementine](https://github.com/clementine-player/Clementine) - Clementine is a modern music player and library organizer for Windows, Linux and macOS.

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

Languages: Objective-C icon
Website: https://cogx.org/

+
[Karaoke Forever](https://github.com/bhj/KaraokeEternal) - Host awesome karaoke parties where everyone can queue songs from their phone's browser. Plays MP3+G and MP4 with WebGL visualizations.

Languages: JavaScript icon
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.

Languages: Objective-C icon
Screenshots:

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

Languages: JavaScript icon
Website: https://mifi.no/losslesscut/
Screenshots:

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

Languages: Objective-C icon Swift icon
Screenshots:



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

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

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

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

Languages: Swift icon Objective-C icon
Screenshots:

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

Languages: C++ icon
Screenshots:



(2 more screenshots available in the repository)

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

Languages: Swift icon

+
[PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar.

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Website: https://www.plugformac.com/
Screenshots:

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

Languages: Swift icon
Website: https://billthefarmer.github.io/audiotools/
Screenshots:

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

Languages: Objective-C icon
Screenshots:

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

Languages: Objective-C icon
Screenshots:

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

Languages: Objective-C icon Swift icon
Screenshots:

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

Languages: JavaScript icon

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

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: Rust icon
Screenshots:



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

Languages: Swift icon
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.

Languages: Objective-C icon C icon
Screenshots:

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

Languages: C++ icon
Screenshots:


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

Languages: C++ icon
Screenshots:

+
[iTunes-Volume-Control](https://github.com/alberti42/iTunes-Volume-Control) - This app allows you to control the iTunes volume using volume up and volume down hotkeys.

Languages: Objective-C icon
Screenshots:

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

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

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

Languages: C icon C++ icon

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

Languages: Swift icon
Screenshots:

### 💾 Backup (5) -
[BorgBase/Vorta](https://github.com/borgbase) - Simple and Secure Offsite Backups

Languages: ![python_icon]
Website: https://www.borgbase.com/

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

Languages: ![python_icon]

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

Languages: ![swift_icon]

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

Languages: ![cpp_icon] ![c_icon]

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

Languages: ![python_icon]
Screenshots:

+
[BorgBase/Vorta](https://github.com/borgbase) - Simple and Secure Offsite Backups

Languages: Python icon
Website: https://www.borgbase.com/

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

Languages: Python icon

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

Languages: Swift icon

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

Languages: C++ icon C icon

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

Languages: Python icon
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:


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

Languages: ![javascript_icon]

-
[Chromium](https://chromium.googlesource.com/chromium/src/) - Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.

Languages: ![javascript_icon] ![cpp_icon] ![c_icon]
Website: https://www.chromium.org/

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

Languages: ![swift_icon]

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

Languages: ![javascript_icon] ![rust_icon] ![cpp_icon]
Website: https://www.mozilla.org/en-US/firefox/browsers/

-
[Helium](https://github.com/JadenGeller/Helium) - Floating browser window for macOS.

Languages: ![objective_c_icon] ![swift_icon]

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

Languages: ![javascript_icon]
Website: https://minbrowser.org

-
[Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium.

Languages: ![javascript_icon]
Screenshots:



(1 more screenshots available in the repository)

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

Languages: ![swift_icon]
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.

Languages: ![swift_icon]

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

Languages: ![javascript_icon]

-
[otter-browser](https://github.com/OtterBrowser/otter-browser) - Otter Browser aims to recreate the best aspects of the classic Opera (12.x) UI using Qt5.

Languages: ![cpp_icon]
Screenshots:

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

Languages: ![c_icon]

+
[Beaker Browser](https://github.com/beakerbrowser/beaker) - Beaker is an experimental peer-to-peer Web browser.

Languages: JavaScript icon
Screenshots:


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

Languages: JavaScript icon

+
[Chromium](https://chromium.googlesource.com/chromium/src/) - Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.

Languages: JavaScript icon C++ icon C icon
Website: https://www.chromium.org/

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

Languages: Swift icon

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

Languages: JavaScript icon Rust icon C++ icon
Website: https://www.mozilla.org/en-US/firefox/browsers/

+
[Helium](https://github.com/JadenGeller/Helium) - Floating browser window for macOS.

Languages: Objective-C icon Swift icon

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

Languages: JavaScript icon
Website: https://minbrowser.org

+
[Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium.

Languages: JavaScript icon
Screenshots:



(1 more screenshots available in the repository)

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

Languages: Swift icon
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.

Languages: Swift icon

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

Languages: JavaScript icon

+
[otter-browser](https://github.com/OtterBrowser/otter-browser) - Otter Browser aims to recreate the best aspects of the classic Opera (12.x) UI using Qt5.

Languages: C++ icon
Screenshots:

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

Languages: C icon

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

Languages: ![c_icon]
Website: https://adium.im/
Screenshots:

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

Languages: ![swift_icon]
Website: https://beagle.im/
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![javascript_icon]

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

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![javascript_icon] ![css_icon]
Screenshots:

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

Languages: ![swift_icon]

-
[RocketChat](https://github.com/RocketChat/Rocket.Chat.Electron) - Free open source chat system for teams. An alternative to Slack that can also be self hosted.

Languages: ![javascript_icon]
Website: https://www.rocket.chat/

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![javascript_icon]

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

Languages: ![swift_icon]

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

Languages: ![cpp_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:



(1 more screenshots available in the repository)

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

Languages: ![cpp_icon] ![javascript_icon] ![rust_icon]
Website: https://www.thunderbird.net/en-US/
Screenshots:



-
[Torchat-Mac](https://github.com/javerous/TorChat-Mac) - TorChat for Mac is a macOS native and unofficial port of torchat.

Languages: ![objective_c_icon]

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

Languages: ![swift_icon]
Screenshots:



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

Languages: ![javascript_icon]

+
[Adium](https://github.com/adium/adium) - Instant messaging application that can connect to XMPP (Jabber), IRC and more.

Languages: C icon
Website: https://adium.im/
Screenshots:

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

Languages: Swift icon
Website: https://beagle.im/
Screenshots:

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

Languages: Objective-C icon
Screenshots:

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

Languages: JavaScript icon
Screenshots:

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

Languages: JavaScript icon

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

Languages: JavaScript icon
Screenshots:

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

Languages: JavaScript icon
Screenshots:

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

Languages: JavaScript icon CSS icon
Screenshots:

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

Languages: Swift icon

+
[RocketChat](https://github.com/RocketChat/Rocket.Chat.Electron) - Free open source chat system for teams. An alternative to Slack that can also be self hosted.

Languages: JavaScript icon
Website: https://www.rocket.chat/

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

Languages: Swift icon
Screenshots:

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

Languages: JavaScript icon

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

Languages: Swift icon

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

Languages: C++ icon
Screenshots:

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

Languages: Objective-C icon
Screenshots:



(1 more screenshots available in the repository)

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

Languages: C++ icon JavaScript icon Rust icon
Website: https://www.thunderbird.net/en-US/
Screenshots:



+
[Torchat-Mac](https://github.com/javerous/TorChat-Mac) - TorChat for Mac is a macOS native and unofficial port of torchat.

Languages: Objective-C icon

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

Languages: Swift icon
Screenshots:



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

Languages: JavaScript icon

### 💰 Cryptocurrency (5) -
[Balance Open](https://github.com/balance-io/balance-open) - App for all the world’s currencies.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

-
[Copay](https://github.com/bitpay/copay) - A secure bitcoin wallet platform for both desktop and mobile devices.

Languages: ![typescript_icon]

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

Languages: ![javascript_icon]

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

Languages: ![swift_icon]
Screenshots:

+
[Balance Open](https://github.com/balance-io/balance-open) - App for all the world’s currencies.

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

+
[Copay](https://github.com/bitpay/copay) - A secure bitcoin wallet platform for both desktop and mobile devices.

Languages: TypeScript icon

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

Languages: JavaScript icon

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

Languages: Swift icon
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:


-
[Beekeeper Studio](https://github.com/beekeeper-studio/beekeeper-studio) - SQL editor and manager with support for SQLite, MySQL, MariaDB, Postgres, CockroachDB, SQL Server, and Amazon Redshift.

Languages: ![javascript_icon]
Website: https://www.beekeeperstudio.io
Screenshots:


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

Languages: ![cpp_icon]
Screenshots:

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

Languages: ![java_icon]
Screenshots:



(1 more screenshots available in the repository)

-
[DbGate](https://github.com/dbgate/dbgate) - Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application.

Languages: ![javascript_icon] ![typescript_icon]
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.

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![objective_c_icon] ![c_icon]

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

Languages: ![javascript_icon]
Screenshots:



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

Languages: ![swift_icon]

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

Languages: ![cpp_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![cpp_icon]
Screenshots:

-
[Sequel Ace](https://github.com/Sequel-Ace/Sequel-Ace) - Sequel Ace is a fast, easy-to-use Mac database management application for working with MySQL & MariaDB databases.

Languages: ![objective_c_icon]
Website: https://sequel-ace.com/

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

Languages: ![objective_c_icon]
Screenshots:


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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![typescript_icon] ![swift_icon]
Screenshots:

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

Languages: ![typescript_icon]
Website: https://sqlectron.github.io/
Screenshots:

+
[Bdash](https://github.com/bdash-app/bdash) - Simple SQL Client for lightweight data analysis.

Languages: JavaScript icon
Screenshots:


+
[Beekeeper Studio](https://github.com/beekeeper-studio/beekeeper-studio) - SQL editor and manager with support for SQLite, MySQL, MariaDB, Postgres, CockroachDB, SQL Server, and Amazon Redshift.

Languages: JavaScript icon
Website: https://www.beekeeperstudio.io
Screenshots:


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

Languages: C++ icon
Screenshots:

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

Languages: Java icon
Screenshots:



(1 more screenshots available in the repository)

+
[DbGate](https://github.com/dbgate/dbgate) - Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application.

Languages: JavaScript icon TypeScript icon
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.

Languages: JavaScript icon
Screenshots:

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

Languages: Objective-C icon C icon

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

Languages: JavaScript icon
Screenshots:



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

Languages: Swift icon

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

Languages: C++ icon
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: C++ icon
Screenshots:

+
[Sequel Ace](https://github.com/Sequel-Ace/Sequel-Ace) - Sequel Ace is a fast, easy-to-use Mac database management application for working with MySQL & MariaDB databases.

Languages: Objective-C icon
Website: https://sequel-ace.com/

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

Languages: Objective-C icon
Screenshots:


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

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: TypeScript icon Swift icon
Screenshots:

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

Languages: TypeScript icon
Website: https://sqlectron.github.io/
Screenshots:

### 👨‍💻 Development (9) -
[Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more.

Languages: ![java_icon]
Website: https://netbeans.apache.org/
Screenshots:


-
[Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript.

Languages: ![javascript_icon]
Website: https://brackets.io/
Screenshots:

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

Languages: ![swift_icon] ![c_sharp_icon] ![objective_c_icon]
Website: https://imazing.com/colorset
Screenshots:

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

Languages: ![cpp_icon] ![c_icon]
Website: https://gitahead.github.io/gitahead.com/

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

Languages: ![cpp_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.

Languages: ![swift_icon]
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.

Languages: ![swift_icon]
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.

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon] ![objective_c_icon]
Website: https://mac.getutm.app/
Screenshots:

+
[Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more.

Languages: Java icon
Website: https://netbeans.apache.org/
Screenshots:


+
[Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript.

Languages: JavaScript icon
Website: https://brackets.io/
Screenshots:

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

Languages: Swift icon C# icon Objective-C icon
Website: https://imazing.com/colorset
Screenshots:

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

Languages: C++ icon C icon
Website: https://gitahead.github.io/gitahead.com/

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

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.

Languages: Swift icon
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.

Languages: Swift icon
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.

Languages: Swift icon
Screenshots:


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

Languages: Swift icon Objective-C icon
Website: https://mac.getutm.app/
Screenshots:

#### 📦 Git (20) -
[Cashew](https://github.com/dhennessy/OpenCashew) - Cashew macOS Github Issue Tracker.

Languages: ![objective_c_icon] ![c_icon]

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

Languages: ![swift_icon]

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

Languages: ![rust_icon]
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.

Languages: ![cpp_icon] ![c_icon]
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

Languages: ![swift_icon]

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

Languages: ![typescript_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:



(2 more screenshots available in the repository)

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

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon] ![swift_icon]
Screenshots:



(11 more screenshots available in the repository)

-
[Github contributions](https://github.com/remirobert/Github-contributions) - GitHub contributions app, for iOS, WatchOS, and macOS.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![javascript_icon]
Website: https://www.gitify.io/
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![shell_icon] ![applescript_icon]

+
[Cashew](https://github.com/dhennessy/OpenCashew) - Cashew macOS Github Issue Tracker.

Languages: Objective-C icon C icon

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

Languages: Swift icon

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

Languages: Rust icon
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.

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

Languages: Swift icon

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

Languages: TypeScript icon
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: Objective-C icon
Screenshots:



(2 more screenshots available in the repository)

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

Languages: Objective-C icon

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

Languages: Objective-C icon Swift icon
Screenshots:



(11 more screenshots available in the repository)

+
[Github contributions](https://github.com/remirobert/Github-contributions) - GitHub contributions app, for iOS, WatchOS, and macOS.

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: Swift icon

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

Languages: JavaScript icon
Website: https://www.gitify.io/
Screenshots:

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

Languages: JavaScript icon
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Screenshots:


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

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: Shell icon applescript

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

Languages: ![swift_icon]

-
[JSON to Model class](https://github.com/chanonly123/Json-Model-Generator) - Template based highly customizable macOS app to generate classes from JSON string, supports many languages.

Languages: ![swift_icon]
Screenshots:

-
[JSONExport](https://github.com/Ahmed-Ali/JSONExport) - Desktop application for macOS which enables you to export JSON objects as model classes with their associated constructors, utility methods, setters and getters in your favorite language.

Languages: ![swift_icon]
Screenshots:

-
[j2s](https://github.com/zadr/j2s) - macOS app to convert JSON objects into Swift structs (currently targets Swift 4 and Codable).

Languages: ![swift_icon]

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

Languages: Swift icon

+
[JSON to Model class](https://github.com/chanonly123/Json-Model-Generator) - Template based highly customizable macOS app to generate classes from JSON string, supports many languages.

Languages: Swift icon
Screenshots:

+
[JSONExport](https://github.com/Ahmed-Ali/JSONExport) - Desktop application for macOS which enables you to export JSON objects as model classes with their associated constructors, utility methods, setters and getters in your favorite language.

Languages: Swift icon
Screenshots:

+
[j2s](https://github.com/zadr/j2s) - macOS app to convert JSON objects into Swift structs (currently targets Swift 4 and Codable).

Languages: Swift icon

#### 📦 Other Development (5) -
[Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers.

Languages: ![swift_icon] ![javascript_icon]
Website: https://boop.okat.best
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![javascript_icon] ![typescript_icon]
Screenshots:


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

Languages: ![objective_c_icon]

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

Languages: ![javascript_icon]
Screenshots:



(5 more screenshots available in the repository)

+
[Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers.

Languages: Swift icon JavaScript icon
Website: https://boop.okat.best
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: JavaScript icon TypeScript icon
Screenshots:


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

Languages: Objective-C icon

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

Languages: JavaScript icon
Screenshots:



(5 more screenshots available in the repository)

#### 📦 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.

Languages: ![objective_c_icon]
Screenshots:

-
[Corectl App for macOS](https://github.com/TheNewNormal/corectl.app) - Corectl App is a macOS Status bar App which works like a wrapper around the corectl command line tool corectld to control the server runtime process.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![typescript_icon]
Website: https://httptoolkit.com/
Screenshots:



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

Languages: ![javascript_icon]
Screenshots:

-
[KubeMonitor](https://github.com/Daniel-Sanche/KubeMonitor) - KubeMonitor is a macOS app that displays information about your active Kubernetes cluster in your menu bar.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]

-
[LocalSites](https://github.com/plan44/localSites) - Simple Menu Bar (Status Bar) App for macOS listing local Bonjour websites (as Safari 11 no longer has Bonjour Bookmarks).

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Website: https://simplelocalize.io

-
[aws-s3-uploader](https://github.com/RafalWilinski/s3-uploader) - Simple macOS app for uploading files to Amazon Web Services.

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![javascript_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

+
[CoreOS VM](https://github.com/TheNewNormal/coreos-osx) - CoreOS VM is macOS status bar app which allows in an easy way to control CoreOS VM on your Mac.

Languages: Objective-C icon
Screenshots:

+
[Corectl App for macOS](https://github.com/TheNewNormal/corectl.app) - Corectl App is a macOS Status bar App which works like a wrapper around the corectl command line tool corectld to control the server runtime process.

Languages: Swift icon
Screenshots:

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

Languages: TypeScript icon
Website: https://httptoolkit.com/
Screenshots:



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

Languages: JavaScript icon
Screenshots:

+
[KubeMonitor](https://github.com/Daniel-Sanche/KubeMonitor) - KubeMonitor is a macOS app that displays information about your active Kubernetes cluster in your menu bar.

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: Swift icon

+
[LocalSites](https://github.com/plan44/localSites) - Simple Menu Bar (Status Bar) App for macOS listing local Bonjour websites (as Safari 11 no longer has Bonjour Bookmarks).

Languages: Swift icon

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

Languages: Swift icon
Website: https://simplelocalize.io

+
[aws-s3-uploader](https://github.com/RafalWilinski/s3-uploader) - Simple macOS app for uploading files to Amazon Web Services.

Languages: JavaScript icon
Screenshots:

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

Languages: Swift icon

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

Languages: JavaScript icon
Screenshots:

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

Languages: Swift icon

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

Languages: Swift icon
Screenshots:

#### 📦 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.

Languages: ![swift_icon]

-
[AppBox](https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation) - Tool for iOS developers to build and deploy Development, Ad-Hoc and In-house (Enterprise) applications directly to the devices from your Dropbox account.

Languages: ![objective_c_icon]
Screenshots:



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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon] ![swift_icon]
Screenshots:



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

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:



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

Languages: ![objective_c_icon]
Screenshots:



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

Languages: ![swift_icon]
Screenshots:


-
[Cleaner for Xcode](https://github.com/waylybaye/XcodeCleaner) - Cleaner for Xcode.app built with react-native-macOS.

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon]
Screenshots:



(2 more screenshots available in the repository)

-
[Corona Tracker](https://github.com/MhdHejazi/CoronaTracker) - Coronavirus tracker app for iOS & macOS with maps & charts.

Languages: ![swift_icon]
Website: https://coronatracker.samabox.com/
Screenshots:


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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:


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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
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.

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon] ![swift_icon]

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]

-
[Localization Editor](https://github.com/igorkulman/iOSLocalizationEditor) - Simple macOS editor app to help you manage iOS app localizations by allowing you to edit all the translations side by side.

Languages: ![swift_icon]

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:



(6 more screenshots available in the repository)

-
[ResignTool](https://github.com/InjoyDeng/ResignTool) - This is an app for macOS that can (re)sign apps and bundle them into ipa files that are ready to be installed on an iOS device.

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:



(2 more screenshots available in the repository)

-
[Xcodes.app](https://github.com/RobotsAndPencils/XcodesApp) - The easiest way to install and switch between multiple versions of Xcode.

Languages: ![swift_icon]
Screenshots:

-
[calabash-launcher](https://github.com/xing/calabash-launcher) - iOS Calabash Launcher is a macOS app that helps you run and manage Calabash tests on your Mac.

Languages: ![swift_icon]
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.

Languages: ![objective_c_icon]
Screenshots:


-
[iSimulator](https://github.com/wigl/iSimulator) - iSimulator is a GUI utility to control the Simulator and manage the app installed on the simulator.

Languages: ![objective_c_icon]

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

Languages: ![objective_c_icon]

+
[AVXCAssets Generator](https://github.com/angelvasa/AVXCAssets-Generator) - Takes path for your assets images and creates appiconset and imageset for you in just one click.

Languages: Swift icon

+
[AppBox](https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation) - Tool for iOS developers to build and deploy Development, Ad-Hoc and In-house (Enterprise) applications directly to the devices from your Dropbox account.

Languages: Objective-C icon
Screenshots:



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

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Screenshots:


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

Languages: Objective-C icon

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

Languages: Objective-C icon Swift icon
Screenshots:



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

Languages: Swift icon

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

Languages: Swift icon
Screenshots:



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

Languages: Objective-C icon
Screenshots:



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

Languages: Swift icon
Screenshots:


+
[Cleaner for Xcode](https://github.com/waylybaye/XcodeCleaner) - Cleaner for Xcode.app built with react-native-macOS.

Languages: Objective-C icon

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

Languages: Objective-C icon
Screenshots:



(2 more screenshots available in the repository)

+
[Corona Tracker](https://github.com/MhdHejazi/CoronaTracker) - Coronavirus tracker app for iOS & macOS with maps & charts.

Languages: Swift icon
Website: https://coronatracker.samabox.com/
Screenshots:


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

Languages: Swift icon
Screenshots:

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

Languages: JavaScript icon
Screenshots:


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

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
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.

Languages: Objective-C icon

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

Languages: Objective-C icon Swift icon

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

Languages: Objective-C icon
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: Swift icon

+
[Localization Editor](https://github.com/igorkulman/iOSLocalizationEditor) - Simple macOS editor app to help you manage iOS app localizations by allowing you to edit all the translations side by side.

Languages: Swift icon

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

Languages: Swift icon

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

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Screenshots:


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

Languages: Objective-C icon
Screenshots:

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

Languages: JavaScript icon
Screenshots:



(6 more screenshots available in the repository)

+
[ResignTool](https://github.com/InjoyDeng/ResignTool) - This is an app for macOS that can (re)sign apps and bundle them into ipa files that are ready to be installed on an iOS device.

Languages: Objective-C icon
Screenshots:

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

Languages: Swift icon

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

Languages: Objective-C icon
Screenshots:

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

Languages: Swift icon
Screenshots:


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

Languages: Swift icon

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

Languages: Swift icon

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

Languages: Swift icon
Screenshots:



(2 more screenshots available in the repository)

+
[Xcodes.app](https://github.com/RobotsAndPencils/XcodesApp) - The easiest way to install and switch between multiple versions of Xcode.

Languages: Swift icon
Screenshots:

+
[calabash-launcher](https://github.com/xing/calabash-launcher) - iOS Calabash Launcher is a macOS app that helps you run and manage Calabash tests on your Mac.

Languages: Swift icon
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.

Languages: Objective-C icon
Screenshots:


+
[iSimulator](https://github.com/wigl/iSimulator) - iSimulator is a GUI utility to control the Simulator and manage the app installed on the simulator.

Languages: Objective-C icon

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

Languages: Objective-C icon

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

Languages: ![swift_icon]

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

Languages: ![java_icon]
Website: https://subhra74.github.io/xdm/

-
[Get It](https://github.com/Kevin-De-Koninck/Get-It) - Native macOS video/audio downloader. Think of it as a youtube downloader that works on many sites.

Languages: ![swift_icon]

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

Languages: ![javascript_icon]
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.

Languages: ![objective_c_icon] ![swift_icon]
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.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![javascript_icon]

+
[App Downloader](https://github.com/yep/app-downloader) - Easily search and download macOS apps from the huge `homebrew cask` app catalog.

Languages: Swift icon

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

Languages: Java icon
Website: https://subhra74.github.io/xdm/

+
[Get It](https://github.com/Kevin-De-Koninck/Get-It) - Native macOS video/audio downloader. Think of it as a youtube downloader that works on many sites.

Languages: Swift icon

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

Languages: JavaScript icon
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.

Languages: Objective-C icon Swift icon
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.

Languages: Swift icon
Screenshots:

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

Languages: JavaScript icon

### 📝 Editors (4) -
[AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS.

Languages: ![swift_icon]
Website: https://auroraeditor.com
Screenshots:

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

Languages: ![swift_icon]
Website: https://www.chimehq.com/
Screenshots:

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

Languages: ![swift_icon]
Website: https://www.codeedit.app/
Screenshots:

-
[Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.

Languages: ![c_icon] ![c++_icon]
Website: https://www.geany.org/
Screenshots:

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

Languages: Swift icon
Website: https://auroraeditor.com
Screenshots:

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

Languages: Swift icon
Website: https://www.chimehq.com/
Screenshots:

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

Languages: Swift icon
Website: https://www.codeedit.app/
Screenshots:

+
[Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.

Languages: C icon c++
Website: https://www.geany.org/
Screenshots:

#### 📦 CSV (1) -
[TableTool](https://github.com/jakob/TableTool) - simple CSV editor for the macOS.

Languages: ![objective_c_icon]

+
[TableTool](https://github.com/jakob/TableTool) - simple CSV editor for the macOS.

Languages: Objective-C icon

#### 📦 JSON (2) -
[JSON Editor](https://github.com/fand/json-editor-app) - Dead simple JSON editor using josdejong/jsoneditor

Languages: ![typescript_icon]
Screenshots:

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

Languages: ![javascript_icon]
Screenshots:


+
[JSON Editor](https://github.com/fand/json-editor-app) - Dead simple JSON editor using josdejong/jsoneditor

Languages: TypeScript icon
Screenshots:

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

Languages: JavaScript icon
Screenshots:


#### 📦 Markdown (10) -
[Gingko](https://github.com/gingko/client) - Tree-structured markdown editor for macOS, Windows, and Linux.

Languages: ![elm_icon]
Screenshots:

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

Languages: ![objective_c_icon]

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

Languages: ![javascript_icon]

-
[MarkEdit](https://github.com/MarkEdit-app/MarkEdit) - MarkEdit is a free and open-source Markdown editor, for macOS. It's just like TextEdit on Mac but dedicated to Markdown.

Languages: ![swift_icon] ![typescript_icon]
Website: https://markedit.app/
Screenshots:



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

Languages: ![swift_icon]
Website: https://notenik.app
Screenshots:

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

Languages: ![javascript_icon]
Website: https://obsidian.md/
Screenshots:

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

Languages: ![swift_icon]
Screenshots:



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

Languages: ![cpp_icon]
Website: https://www.qownnotes.org/
Screenshots:

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

Languages: ![javascript_icon] ![typescript_icon]
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.

Languages: ![javascript_icon] ![vue_icon] ![css_icon]
Website: https://uselinked.com
Screenshots:


+
[Gingko](https://github.com/gingko/client) - Tree-structured markdown editor for macOS, Windows, and Linux.

Languages: Elm icon
Screenshots:

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

Languages: Objective-C icon

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

Languages: JavaScript icon

+
[MarkEdit](https://github.com/MarkEdit-app/MarkEdit) - MarkEdit is a free and open-source Markdown editor, for macOS. It's just like TextEdit on Mac but dedicated to Markdown.

Languages: Swift icon TypeScript icon
Website: https://markedit.app/
Screenshots:



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

Languages: Swift icon
Website: https://notenik.app
Screenshots:

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

Languages: JavaScript icon
Website: https://obsidian.md/
Screenshots:

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

Languages: Swift icon
Screenshots:



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

Languages: C++ icon
Website: https://www.qownnotes.org/
Screenshots:

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

Languages: JavaScript icon TypeScript icon
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.

Languages: JavaScript icon vue CSS icon
Website: https://uselinked.com
Screenshots:


#### 📦 TeX (1) -
[Qilin Editor](https://github.com/qilin-editor/qilin-app) - Text editor for exact sciences with built-in KaTeX/AsciiMath support.

Languages: ![javascript_icon]
Screenshots:



+
[Qilin Editor](https://github.com/qilin-editor/qilin-app) - Text editor for exact sciences with built-in KaTeX/AsciiMath support.

Languages: JavaScript icon
Screenshots:



#### 📦 Text (11) -
[AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS.

Languages: ![swift_icon]
Website: https://auroraeditor.com
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

-
[Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.

Languages: ![c_icon] ![c++_icon]
Website: https://www.geany.org/
Screenshots:

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

Languages: ![c_icon]

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![objective_c_icon]
Screenshots:


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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Website: https://codingfriends.github.io/Tincta/

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

Languages: ![swift_icon]

-
[micro](https://github.com/zyedidia/micro) - A terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the capabilities of modern terminals.

Languages: ![go_icon]
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.

Languages: ![typescript_icon] ![swift_icon]
Screenshots:

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

Languages: Swift icon
Website: https://auroraeditor.com
Screenshots:

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

Languages: Swift icon
Screenshots:

+
[Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.

Languages: C icon c++
Website: https://www.geany.org/
Screenshots:

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

Languages: C icon

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

Languages: Swift icon
Screenshots:


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

Languages: Objective-C icon
Screenshots:


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

Languages: Objective-C icon
Screenshots:

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

Languages: Objective-C icon
Website: https://codingfriends.github.io/Tincta/

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

Languages: Swift icon

+
[micro](https://github.com/zyedidia/micro) - A terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the capabilities of modern terminals.

Languages: Go icon
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.

Languages: TypeScript icon Swift icon
Screenshots:

### 🧩 Extensions (13) -
[AdGuard for Safari](https://github.com/adguardteam/adguardforsafari) - The most advanced ad blocking extension for Safari

Languages: ![javascript_icon]
Website: https://adguard.com/en/welcome.html
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

-
[Is It Private?](https://github.com/ffittschen/IsItPrivate) - A Safari Extension providing a toolbar icon that changes its visual appearance if Private Browsing is enabled.

Languages: ![swift_icon]
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

Languages: ![c_icon]
Screenshots:

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

Languages: ![swift_icon] ![javascript_icon]
Screenshots:

-
[PiPTool](https://github.com/bfmatei/PiPTool) - Add the Picture-in-Picture Functionality to YouTube, Netflix, Plex and other video broadcasting services in macOS.

Languages: ![javascript_icon]

-
[PiPifier](https://github.com/arnoappenzeller/PiPifier) - PiPifier is a native macOS 10.12 Safari extension that lets you use every HTML5 video in Picture in Picture mode.

Languages: ![swift_icon]
Screenshots:



-
[Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives.

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Website: https://jintin.github.io/Swimat/
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

-
[nef](https://github.com/bow-swift/nef-plugin) - This Xcode extension enables you to make a code selection and export it to a snippets. Available on Mac AppStore.

Languages: ![swift_icon]
Website: https://nef.bow-swift.io/
Screenshots:


+
[AdGuard for Safari](https://github.com/adguardteam/adguardforsafari) - The most advanced ad blocking extension for Safari

Languages: JavaScript icon
Website: https://adguard.com/en/welcome.html
Screenshots:

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

Languages: Swift icon
Screenshots:

+
[Is It Private?](https://github.com/ffittschen/IsItPrivate) - A Safari Extension providing a toolbar icon that changes its visual appearance if Private Browsing is enabled.

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

Languages: C icon
Screenshots:

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

Languages: Swift icon JavaScript icon
Screenshots:

+
[PiPTool](https://github.com/bfmatei/PiPTool) - Add the Picture-in-Picture Functionality to YouTube, Netflix, Plex and other video broadcasting services in macOS.

Languages: JavaScript icon

+
[PiPifier](https://github.com/arnoappenzeller/PiPifier) - PiPifier is a native macOS 10.12 Safari extension that lets you use every HTML5 video in Picture in Picture mode.

Languages: Swift icon
Screenshots:



+
[Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives.

Languages: Swift icon

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

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Website: https://jintin.github.io/Swimat/
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Screenshots:

+
[nef](https://github.com/bow-swift/nef-plugin) - This Xcode extension enables you to make a code selection and export it to a snippets. Available on Mac AppStore.

Languages: Swift icon
Website: https://nef.bow-swift.io/
Screenshots:


### 🔍 Finder (11) -
[Clipy](https://github.com/Clipy/Clipy) - Clipy is a Clipboard extension app for macOS.

Languages: ![swift_icon]
Screenshots:


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

Languages: ![cpp_icon]

-
[Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![objective_c_icon] ![c_icon]
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

Languages: ![objective_c_icon]

-
[dupeGuru](https://github.com/arsenetar/dupeguru/) - dupeGuru is a tool to find duplicate files on your computer. It can scan using file names and file contents.

Languages: ![objective_c_icon]
Website: https://dupeguru.voltaicideas.net/

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

Languages: ![rust_icon]
Screenshots:

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

Languages: Swift icon
Screenshots:


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

Languages: C++ icon

+
[Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder.

Languages: Swift icon
Screenshots:

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

Languages: Swift icon
Screenshots:


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

Languages: Swift icon

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

Languages: Objective-C icon
Screenshots:

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

Languages: Swift icon
Screenshots:


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

Languages: Objective-C icon C icon
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

Languages: Objective-C icon

+
[dupeGuru](https://github.com/arsenetar/dupeguru/) - dupeGuru is a tool to find duplicate files on your computer. It can scan using file names and file contents.

Languages: Objective-C icon
Website: https://dupeguru.voltaicideas.net/

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

Languages: Rust icon
Screenshots:

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

Languages: ![cpp_icon]
Website: https://play0ad.com
Screenshots:


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

Languages: ![cpp_icon]

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

Languages: ![cpp_icon] ![objective_c_icon]

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

Languages: ![objective-c_icon]
Website: https://www.apple.com/
Screenshots:

-
[Dolphin](https://github.com/dolphin-emu/dolphin) - Powerful emulator for Nintendo GameCube and Wii games.

Languages: ![cpp_icon]

-
[Dynamic Dark Mode](https://github.com/ApolloZhu/Dynamic-Dark-Mode) - Dynamic Dark Mode is the app you are looking for to power up Dark Mode on macOS Mojave and beyond.

Languages: ![swift_icon]
Website: https://apollozhu.github.io/Dynamic-Dark-Mode/
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![cpp_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![cpp_icon] ![objective_c_icon]

-
[Widelands](https://github.com/widelands/widelands) - Widelands is a free, open source real-time strategy game with singleplayer campaigns and a multiplayer mode. The game was inspired by Settlers II™ (© Bluebyte) but has significantly more variety and depth to it.

Languages: ![c++_icon] ![python_icon] ![lua_icon] ![javascript_icon]
Website: https://www.widelands.org
Screenshots:

+
[0 A.D.](https://svn.wildfiregames.com/public/ps/trunk/) - Real-time strategy game of ancient warfare

Languages: C++ icon
Website: https://play0ad.com
Screenshots:


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

Languages: C++ icon

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

Languages: C++ icon Objective-C icon

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

Languages: objective-c
Website: https://www.apple.com/
Screenshots:

+
[Dolphin](https://github.com/dolphin-emu/dolphin) - Powerful emulator for Nintendo GameCube and Wii games.

Languages: C++ icon

+
[Dynamic Dark Mode](https://github.com/ApolloZhu/Dynamic-Dark-Mode) - Dynamic Dark Mode is the app you are looking for to power up Dark Mode on macOS Mojave and beyond.

Languages: Swift icon
Website: https://apollozhu.github.io/Dynamic-Dark-Mode/
Screenshots:

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

Languages: Objective-C icon
Screenshots:

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

Languages: C++ icon
Screenshots:

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

Languages: Objective-C icon
Screenshots:

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

Languages: C++ icon Objective-C icon

+
[Widelands](https://github.com/widelands/widelands) - Widelands is a free, open source real-time strategy game with singleplayer campaigns and a multiplayer mode. The game was inspired by Settlers II™ (© Bluebyte) but has significantly more variety and depth to it.

Languages: c++ Python icon Lua icon JavaScript icon
Website: https://www.widelands.org
Screenshots:

### 🎨 Graphics (15) -
[Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux).

Languages: ![cpp_icon] ![c_icon]

-
[Blender](https://projects.blender.org/) - Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline: modeling, rigging, animation, simulation, rendering, compositing, motion tracking, and video editing.

Languages: ![c_icon] ![cpp_icon] ![python_icon]
Website: https://www.blender.org
Screenshots:



(3 more screenshots available in the repository)

-
[CaptuocrToy](https://github.com/sfragrance/CaptuocrToy) - Tool to capture screenshot and recognize text by online ocr apis.

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon] ![c_sharp_icon] ![objective_c_icon]
Website: https://imazing.com/colorset
Screenshots:

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

Languages: ![c++_icon] ![python_icon]
Website: https://www.freecad.org/
Screenshots:

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

Languages: ![python_icon]
Website: https://gaphor.org

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

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

-
[Gifcurry](https://github.com/lettier/gifcurry) - Video to GIF maker with a graphical interface capable of cropping, adding text, seeking, and trimming.

Languages: ![haskell_icon]
Screenshots:


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

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![cpp_icon] ![python_icon] ![c_icon]
Website: https://krita.org/en/
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

-
[Pencil2D Animation](https://github.com/pencil2d/pencil) - Pencil2D is an animation/drawing software for macOS, Windows, and Linux. It lets you create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics.

Languages: ![cpp_icon]

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

Languages: ![objective_c_icon] ![css_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

+
[Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux).

Languages: C++ icon C icon

+
[Blender](https://projects.blender.org/) - Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline: modeling, rigging, animation, simulation, rendering, compositing, motion tracking, and video editing.

Languages: C icon C++ icon Python icon
Website: https://www.blender.org
Screenshots:



(3 more screenshots available in the repository)

+
[CaptuocrToy](https://github.com/sfragrance/CaptuocrToy) - Tool to capture screenshot and recognize text by online ocr apis.

Languages: Swift icon
Screenshots:

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

Languages: Swift icon C# icon Objective-C icon
Website: https://imazing.com/colorset
Screenshots:

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

Languages: c++ Python icon
Website: https://www.freecad.org/
Screenshots:

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

Languages: Python icon
Website: https://gaphor.org

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

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

+
[Gifcurry](https://github.com/lettier/gifcurry) - Video to GIF maker with a graphical interface capable of cropping, adding text, seeking, and trimming.

Languages: Haskell icon
Screenshots:


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

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

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

Languages: Swift icon
Screenshots:

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

Languages: C++ icon Python icon C icon
Website: https://krita.org/en/
Screenshots:

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

Languages: Objective-C icon
Screenshots:

+
[Pencil2D Animation](https://github.com/pencil2d/pencil) - Pencil2D is an animation/drawing software for macOS, Windows, and Linux. It lets you create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics.

Languages: C++ icon

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

Languages: Objective-C icon CSS icon
Screenshots:

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

Languages: Objective-C icon
Screenshots:

### 💻 IDE (12) -
[Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more.

Languages: ![java_icon]
Website: https://netbeans.apache.org/
Screenshots:


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

Languages: ![javascript_icon]
Screenshots:


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

Languages: ![swift_icon]
Website: https://auroraeditor.com
Screenshots:

-
[Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript.

Languages: ![javascript_icon]
Website: https://brackets.io/
Screenshots:

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

Languages: ![swift_icon]
Website: https://www.codeedit.app/
Screenshots:

-
[Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.

Languages: ![c_icon] ![c++_icon]
Website: https://www.geany.org/
Screenshots:

-
[IntelliJ IDEA Community Edition](https://github.com/JetBrains/intellij-community) - IntelliJ IDEA is an integrated development environment written in Java for developing computer software

Languages: ![java_icon]
Website: https://www.jetbrains.com/idea/
Screenshots:

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

Languages: ![c_icon]
Website: https://livecode.org/

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

Languages: ![javascript_icon] ![typescript_icon]

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

Languages: ![C_icon] ![Vim script_icon]
Website: https://www.vim.org/
Screenshots:

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

Languages: ![typescript_icon]
Screenshots:

-
[ZeroBraneStudio](https://github.com/pkulchenko/ZeroBraneStudio) - ZeroBrane Studio is a lightweight cross-platform Lua IDE with code completion, syntax highlighting, remote debugger, code analyzer, live coding, and debugging support for various Lua engines.

Languages: ![lua_icon]
Screenshots:

+
[Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more.

Languages: Java icon
Website: https://netbeans.apache.org/
Screenshots:


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

Languages: JavaScript icon
Screenshots:


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

Languages: Swift icon
Website: https://auroraeditor.com
Screenshots:

+
[Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript.

Languages: JavaScript icon
Website: https://brackets.io/
Screenshots:

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

Languages: Swift icon
Website: https://www.codeedit.app/
Screenshots:

+
[Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.

Languages: C icon c++
Website: https://www.geany.org/
Screenshots:

+
[IntelliJ IDEA Community Edition](https://github.com/JetBrains/intellij-community) - IntelliJ IDEA is an integrated development environment written in Java for developing computer software

Languages: Java icon
Website: https://www.jetbrains.com/idea/
Screenshots:

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

Languages: C icon
Website: https://livecode.org/

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

Languages: JavaScript icon TypeScript icon

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

Languages: C icon Vim script
Website: https://www.vim.org/
Screenshots:

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

Languages: TypeScript icon
Screenshots:

+
[ZeroBraneStudio](https://github.com/pkulchenko/ZeroBraneStudio) - ZeroBrane Studio is a lightweight cross-platform Lua IDE with code completion, syntax highlighting, remote debugger, code analyzer, live coding, and debugging support for various Lua engines.

Languages: Lua icon
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![python_icon]

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

Languages: ![javascript_icon]
Website: https://exifcleaner.com
Screenshots:



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

Languages: ![cpp_icon]
Website: https://flameshot.org
Screenshots:

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![c_icon]

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

Languages: ![swift_icon]
Website: https://apps.apple.com/us/app/iconology/id1463452867
Screenshots:

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

Languages: ![objective_c_icon] ![python_icon]
Screenshots:

-
[Imagine](https://github.com/meowtec/Imagine) - Imagine is a desktop app for compression of PNG and JPEG, with a modern and friendly UI.

Languages: ![typescript_icon]

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

Languages: ![python_icon]
Screenshots:



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

Languages: ![c++_icon]
Website: https://inkscape.org/
Screenshots:

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

Languages: ![javascript_icon] ![css_icon]

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

Languages: ![cpp_icon] ![python_icon] ![c_icon]
Website: https://krita.org/en/
Screenshots:

-
[PhotoMiner](https://github.com/gergelysanta/photominer) - macOS app for finding and lost forgotten photos on your disks.

Languages: ![swift_icon]
Screenshots:



(3 more screenshots available in the repository)

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon] ![c_icon]

+
[APNGb](https://github.com/shgodoroja/APNGb) - macOS app which assembles and disassembles animated png files.

Languages: Swift icon

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

Languages: Python icon

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

Languages: JavaScript icon
Website: https://exifcleaner.com
Screenshots:



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

Languages: C++ icon
Website: https://flameshot.org
Screenshots:

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

Languages: Swift icon
Screenshots:

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

Languages: C icon

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

Languages: Swift icon
Website: https://apps.apple.com/us/app/iconology/id1463452867
Screenshots:

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

Languages: Objective-C icon Python icon
Screenshots:

+
[Imagine](https://github.com/meowtec/Imagine) - Imagine is a desktop app for compression of PNG and JPEG, with a modern and friendly UI.

Languages: TypeScript icon

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

Languages: Python icon
Screenshots:



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

Languages: c++
Website: https://inkscape.org/
Screenshots:

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

Languages: JavaScript icon CSS icon

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

Languages: C++ icon Python icon C icon
Website: https://krita.org/en/
Screenshots:

+
[PhotoMiner](https://github.com/gergelysanta/photominer) - macOS app for finding and lost forgotten photos on your disks.

Languages: Swift icon
Screenshots:



(3 more screenshots available in the repository)

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

Languages: Swift icon
Screenshots:

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

Languages: Objective-C icon
Screenshots:

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

Languages: Swift icon C icon

### ⌨️ Keyboard (9) -
[AnnePro-mac](https://github.com/msvisser/AnnePro-mac) - macOS application for controlling AnnePro keyboard over bluetooth.

Languages: ![swift_icon]

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

Languages: ![swift_icon]

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

Languages: ![clojure_icon]

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

Languages: ![cpp_icon] ![objective_c_icon]

-
[Karabiner-Elements](https://github.com/pqrs-org/Karabiner-Elements) - Karabiner-Elements is a powerful utility for keyboard customization on macOS Sierra (10.12) or later.

Languages: ![cpp_icon] ![objective_c_icon]

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![Objective-C_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]
Website: https://unshaky.nestederror.com/
Screenshots:


+
[AnnePro-mac](https://github.com/msvisser/AnnePro-mac) - macOS application for controlling AnnePro keyboard over bluetooth.

Languages: Swift icon

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

Languages: Swift icon

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

Languages: Clojure icon

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

Languages: C++ icon Objective-C icon

+
[Karabiner-Elements](https://github.com/pqrs-org/Karabiner-Elements) - Karabiner-Elements is a powerful utility for keyboard customization on macOS Sierra (10.12) or later.

Languages: C++ icon Objective-C icon

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

Languages: Swift icon
Screenshots:


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

Languages: Objective-C
Screenshots:

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

Languages: Swift icon
Screenshots:


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

Languages: Swift icon
Website: https://unshaky.nestederror.com/
Screenshots:


### 📧 Mail (7) -
[Correo](https://github.com/amitmerchant1990/correo) - Menubar/taskbar Gmail App for Windows and macOS.

Languages: ![javascript_icon]

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

Languages: ![typescript_icon]
Screenshots:


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

Languages: ![javascript_icon]
Website: https://getmailspring.com/

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

Languages: ![javascript_icon] ![css_icon]

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

Languages: ![swift_icon]

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

Languages: ![cpp_icon] ![javascript_icon] ![rust_icon]
Website: https://www.thunderbird.net/en-US/
Screenshots:



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

Languages: ![cpp_icon] ![objective_c_icon]
Screenshots:

+
[Correo](https://github.com/amitmerchant1990/correo) - Menubar/taskbar Gmail App for Windows and macOS.

Languages: JavaScript icon

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

Languages: TypeScript icon
Screenshots:


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

Languages: JavaScript icon
Website: https://getmailspring.com/

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

Languages: JavaScript icon CSS icon

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

Languages: Swift icon

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

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.

Languages: C++ icon Objective-C icon
Screenshots:

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

Languages: ![python_icon]
Screenshots:



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

Languages: Python icon
Screenshots:



### 📊 Menubar (39) -
[Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks.

Languages: ![javascript_icon]

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

Languages: ![swift_icon] ![python_icon] ![ruby_icon]
Screenshots:

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

Languages: ![objective_c_icon]

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

Languages: ![typescript_icon]
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.

Languages: ![objective_c_icon]
Screenshots:

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]

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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]
Screenshots:

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

Languages: ![objective_c_icon]
Website: https://www.mowglii.com/itsycal/
Screenshots:

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

Languages: ![swift_icon]
Screenshots:


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

Languages: ![swift_icon]
Website: https://halo.github.io/LinkLiar/
Screenshots:

-
[Market Bar](https://github.com/mnndnl/market-bar ) - Tiny stocks watcher for the menu bar.

Languages: ![swift_icon]

-
[MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings

Languages: ![swift_icon]
Screenshots:

-
[MenuMeters](https://github.com/yujitach/MenuMeters) - CPU, memory, disk, and network monitoring tools for macOS.

Languages: ![objective_c_icon]

-
[Menubar Brightness](https://github.com/lucasbento/menubar-brightness) - macOS app to change the screen brightness on the menubar.

Languages: ![javascript_icon]

-
[MiniSim](https://github.com/okwasniewski/MiniSim) - MacOS menu bar app for launching iOS  and Android 🤖 emulators.

Languages: ![swift_icon]
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.

Languages: ![Swift_icon]

-
[Night Shift Control](https://github.com/isaiasmatewos/night-shift-control) - Night Shift Control is a simple macOS menubar app for controlling Night Shift. It's aim is to bring features from f.lux which are missing from Night Shift such as disabling Night Shift for certain apps.

Languages: ![swift_icon]
Screenshots:

-
[Nocturnal](https://github.com/joshjon/nocturnal) - Menu bar app featuring darker than dark dimming, Night Shift fine tuning, and the ability to turn off TouchBar on MacBook Pro.

Languages: ![swift_icon]
Screenshots:

-
[NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar.

Languages: ![swift_icon]

-
[PSIBar](https://github.com/nikhilsh/PSIBar) - Quickly hacked up PSI macOS status bar app.

Languages: ![swift_icon]

-
[Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene.

Languages: ![swift_icon]
Website: https://paretosecurity.com/
Screenshots:

-
[Pi Stats](https://github.com/Bunn/PiStats) - macOS app to visualize Pi-hole information.

Languages: ![swift_icon] ![objective_c_icon]
Screenshots:

-
[Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS.

Languages: ![swift_icon] ![metal_icon]
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.

Languages: ![swift_icon]
Screenshots:

-
[Quickeys](https://github.com/alexrosenfeld10/Quickeys) - A mac menu bar app that provides note taking functionality though a quick dropdown menu.

Languages: ![swift_icon]
Screenshots:

-
[SensibleSideButtons](https://github.com/archagon/sensible-side-buttons) - Small menu bar utility that lets you use your third-party mouse's side buttons for navigation across a variety of apps.

Languages: ![objective_c_icon] ![c_icon]

-
[Shifty](https://github.com/thompsonate/Shifty) - macOS menu bar app that gives you more control over Night Shift.

Languages: ![swift_icon]
Screenshots:

-
[SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs.

Languages: ![swift_icon]
Screenshots:


-
[Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar

Languages: ![swift_icon]
Screenshots:

-
[SwiftBar](https://github.com/swiftbar/SwiftBar) - Powerful macOS menu bar customization tool.

Languages: ![swift_icon]
Website: https://swiftbar.app

-
[TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording.

Languages: ![css_icon] ![javascript_icon] ![typescript_icon]
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.

Languages: ![objective_c_icon]
Screenshots:

-
[eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI.

Languages: ![swift_icon]
Screenshots:

-
[gSwitch](https://github.com/CodySchrank/gSwitch) - macOS status bar app that allows control over the gpu on dual gpu macbooks.

Languages: ![swift_icon]

-
[iGlance](https://github.com/iglance/iGlance) - macOS System Monitor (cpu, memory, network, fan and battery) for the Status Bar.

Languages: ![swift_icon]

-
[xbar](https://github.com/matryer/xbar) - Put the output from any script or program into your macOS Menu Bar.

Languages: ![objective_c_icon]

+
[Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks.

Languages: JavaScript icon

+
[Akku](https://github.com/jariz/Akku) - The missing macOS bluetooth headset battery indicator app.

Languages: Swift icon Python icon Ruby icon
Screenshots:

+
[AnyBar](https://github.com/tonsky/AnyBar) - macOS menubar status indicator.

Languages: Objective-C icon

+
[BarTranslate](https://github.com/ThijmenDam/BarTranslate) - A handy menu bar translator app that supports DeepL and Google Translate.

Languages: TypeScript icon
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.

Languages: Objective-C icon
Screenshots:

+
[DatWeatherDoe](https://github.com/inderdhir/DatWeatherDoe) - Simple menu bar weather app for macOS written in Swift.

Languages: Swift icon

+
[DisplayMenu](https://github.com/Kwpolska/DisplayMenu) - Simple (bare-bones) macOS menubar extra to apply display presets.

Languages: Swift icon

+
[Dozer](https://github.com/Mortennn/Dozer) - Hide MacOS menubar items.

Languages: Swift icon
Screenshots:

+
[Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Manage grayscale mode from menu bar.

Languages: Swift icon
Screenshots:


+
[Hidden Bar](https://github.com/dwarvesf/hidden) - An ultra-light MacOS utility that helps hide menu bar icons

Languages: Swift icon
Screenshots:

+
[Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar.

Languages: Objective-C icon
Website: https://www.mowglii.com/itsycal/
Screenshots:

+
[KubeContext](https://github.com/turkenh/KubeContext) - import, manage and switch between your Kubernetes contexts on Mac.

Languages: Swift icon
Screenshots:


+
[LinkLiar](https://github.com/halo/LinkLiar) - Keep your MAC address random for privacy (intuitive GUI for ifconfig)

Languages: Swift icon
Website: https://halo.github.io/LinkLiar/
Screenshots:

+
[Market Bar](https://github.com/mnndnl/market-bar ) - Tiny stocks watcher for the menu bar.

Languages: Swift icon

+
[MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings

Languages: Swift icon
Screenshots:

+
[MenuMeters](https://github.com/yujitach/MenuMeters) - CPU, memory, disk, and network monitoring tools for macOS.

Languages: Objective-C icon

+
[Menubar Brightness](https://github.com/lucasbento/menubar-brightness) - macOS app to change the screen brightness on the menubar.

Languages: JavaScript icon

+
[MiniSim](https://github.com/okwasniewski/MiniSim) - MacOS menu bar app for launching iOS  and Android 🤖 emulators.

Languages: Swift icon
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.

Languages: Swift icon

+
[Night Shift Control](https://github.com/isaiasmatewos/night-shift-control) - Night Shift Control is a simple macOS menubar app for controlling Night Shift. It's aim is to bring features from f.lux which are missing from Night Shift such as disabling Night Shift for certain apps.

Languages: Swift icon
Screenshots:

+
[Nocturnal](https://github.com/joshjon/nocturnal) - Menu bar app featuring darker than dark dimming, Night Shift fine tuning, and the ability to turn off TouchBar on MacBook Pro.

Languages: Swift icon
Screenshots:

+
[NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar.

Languages: Swift icon

+
[PSIBar](https://github.com/nikhilsh/PSIBar) - Quickly hacked up PSI macOS status bar app.

Languages: Swift icon

+
[Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene.

Languages: Swift icon
Website: https://paretosecurity.com/
Screenshots:

+
[Pi Stats](https://github.com/Bunn/PiStats) - macOS app to visualize Pi-hole information.

Languages: Swift icon Objective-C icon
Screenshots:

+
[Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS.

Languages: Swift icon metal
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.

Languages: Swift icon
Screenshots:

+
[Quickeys](https://github.com/alexrosenfeld10/Quickeys) - A mac menu bar app that provides note taking functionality though a quick dropdown menu.

Languages: Swift icon
Screenshots:

+
[SensibleSideButtons](https://github.com/archagon/sensible-side-buttons) - Small menu bar utility that lets you use your third-party mouse's side buttons for navigation across a variety of apps.

Languages: Objective-C icon C icon

+
[Shifty](https://github.com/thompsonate/Shifty) - macOS menu bar app that gives you more control over Night Shift.

Languages: Swift icon
Screenshots:

+
[SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs.

Languages: Swift icon
Screenshots:


+
[Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar

Languages: Swift icon
Screenshots:

+
[SwiftBar](https://github.com/swiftbar/SwiftBar) - Powerful macOS menu bar customization tool.

Languages: Swift icon
Website: https://swiftbar.app

+
[TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording.

Languages: CSS icon JavaScript icon TypeScript icon
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.

Languages: Objective-C icon
Screenshots:

+
[eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI.

Languages: Swift icon
Screenshots:

+
[gSwitch](https://github.com/CodySchrank/gSwitch) - macOS status bar app that allows control over the gpu on dual gpu macbooks.

Languages: Swift icon

+
[iGlance](https://github.com/iglance/iGlance) - macOS System Monitor (cpu, memory, network, fan and battery) for the Status Bar.

Languages: Swift icon

+
[xbar](https://github.com/matryer/xbar) - Put the output from any script or program into your macOS Menu Bar.

Languages: Objective-C icon

### 🎧 Music (15) -
[Carol](https://github.com/AnaghSharma/Carol) - A minimal and beautiful lyrics app that stays in the menu bar of macOS.

Languages: ![c_sharp_icon]

-
[ChordDetector](https://github.com/cemolcay/ChordDetector) - Tiny menu bar app that listens iTunes and Spotify to detect chords of songs!

Languages: ![swift_icon]

-
[DeezPlayer](https://github.com/imanel/deezplayer) - Deezer Desktop app for Windows, Linux and macOS.

Languages: ![coffee_script_icon]

-
[Karaoke Forever](https://github.com/bhj/KaraokeEternal) - Host awesome karaoke parties where everyone can queue songs from their phone's browser. Plays MP3+G and MP4 with WebGL visualizations.

Languages: ![javascript_icon]
Website: https://www.karaoke-eternal.com/
Screenshots:

-
[Lilypond UI](https://github.com/doches/lilypond-ui) - Create beautiful musical scores with LilyPond.

Languages: ![javascript_icon]
Screenshots:

-
[MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player.

Languages: ![c_icon]
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.

Languages: ![swift_icon]

-
[PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar.

Languages: ![swift_icon]
Screenshots:

-
[Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine.

Languages: ![swift_icon]
Website: https://www.plugformac.com/
Screenshots:

-
[SoundCleod](https://github.com/salomvary/soundcleod) - SoundCloud for macOS and Windows.

Languages: ![javascript_icon]
Screenshots:


-
[Spotify-Cli-Mac](https://github.com/ersel/spotify-cli-mac) - Control Spotify without leaving your terminal. :notes:

Languages: ![javascript_icon]
Screenshots:

-
[YouTube-Music](https://github.com/steve228uk/YouTube-Music) - macOS wrapper for music.youtube.com.

Languages: ![swift_icon]
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.

Languages: ![swift_icon]
Screenshots:


-
[lyricsify](https://github.com/mamal72/lyricsify-mac) - Simple Spotify lyrics viewer menu bar app for macOS in Swift.

Languages: ![swift_icon]
Screenshots:


-
[spicetify-cli](https://github.com/spicetify/spicetify-cli) - Command-line tool to customize the official Spotify client. Supports Windows, MacOS and Linux.

Languages: ![javascript_icon]
Website: https://spicetify.app/
Screenshots:

+
[Carol](https://github.com/AnaghSharma/Carol) - A minimal and beautiful lyrics app that stays in the menu bar of macOS.

Languages: C# icon

+
[ChordDetector](https://github.com/cemolcay/ChordDetector) - Tiny menu bar app that listens iTunes and Spotify to detect chords of songs!

Languages: Swift icon

+
[DeezPlayer](https://github.com/imanel/deezplayer) - Deezer Desktop app for Windows, Linux and macOS.

Languages: CoffeeScript icon

+
[Karaoke Forever](https://github.com/bhj/KaraokeEternal) - Host awesome karaoke parties where everyone can queue songs from their phone's browser. Plays MP3+G and MP4 with WebGL visualizations.

Languages: JavaScript icon
Website: https://www.karaoke-eternal.com/
Screenshots:

+
[Lilypond UI](https://github.com/doches/lilypond-ui) - Create beautiful musical scores with LilyPond.

Languages: JavaScript icon
Screenshots:

+
[MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player.

Languages: C icon
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.

Languages: Swift icon

+
[PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar.

Languages: Swift icon
Screenshots:

+
[Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine.

Languages: Swift icon
Website: https://www.plugformac.com/
Screenshots:

+
[SoundCleod](https://github.com/salomvary/soundcleod) - SoundCloud for macOS and Windows.

Languages: JavaScript icon
Screenshots:


+
[Spotify-Cli-Mac](https://github.com/ersel/spotify-cli-mac) - Control Spotify without leaving your terminal. :notes:

Languages: JavaScript icon
Screenshots:

+
[YouTube-Music](https://github.com/steve228uk/YouTube-Music) - macOS wrapper for music.youtube.com.

Languages: Swift icon
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.

Languages: Swift icon
Screenshots:


+
[lyricsify](https://github.com/mamal72/lyricsify-mac) - Simple Spotify lyrics viewer menu bar app for macOS in Swift.

Languages: Swift icon
Screenshots:


+
[spicetify-cli](https://github.com/spicetify/spicetify-cli) - Command-line tool to customize the official Spotify client. Supports Windows, MacOS and Linux.

Languages: JavaScript icon
Website: https://spicetify.app/
Screenshots:

### 📰 News (6) -
[Diurna](https://github.com/ngquerol/Diurna) - Basic/Classic Hacker News app, used as a Cocoa & Swift learning platform.

Languages: ![swift_icon]
Screenshots:

-
[NetNewsWire](https://github.com/Ranchero-Software/NetNewsWire) - Feed reader for macOS.

Languages: ![swift_icon]

-
[Vienna](https://github.com/ViennaRSS/vienna-rss) - Vienna is a RSS/Atom newsreader for macOS.

Languages: ![objective_c_icon]

-
[Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io

Languages: ![javascript_icon]
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.

Languages: ![objective_c_icon]
Screenshots:

-
[hacker-menu](https://github.com/owenthereal/hacker-menu) - Hacker News Delivered to Desktop.

Languages: ![javascript_icon]
Screenshots:

+
[Diurna](https://github.com/ngquerol/Diurna) - Basic/Classic Hacker News app, used as a Cocoa & Swift learning platform.

Languages: Swift icon
Screenshots:

+
[NetNewsWire](https://github.com/Ranchero-Software/NetNewsWire) - Feed reader for macOS.

Languages: Swift icon

+
[Vienna](https://github.com/ViennaRSS/vienna-rss) - Vienna is a RSS/Atom newsreader for macOS.

Languages: Objective-C icon

+
[Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io

Languages: JavaScript icon
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.

Languages: Objective-C icon
Screenshots:

+
[hacker-menu](https://github.com/owenthereal/hacker-menu) - Hacker News Delivered to Desktop.

Languages: JavaScript icon
Screenshots:

### 📔 Notes (16) -
[Boostnote](https://github.com/BoostIO/BoostNote-Legacy) - Note-taking application made for programmers just like you.

Languages: ![javascript_icon]
Screenshots:

-
[Dnote](https://github.com/dnote/dnote) - A simple command line notebook with multi-device sync and web interface.

Languages: ![go_icon] ![typescript_icon]
Website: https://www.getdnote.com/
Screenshots:

-
[FSNotes](https://github.com/glushchenko/fsnotes) - Notes manager for macOS/iOS: modern notational velocity (nvALT) on steroids.

Languages: ![swift_icon]
Screenshots:


-
[FromScratch](https://github.com/Kilian/fromscratch) - Little app that you can use as a quick note taking or todo app.

Languages: ![javascript_icon] ![css_icon]

-
[Jupyter Notebook Viewer](https://github.com/tuxu/nbviewer-app) - Notebook viewer for macOS.

Languages: ![swift_icon]

-
[NoteTaker](https://github.com/insidegui/NoteTaker) - Simple note taking app for macOS and iOS which uses Realm and CloudKit for syncing.

Languages: ![swift_icon]
Screenshots:

-
[Notenik](https://github.com/hbowie/notenik-swift) - Note-taking app with many organizational options.

Languages: ![swift_icon]
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.

Languages: ![swift_icon]

-
[QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration.

Languages: ![cpp_icon]
Website: https://www.qownnotes.org/
Screenshots:

-
[Simplenote](https://github.com/Automattic/simplenote-macos) - Simplest way to keep notes.

Languages: ![objective_c_icon]
Screenshots:

-
[Standard Notes](https://github.com/standardnotes/app) - Safe place for your notes, thoughts, and life's work.

Languages: ![javascript_icon] ![css_icon]

-
[Tusk](https://github.com/klaudiosinani/tusk) - Unofficial, third-party, community driven Evernote app with a handful of useful features.

Languages: ![javascript_icon] ![css_icon]

-
[joplin](https://github.com/laurent22/joplin) - Note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS.

Languages: ![javascript_icon]

-
[linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis.

Languages: ![javascript_icon] ![vue_icon] ![css_icon]
Website: https://uselinked.com
Screenshots:


-
[notable](https://github.com/jmcfarlane/notable) - Simple note taking application.

Languages: ![javascript_icon]
Screenshots:



(4 more screenshots available in the repository)

-
[tmpNote](https://github.com/buddax2/tmpNote) - Very simple macOS app to make temporary notes.

Languages: ![swift_icon]
Screenshots:

+
[Boostnote](https://github.com/BoostIO/BoostNote-Legacy) - Note-taking application made for programmers just like you.

Languages: JavaScript icon
Screenshots:

+
[Dnote](https://github.com/dnote/dnote) - A simple command line notebook with multi-device sync and web interface.

Languages: Go icon TypeScript icon
Website: https://www.getdnote.com/
Screenshots:

+
[FSNotes](https://github.com/glushchenko/fsnotes) - Notes manager for macOS/iOS: modern notational velocity (nvALT) on steroids.

Languages: Swift icon
Screenshots:


+
[FromScratch](https://github.com/Kilian/fromscratch) - Little app that you can use as a quick note taking or todo app.

Languages: JavaScript icon CSS icon

+
[Jupyter Notebook Viewer](https://github.com/tuxu/nbviewer-app) - Notebook viewer for macOS.

Languages: Swift icon

+
[NoteTaker](https://github.com/insidegui/NoteTaker) - Simple note taking app for macOS and iOS which uses Realm and CloudKit for syncing.

Languages: Swift icon
Screenshots:

+
[Notenik](https://github.com/hbowie/notenik-swift) - Note-taking app with many organizational options.

Languages: Swift icon
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.

Languages: Swift icon

+
[QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration.

Languages: C++ icon
Website: https://www.qownnotes.org/
Screenshots:

+
[Simplenote](https://github.com/Automattic/simplenote-macos) - Simplest way to keep notes.

Languages: Objective-C icon
Screenshots:

+
[Standard Notes](https://github.com/standardnotes/app) - Safe place for your notes, thoughts, and life's work.

Languages: JavaScript icon CSS icon

+
[Tusk](https://github.com/klaudiosinani/tusk) - Unofficial, third-party, community driven Evernote app with a handful of useful features.

Languages: JavaScript icon CSS icon

+
[joplin](https://github.com/laurent22/joplin) - Note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS.

Languages: JavaScript icon

+
[linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis.

Languages: JavaScript icon vue CSS icon
Website: https://uselinked.com
Screenshots:


+
[notable](https://github.com/jmcfarlane/notable) - Simple note taking application.

Languages: JavaScript icon
Screenshots:



(4 more screenshots available in the repository)

+
[tmpNote](https://github.com/buddax2/tmpNote) - Very simple macOS app to make temporary notes.

Languages: Swift icon
Screenshots:

### 📦 Other (22) -
[Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware.

Languages: ![javascript_icon]
Website: https://betaflight.com/
Screenshots:

-
[Cakebrew](https://github.com/brunophilipe/Cakebrew) - Manage your Homebrew formulas with style using Cakebrew.

Languages: ![objective_c_icon]
Screenshots:

-
[ChipMunk](https://github.com/esrlabs/chipmunk) - Log analysis tool.

Languages: ![typescript_icon] ![rust_icon]
Screenshots:

-
[DevDocs for macOS](https://github.com/dteoh/devdocs-macos) - An unofficial DevDocs API documentation viewer.

Languages: ![swift_icon]
Screenshots:

-
[Gas Mask](https://github.com/2ndalpha/gasmask) - Hosts file manager for macOS.

Languages: ![objective_c_icon]

-
[Hosts](https://github.com/specialunderwear/Hosts.prefpane) - Cocoa GUI for /etc/hosts.

Languages: ![objective_c_icon]

-
[ImageOptim](https://github.com/ImageOptim/ImageOptim) - GUI image optimizer for Mac.

Languages: ![objective_c_icon]

-
[Keyframes Player](https://github.com/insidegui/KeyframesPlayer) - Simple macOS app to preview animations created with Facebook's keyframes framework.

Languages: ![swift_icon]
Screenshots:

-
[Lepton](https://github.com/hackjutsu/Lepton) - Democratizing Code Snippets Management (macOS/Win/Linux).

Languages: ![javascript_icon]

-
[Letters](https://github.com/klaaspieter/letters) - Teach your kids the alphabet and how to type.

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

-
[Platypus](https://github.com/sveinbjornt/Platypus) - Mac developer tool that creates application bundles from command line scripts.

Languages: ![objective_c_icon]

-
[QorumLogs](https://github.com/Esqarrouth/QorumLogs) - Swift Logging Utility for Xcode & Google Docs.

Languages: ![swift_icon]

-
[React Native Debugger](https://github.com/jhen0409/react-native-debugger) - Desktop app for inspecting your React Native projects. macOS, Linux, and Windows.

Languages: ![javascript_icon]
Screenshots:

-
[Reactotron](https://github.com/infinitered/reactotron) - Desktop app for inspecting your React JS and React Native projects. macOS, Linux, and Windows.

Languages: ![javascript_icon]

-
[RktMachine](https://github.com/woofwoofinc/rktmachine) - Menu bar macOS app for running rkt in a macOS hypervisor CoreOS VM.

Languages: ![swift_icon]
Screenshots:


-
[Ruby.app](https://github.com/gosu/ruby-app) - macOS app that contains a full Ruby installation (for use with Ruby/Gosu).

Languages: ![ruby_icon]

-
[Shuttle](https://github.com/fitztrev/shuttle) - Simple SSH shortcut menu for macOS.

Languages: ![objective_c_icon]
Screenshots:

-
[SwiftyBeaver](https://github.com/SwiftyBeaver/SwiftyBeaver) - Convenient logging during development & release in Swift.

Languages: ![swift_icon]

-
[Unused](https://github.com/jeffhodnett/Unused) - Mac app for checking Xcode projects for unused resources.

Languages: ![objective_c_icon]

-
[Vagrant Manager](https://github.com/lanayotech/vagrant-manager) - Manage your vagrant machines in one place with Vagrant Manager for macOS.

Languages: ![objective_c_icon]
Screenshots:

-
[macGist](https://github.com/Bunn/macGist) - Simple app to send pasteboard items to GitHub's Gist.

Languages: ![swift_icon]

-
[syncthing-macosx](https://github.com/syncthing/syncthing-macos) - Frugal nativemacOS macOS Syncthing application bundle.

Languages: ![objective_c_icon]
Screenshots:

+
[Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware.

Languages: JavaScript icon
Website: https://betaflight.com/
Screenshots:

+
[Cakebrew](https://github.com/brunophilipe/Cakebrew) - Manage your Homebrew formulas with style using Cakebrew.

Languages: Objective-C icon
Screenshots:

+
[ChipMunk](https://github.com/esrlabs/chipmunk) - Log analysis tool.

Languages: TypeScript icon Rust icon
Screenshots:

+
[DevDocs for macOS](https://github.com/dteoh/devdocs-macos) - An unofficial DevDocs API documentation viewer.

Languages: Swift icon
Screenshots:

+
[Gas Mask](https://github.com/2ndalpha/gasmask) - Hosts file manager for macOS.

Languages: Objective-C icon

+
[Hosts](https://github.com/specialunderwear/Hosts.prefpane) - Cocoa GUI for /etc/hosts.

Languages: Objective-C icon

+
[ImageOptim](https://github.com/ImageOptim/ImageOptim) - GUI image optimizer for Mac.

Languages: Objective-C icon

+
[Keyframes Player](https://github.com/insidegui/KeyframesPlayer) - Simple macOS app to preview animations created with Facebook's keyframes framework.

Languages: Swift icon
Screenshots:

+
[Lepton](https://github.com/hackjutsu/Lepton) - Democratizing Code Snippets Management (macOS/Win/Linux).

Languages: JavaScript icon

+
[Letters](https://github.com/klaaspieter/letters) - Teach your kids the alphabet and how to type.

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

+
[Platypus](https://github.com/sveinbjornt/Platypus) - Mac developer tool that creates application bundles from command line scripts.

Languages: Objective-C icon

+
[QorumLogs](https://github.com/Esqarrouth/QorumLogs) - Swift Logging Utility for Xcode & Google Docs.

Languages: Swift icon

+
[React Native Debugger](https://github.com/jhen0409/react-native-debugger) - Desktop app for inspecting your React Native projects. macOS, Linux, and Windows.

Languages: JavaScript icon
Screenshots:

+
[Reactotron](https://github.com/infinitered/reactotron) - Desktop app for inspecting your React JS and React Native projects. macOS, Linux, and Windows.

Languages: JavaScript icon

+
[RktMachine](https://github.com/woofwoofinc/rktmachine) - Menu bar macOS app for running rkt in a macOS hypervisor CoreOS VM.

Languages: Swift icon
Screenshots:


+
[Ruby.app](https://github.com/gosu/ruby-app) - macOS app that contains a full Ruby installation (for use with Ruby/Gosu).

Languages: Ruby icon

+
[Shuttle](https://github.com/fitztrev/shuttle) - Simple SSH shortcut menu for macOS.

Languages: Objective-C icon
Screenshots:

+
[SwiftyBeaver](https://github.com/SwiftyBeaver/SwiftyBeaver) - Convenient logging during development & release in Swift.

Languages: Swift icon

+
[Unused](https://github.com/jeffhodnett/Unused) - Mac app for checking Xcode projects for unused resources.

Languages: Objective-C icon

+
[Vagrant Manager](https://github.com/lanayotech/vagrant-manager) - Manage your vagrant machines in one place with Vagrant Manager for macOS.

Languages: Objective-C icon
Screenshots:

+
[macGist](https://github.com/Bunn/macGist) - Simple app to send pasteboard items to GitHub's Gist.

Languages: Swift icon

+
[syncthing-macosx](https://github.com/syncthing/syncthing-macos) - Frugal nativemacOS macOS Syncthing application bundle.

Languages: Objective-C icon
Screenshots:

### 📦 Player (6) -
[IINA](https://github.com/iina/iina) - The modern video player for macOS.

Languages: ![swift_icon]
Website: https://iina.io

-
[MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player.

Languages: ![c_icon]
Website: https://mpv.io
Screenshots:

-
[MPlayerX](https://github.com/niltsh/MPlayerX) - Media player on macOS.

Languages: ![objective_c_icon]

-
[MacMorpheus](https://github.com/emoRaivis/MacMorpheus) - 3D 180/360 video player for macOS for PSVR with head tracking.

Languages: ![objective_c_icon]
Screenshots:

-
[Movie Monad](https://github.com/lettier/movie-monad) - Desktop video player built with Haskell that uses GStreamer and GTK+.

Languages: ![haskell_icon]
Screenshots:


-
[Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine.

Languages: ![swift_icon]
Website: https://www.plugformac.com/
Screenshots:

+
[IINA](https://github.com/iina/iina) - The modern video player for macOS.

Languages: Swift icon
Website: https://iina.io

+
[MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player.

Languages: C icon
Website: https://mpv.io
Screenshots:

+
[MPlayerX](https://github.com/niltsh/MPlayerX) - Media player on macOS.

Languages: Objective-C icon

+
[MacMorpheus](https://github.com/emoRaivis/MacMorpheus) - 3D 180/360 video player for macOS for PSVR with head tracking.

Languages: Objective-C icon
Screenshots:

+
[Movie Monad](https://github.com/lettier/movie-monad) - Desktop video player built with Haskell that uses GStreamer and GTK+.

Languages: Haskell icon
Screenshots:


+
[Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine.

Languages: Swift icon
Website: https://www.plugformac.com/
Screenshots:

### 📦 Podcast (7) -
[Cumulonimbus](https://github.com/z-------------/CPod) - Simple, beautiful podcast app.

Languages: ![javascript_icon]
Screenshots:

-
[Doughnut](https://github.com/dyerc/Doughnut) - Podcast player and library for mac

Languages: ![swift_icon]
Screenshots:

-
[PodcastMenu](https://github.com/insidegui/PodcastMenu) - PodcastMenu is a simple app which puts [Overcast](https://overcast.fm/) on your Mac's menu bar so you can listen to your favorite podcasts while you work.

Languages: ![swift_icon]

-
[Podlive for macOS](https://github.com/Podlive/podlive-macos) - macOS client to listen to live streaming podcasts (only). It currently supports all livestreams broadcasting via Ultraschall with [Studio Link On Air](https://studio-link.de).

Languages: ![objective_c_icon]
Screenshots:

-
[Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io

Languages: ![javascript_icon]
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.

Languages: ![python_icon]
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.

Languages: ![python_icon]

+
[Cumulonimbus](https://github.com/z-------------/CPod) - Simple, beautiful podcast app.

Languages: JavaScript icon
Screenshots:

+
[Doughnut](https://github.com/dyerc/Doughnut) - Podcast player and library for mac

Languages: Swift icon
Screenshots:

+
[PodcastMenu](https://github.com/insidegui/PodcastMenu) - PodcastMenu is a simple app which puts [Overcast](https://overcast.fm/) on your Mac's menu bar so you can listen to your favorite podcasts while you work.

Languages: Swift icon

+
[Podlive for macOS](https://github.com/Podlive/podlive-macos) - macOS client to listen to live streaming podcasts (only). It currently supports all livestreams broadcasting via Ultraschall with [Studio Link On Air](https://studio-link.de).

Languages: Objective-C icon
Screenshots:

+
[Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io

Languages: JavaScript icon
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.

Languages: Python icon
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.

Languages: Python icon

### ⏱️ Productivity (55) -
[Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app.

Languages: ![javascript_icon] ![css_icon]

-
[Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar.

Languages: ![swift_icon]

-
[Cerebro](https://github.com/cerebroapp/cerebro) - Cross-platform launcher app.

Languages: ![javascript_icon]

-
[ClipMenu](https://github.com/naotaka/ClipMenu) - Clipboard manager for macOS.

Languages: ![objective_c_icon]
Screenshots:

-
[Clocker](https://github.com/n0shake/Clocker) - macOS app to plan and organize through timezones.

Languages: ![objective_c_icon]

-
[Condution](https://github.com/Shabang-Systems/Condution) - Create tasks, manage due dates, and filter with powerful perspectives.

Languages: ![javascript_icon]
Website: https://www.condution.com
Screenshots:

-
[ControlPlane](https://github.com/dustinrue/ControlPlane) - Automate running tasks based on where you are or what you do.

Languages: ![objective_c_icon]

-
[DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator...

Languages: ![swift_icon]
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.

Languages: ![javascript_icon]
Screenshots:


-
[Flycut](https://github.com/TermiT/flycut) - Clean and simple clipboard manager for developers.

Languages: ![objective_c_icon]

-
[Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar.

Languages: ![objective_c_icon]
Website: https://www.mowglii.com/itsycal/
Screenshots:

-
[KeyHolder](https://github.com/Clipy/KeyHolder) - Record shortcuts in macOS, like Alfred.app.

Languages: ![swift_icon]

-
[Kiwix](https://github.com/kiwix/apple) - Kiwix for iOS and macOS, build on Swift.

Languages: ![swift_icon]

-
[Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView.

Languages: ![swift_icon]
Website: https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12
Screenshots:

-
[Linked Ideas](https://github.com/fespinoza/LinkedIdeas) - macOS application to write down and connect ideas.

Languages: ![swift_icon]
Screenshots:

-
[Mac Screenshot Tracker](https://github.com/instance01/mac-screenshot-tracker) - An open source, free and hackable screenshot tracker. Re-watch what you've been working on!

Languages: ![python_icon]
Screenshots:


-
[Maccy](https://github.com/p0deje/Maccy) - Lightweight search-as-you-type clipboard manager.

Languages: ![swift_icon]
Screenshots:

-
[Manta](https://github.com/hql287/Manta) - Flexible invoicing desktop app with beautiful & customizable templates.

Languages: ![javascript_icon]

-
[MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings

Languages: ![swift_icon]
Screenshots:

-
[Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse

Languages: ![c_icon]
Screenshots:

-
[PDF Archiver](https://github.com/PDF-Archiver/PDF-Archiver) - Nice tool for tagging and archiving tasks.

Languages: ![swift_icon]

-
[Paperless Desktop](https://github.com/thomasbrueggemann/paperless-desktop) - Desktop app that uses the paperless API to manage your document scans.

Languages: ![javascript_icon]
Screenshots:


-
[Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium.

Languages: ![javascript_icon]
Screenshots:



(1 more screenshots available in the repository)

-
[Pomodoro Cycle](https://github.com/ziulev/pomodoro-cycle-app) - Pomodoro Cycle for macOS

Languages: ![typescript_icon]
Website: https://github.com/ziulev/pomodoro-cycle-app/releases
Screenshots:

-
[QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration.

Languages: ![cpp_icon]
Website: https://www.qownnotes.org/
Screenshots:

-
[Quicksilver](https://github.com/quicksilver/Quicksilver) - Quicksilver is a fast macOS productivity application that gives you the power to control your Mac quickly and elegantly.

Languages: ![objective_c_icon]

-
[Quickwords](https://github.com/quickwords/quickwords) - Write anything in a matter of seconds. Create snippets that can substitute text, execute tedious tasks and more.

Languages: ![javascript_icon] ![css_icon]
Screenshots:

-
[SelfControl](https://github.com/SelfControlApp/selfcontrol) - macOS app to block your own access to distracting websites etc for a predetermined period of time. It can not be undone by the app or by a restart – you must wait for the timer to run out.

Languages: ![objective_c_icon]

-
[Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions

Languages: ![swift_icon]
Screenshots:

-
[Speed Reader](https://github.com/LumingYin/SpeedReader) - Read faster with the power of silencing vocalization with SpeedReader.

Languages: ![swift_icon]
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.

Languages: ![typescript_icon] ![swift_icon]

-
[StickyNotes](https://github.com/LumingYin/StickyNotes) - A Windows 10-esque Sticky Notes app implemented in AppKit.

Languages: ![swift_icon]
Website: https://github.com/LumingYin/StickyNotes/releases
Screenshots:

-
[Strategr](https://github.com/khrykin/StrategrDesktop) - No-fuss time management.

Languages: ![cpp_icon] ![objective_c_icon]
Website: https://khrykin.github.io/StrategrDesktop/
Screenshots:


-
[Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration.

Languages: ![typescript_icon] ![javascript_icon]
Website: https://super-productivity.com
Screenshots:

-
[ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then'

Languages: ![swift_icon]
Screenshots:

-
[Thyme](https://github.com/joaomoreno/thyme) - The task timer for OS X.

Languages: ![objective_c_icon]

-
[Time to Leave](https://github.com/thamara/time-to-leave) - Log work hours and get notified when it's time to leave the office and start to live.

Languages: ![javascript_icon] ![css_icon] ![html_icon]
Website: https://timetoleave.app/
Screenshots:


-
[TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording.

Languages: ![css_icon] ![javascript_icon] ![typescript_icon]
Website: https://timescribe.app
Screenshots:



(2 more screenshots available in the repository)

-
[Timer](https://github.com/michaelvillar/timer-app) - Simple Timer app for Mac.

Languages: ![swift_icon]
Screenshots:


-
[Toggl Desktop](https://github.com/toggl-open-source/toggldesktop) - Toggl Desktop app for Windows, Mac and Linux.

Languages: ![cpp_icon]

-
[TomatoBar](https://github.com/ivoronin/TomatoBar) - Pomodoro Technique Timer for macOS with Touch Bar support.

Languages: ![swift_icon]

-
[TrelloApp](https://github.com/jlong/TrelloApp) - Unofficial wrapper application for Trello.com written in Swift. This is almost a "Hello World" for a site specific browser.

Languages: ![swift_icon]

-
[Ueli](https://github.com/oliverschwendener/ueli) - A keystroke launcher for macOS (and Windows) like Spotlight or Alfred.

Languages: ![typescript_icon]
Website: https://ueli.app/
Screenshots:

-
[Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari

Languages: ![swift_icon]
Screenshots:

-
[Watson](https://github.com/TailorDev/Watson) - A CLI application for time tracking.

Languages: ![python_icon]
Screenshots:


-
[Whale](https://github.com/1000ch/whale) - Unofficial Trello app.

Languages: ![javascript_icon]
Screenshots:

-
[Yomu](https://github.com/sendyhalim/Yomu) - Manga reader app for macOS.

Languages: ![swift_icon]

-
[espanso](https://github.com/espanso/espanso) - Cross-platform Text Expander, a powerful replacement for Alfred Snippets

Languages: ![rust_icon]
Website: https://espanso.org
Screenshots:

-
[far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2

Languages: ![c_icon] ![cpp_icon]

-
[linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis.

Languages: ![javascript_icon] ![vue_icon] ![css_icon]
Website: https://uselinked.com
Screenshots:


-
[macOrganizer](https://github.com/shubhambatra3019/macOrganizer) - macOS app for organizing files or removing unnecessary files.

Languages: ![swift_icon]

-
[reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system.

Languages: ![typescript_icon] ![swift_icon]
Screenshots:

-
[sqlectron](https://github.com/sqlectron/sqlectron-gui) - A simple and lightweight SQL client desktop/terminal with cross database and platform support.

Languages: ![typescript_icon]
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.

Languages: ![swift_icon]
Screenshots:

-
[stretchly](https://github.com/hovancik/stretchly) - Cross-platform electron app that reminds you to take breaks when working with computer.

Languages: ![javascript_icon]

+
[Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app.

Languages: JavaScript icon CSS icon

+
[Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar.

Languages: Swift icon

+
[Cerebro](https://github.com/cerebroapp/cerebro) - Cross-platform launcher app.

Languages: JavaScript icon

+
[ClipMenu](https://github.com/naotaka/ClipMenu) - Clipboard manager for macOS.

Languages: Objective-C icon
Screenshots:

+
[Clocker](https://github.com/n0shake/Clocker) - macOS app to plan and organize through timezones.

Languages: Objective-C icon

+
[Condution](https://github.com/Shabang-Systems/Condution) - Create tasks, manage due dates, and filter with powerful perspectives.

Languages: JavaScript icon
Website: https://www.condution.com
Screenshots:

+
[ControlPlane](https://github.com/dustinrue/ControlPlane) - Automate running tasks based on where you are or what you do.

Languages: Objective-C icon

+
[DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator...

Languages: Swift icon
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.

Languages: JavaScript icon
Screenshots:


+
[Flycut](https://github.com/TermiT/flycut) - Clean and simple clipboard manager for developers.

Languages: Objective-C icon

+
[Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar.

Languages: Objective-C icon
Website: https://www.mowglii.com/itsycal/
Screenshots:

+
[KeyHolder](https://github.com/Clipy/KeyHolder) - Record shortcuts in macOS, like Alfred.app.

Languages: Swift icon

+
[Kiwix](https://github.com/kiwix/apple) - Kiwix for iOS and macOS, build on Swift.

Languages: Swift icon

+
[Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView.

Languages: Swift icon
Website: https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12
Screenshots:

+
[Linked Ideas](https://github.com/fespinoza/LinkedIdeas) - macOS application to write down and connect ideas.

Languages: Swift icon
Screenshots:

+
[Mac Screenshot Tracker](https://github.com/instance01/mac-screenshot-tracker) - An open source, free and hackable screenshot tracker. Re-watch what you've been working on!

Languages: Python icon
Screenshots:


+
[Maccy](https://github.com/p0deje/Maccy) - Lightweight search-as-you-type clipboard manager.

Languages: Swift icon
Screenshots:

+
[Manta](https://github.com/hql287/Manta) - Flexible invoicing desktop app with beautiful & customizable templates.

Languages: JavaScript icon

+
[MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings

Languages: Swift icon
Screenshots:

+
[Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse

Languages: C icon
Screenshots:

+
[PDF Archiver](https://github.com/PDF-Archiver/PDF-Archiver) - Nice tool for tagging and archiving tasks.

Languages: Swift icon

+
[Paperless Desktop](https://github.com/thomasbrueggemann/paperless-desktop) - Desktop app that uses the paperless API to manage your document scans.

Languages: JavaScript icon
Screenshots:


+
[Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium.

Languages: JavaScript icon
Screenshots:



(1 more screenshots available in the repository)

+
[Pomodoro Cycle](https://github.com/ziulev/pomodoro-cycle-app) - Pomodoro Cycle for macOS

Languages: TypeScript icon
Website: https://github.com/ziulev/pomodoro-cycle-app/releases
Screenshots:

+
[QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration.

Languages: C++ icon
Website: https://www.qownnotes.org/
Screenshots:

+
[Quicksilver](https://github.com/quicksilver/Quicksilver) - Quicksilver is a fast macOS productivity application that gives you the power to control your Mac quickly and elegantly.

Languages: Objective-C icon

+
[Quickwords](https://github.com/quickwords/quickwords) - Write anything in a matter of seconds. Create snippets that can substitute text, execute tedious tasks and more.

Languages: JavaScript icon CSS icon
Screenshots:

+
[SelfControl](https://github.com/SelfControlApp/selfcontrol) - macOS app to block your own access to distracting websites etc for a predetermined period of time. It can not be undone by the app or by a restart – you must wait for the timer to run out.

Languages: Objective-C icon

+
[Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions

Languages: Swift icon
Screenshots:

+
[Speed Reader](https://github.com/LumingYin/SpeedReader) - Read faster with the power of silencing vocalization with SpeedReader.

Languages: Swift icon
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.

Languages: TypeScript icon Swift icon

+
[StickyNotes](https://github.com/LumingYin/StickyNotes) - A Windows 10-esque Sticky Notes app implemented in AppKit.

Languages: Swift icon
Website: https://github.com/LumingYin/StickyNotes/releases
Screenshots:

+
[Strategr](https://github.com/khrykin/StrategrDesktop) - No-fuss time management.

Languages: C++ icon Objective-C icon
Website: https://khrykin.github.io/StrategrDesktop/
Screenshots:


+
[Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration.

Languages: TypeScript icon JavaScript icon
Website: https://super-productivity.com
Screenshots:

+
[ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then'

Languages: Swift icon
Screenshots:

+
[Thyme](https://github.com/joaomoreno/thyme) - The task timer for OS X.

Languages: Objective-C icon

+
[Time to Leave](https://github.com/thamara/time-to-leave) - Log work hours and get notified when it's time to leave the office and start to live.

Languages: JavaScript icon CSS icon html
Website: https://timetoleave.app/
Screenshots:


+
[TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording.

Languages: CSS icon JavaScript icon TypeScript icon
Website: https://timescribe.app
Screenshots:



(2 more screenshots available in the repository)

+
[Timer](https://github.com/michaelvillar/timer-app) - Simple Timer app for Mac.

Languages: Swift icon
Screenshots:


+
[Toggl Desktop](https://github.com/toggl-open-source/toggldesktop) - Toggl Desktop app for Windows, Mac and Linux.

Languages: C++ icon

+
[TomatoBar](https://github.com/ivoronin/TomatoBar) - Pomodoro Technique Timer for macOS with Touch Bar support.

Languages: Swift icon

+
[TrelloApp](https://github.com/jlong/TrelloApp) - Unofficial wrapper application for Trello.com written in Swift. This is almost a "Hello World" for a site specific browser.

Languages: Swift icon

+
[Ueli](https://github.com/oliverschwendener/ueli) - A keystroke launcher for macOS (and Windows) like Spotlight or Alfred.

Languages: TypeScript icon
Website: https://ueli.app/
Screenshots:

+
[Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari

Languages: Swift icon
Screenshots:

+
[Watson](https://github.com/TailorDev/Watson) - A CLI application for time tracking.

Languages: Python icon
Screenshots:


+
[Whale](https://github.com/1000ch/whale) - Unofficial Trello app.

Languages: JavaScript icon
Screenshots:

+
[Yomu](https://github.com/sendyhalim/Yomu) - Manga reader app for macOS.

Languages: Swift icon

+
[espanso](https://github.com/espanso/espanso) - Cross-platform Text Expander, a powerful replacement for Alfred Snippets

Languages: Rust icon
Website: https://espanso.org
Screenshots:

+
[far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2

Languages: C icon C++ icon

+
[linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis.

Languages: JavaScript icon vue CSS icon
Website: https://uselinked.com
Screenshots:


+
[macOrganizer](https://github.com/shubhambatra3019/macOrganizer) - macOS app for organizing files or removing unnecessary files.

Languages: Swift icon

+
[reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system.

Languages: TypeScript icon Swift icon
Screenshots:

+
[sqlectron](https://github.com/sqlectron/sqlectron-gui) - A simple and lightweight SQL client desktop/terminal with cross database and platform support.

Languages: TypeScript icon
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.

Languages: Swift icon
Screenshots:

+
[stretchly](https://github.com/hovancik/stretchly) - Cross-platform electron app that reminds you to take breaks when working with computer.

Languages: JavaScript icon

### 📦 Screensaver (10) -
[Aerial](https://github.com/JohnCoates/Aerial) - Apple TV Aerial Screensaver for macOS.

Languages: ![swift_icon]
Screenshots:



(3 more screenshots available in the repository)

-
[Brooklyn](https://github.com/pedrommcarrasco/Brooklyn) - Screensaver inspired by Apple's Event on October 30, 2018.

Languages: ![swift_icon]
Screenshots:


-
[Epoch Flip Clock Screensaver](https://github.com/chrstphrknwtn/epoch-flip-clock-screensaver) - Unix epoch timestamp flip clock screensaver.

Languages: ![objective_c_icon]
Screenshots:

-
[Image-As-Wallpaper](https://github.com/ved62/Image-As-Wallpaper) - Utility application helps with selection of images for using as desktop wallpaper or in screensaver on Mac computers.

Languages: ![swift_icon]

-
[Irvue](https://github.com/leonspok/Irvue-Screensaver) - Screensaver for macOS.

Languages: ![objective_c_icon]
Screenshots:



-
[Life Saver](https://github.com/amiantos/lifesaver) - An abstract screensaver based on Conway's Game of Life implemented with SpriteKit

Languages: ![swift_icon]
Screenshots:



-
[MinimalClock](https://github.com/mattiarossini/MinimalClock) - Simple and elegant screensaver that displays the time.

Languages: ![swift_icon]
Website: https://mattiarossini.github.io/MinimalClock/
Screenshots:

-
[MusaicFM](https://github.com/obrhoff/MusaicFM) - iTunes Screensaver Clone for Spotify and Last.fm

Languages: ![objective_c_icon]
Screenshots:

-
[Predator](https://github.com/vpeschenkov/Predator) - A predator-inspired clock screensaver for macOS

Languages: ![swift_icon]
Screenshots:


-
[The GitHub Matrix Screensaver](https://github.com/winterbe/github-matrix-screensaver) - The GitHub Matrix Screensaver for macOS.

Languages: ![javascript_icon]
Screenshots:


+
[Aerial](https://github.com/JohnCoates/Aerial) - Apple TV Aerial Screensaver for macOS.

Languages: Swift icon
Screenshots:



(3 more screenshots available in the repository)

+
[Brooklyn](https://github.com/pedrommcarrasco/Brooklyn) - Screensaver inspired by Apple's Event on October 30, 2018.

Languages: Swift icon
Screenshots:


+
[Epoch Flip Clock Screensaver](https://github.com/chrstphrknwtn/epoch-flip-clock-screensaver) - Unix epoch timestamp flip clock screensaver.

Languages: Objective-C icon
Screenshots:

+
[Image-As-Wallpaper](https://github.com/ved62/Image-As-Wallpaper) - Utility application helps with selection of images for using as desktop wallpaper or in screensaver on Mac computers.

Languages: Swift icon

+
[Irvue](https://github.com/leonspok/Irvue-Screensaver) - Screensaver for macOS.

Languages: Objective-C icon
Screenshots:



+
[Life Saver](https://github.com/amiantos/lifesaver) - An abstract screensaver based on Conway's Game of Life implemented with SpriteKit

Languages: Swift icon
Screenshots:



+
[MinimalClock](https://github.com/mattiarossini/MinimalClock) - Simple and elegant screensaver that displays the time.

Languages: Swift icon
Website: https://mattiarossini.github.io/MinimalClock/
Screenshots:

+
[MusaicFM](https://github.com/obrhoff/MusaicFM) - iTunes Screensaver Clone for Spotify and Last.fm

Languages: Objective-C icon
Screenshots:

+
[Predator](https://github.com/vpeschenkov/Predator) - A predator-inspired clock screensaver for macOS

Languages: Swift icon
Screenshots:


+
[The GitHub Matrix Screensaver](https://github.com/winterbe/github-matrix-screensaver) - The GitHub Matrix Screensaver for macOS.

Languages: JavaScript icon
Screenshots:


### 🔒 Security (9) -
[Cloaker](https://github.com/spieglt/cloaker) - simple drag-and-drop, password-based file encryption.

Languages: ![rust_icon]
Website: https://adequate.systems/
Screenshots:

-
[Cryptomator](https://github.com/cryptomator/cryptomator) - Multi-platform transparent client-side encryption of your files in the cloud.

Languages: ![java_icon]
Website: https://cryptomator.org/

-
[LuLu](https://github.com/objective-see/LuLu) - LuLu is macOS firewall application that aims to block unauthorized (outgoing) network traffic.

Languages: ![objective_c_icon]

-
[Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene.

Languages: ![swift_icon]
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.

Languages: ![swift_icon]

-
[Swifty](https://github.com/swiftyapp/swifty) - Free and offline password manager.

Languages: ![javascript_icon]
Website: https://getswifty.pro
Screenshots:


-
[VeraCrypt](https://github.com/veracrypt/VeraCrypt) - Disk encryption with strong security based on TrueCrypt.

Languages: ![c_icon] ![cpp_icon]
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.

Languages: ![shell_icon]
Screenshots:

-
[stronghold](https://github.com/alichtman/stronghold) - Easily configure macOS security settings from the terminal.

Languages: ![python_icon]
Screenshots:


+
[Cloaker](https://github.com/spieglt/cloaker) - simple drag-and-drop, password-based file encryption.

Languages: Rust icon
Website: https://adequate.systems/
Screenshots:

+
[Cryptomator](https://github.com/cryptomator/cryptomator) - Multi-platform transparent client-side encryption of your files in the cloud.

Languages: Java icon
Website: https://cryptomator.org/

+
[LuLu](https://github.com/objective-see/LuLu) - LuLu is macOS firewall application that aims to block unauthorized (outgoing) network traffic.

Languages: Objective-C icon

+
[Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene.

Languages: Swift icon
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.

Languages: Swift icon

+
[Swifty](https://github.com/swiftyapp/swifty) - Free and offline password manager.

Languages: JavaScript icon
Website: https://getswifty.pro
Screenshots:


+
[VeraCrypt](https://github.com/veracrypt/VeraCrypt) - Disk encryption with strong security based on TrueCrypt.

Languages: C icon C++ icon
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.

Languages: Shell icon
Screenshots:

+
[stronghold](https://github.com/alichtman/stronghold) - Easily configure macOS security settings from the terminal.

Languages: Python icon
Screenshots:


### 📤 Sharing Files (9) -
[Cyberduck](https://github.com/iterate-ch/cyberduck) - Cyberduck is a libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure & OneDrive, Google Drive and Dropbox.

Languages: ![java_icon]
Website: https://cyberduck.io
Screenshots:


-
[Deluge](https://github.com/deluge-torrent/deluge) - Lightweight cross-platform BitTorrent client.

Languages: ![python_icon]

-
[NitroShare](https://github.com/nitroshare/nitroshare-desktop) - Transferring files from one device to another

Languages: ![cpp_icon]
Website: https://nitroshare.net

-
[Rhea](https://github.com/timonus/Rhea) - macOS status bar app for quickly sharing files and URLs.

Languages: ![objective_c_icon]

-
[Soduto](https://github.com/soduto/Soduto) - Soduto is a KDEConnect compatible application for macOS. It gives AirDrop like integration and allows file and clipboard sharing between your phones, desktops and tablets.

Languages: ![swift_icon] ![objective_c_icon]
Website: https://soduto.com/

-
[Transmission](https://github.com/transmission/transmission) - Official Transmission BitTorrent client repository.

Languages: ![objective_c_icon] ![c_icon]

-
[Tribler](https://github.com/Tribler/tribler) - Privacy enhanced BitTorrent client with P2P content discovery.

Languages: ![python_icon]

-
[mac2imgur](https://github.com/mileswd/mac2imgur) - Simple Mac app designed to make uploading images and screenshots to Imgur quick and effortless.

Languages: ![swift_icon]

-
[qBittorrent](https://github.com/qbittorrent/qBittorrent) - BitTorrent client in Qt.

Languages: ![cpp_icon]

+
[Cyberduck](https://github.com/iterate-ch/cyberduck) - Cyberduck is a libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure & OneDrive, Google Drive and Dropbox.

Languages: Java icon
Website: https://cyberduck.io
Screenshots:


+
[Deluge](https://github.com/deluge-torrent/deluge) - Lightweight cross-platform BitTorrent client.

Languages: Python icon

+
[NitroShare](https://github.com/nitroshare/nitroshare-desktop) - Transferring files from one device to another

Languages: C++ icon
Website: https://nitroshare.net

+
[Rhea](https://github.com/timonus/Rhea) - macOS status bar app for quickly sharing files and URLs.

Languages: Objective-C icon

+
[Soduto](https://github.com/soduto/Soduto) - Soduto is a KDEConnect compatible application for macOS. It gives AirDrop like integration and allows file and clipboard sharing between your phones, desktops and tablets.

Languages: Swift icon Objective-C icon
Website: https://soduto.com/

+
[Transmission](https://github.com/transmission/transmission) - Official Transmission BitTorrent client repository.

Languages: Objective-C icon C icon

+
[Tribler](https://github.com/Tribler/tribler) - Privacy enhanced BitTorrent client with P2P content discovery.

Languages: Python icon

+
[mac2imgur](https://github.com/mileswd/mac2imgur) - Simple Mac app designed to make uploading images and screenshots to Imgur quick and effortless.

Languages: Swift icon

+
[qBittorrent](https://github.com/qbittorrent/qBittorrent) - BitTorrent client in Qt.

Languages: C++ icon

### 👥 Social Networking (9) -
[Caprine](https://github.com/sindresorhus/caprine#features) - Elegant Facebook Messenger desktop app.

Languages: ![javascript_icon] ![css_icon]

-
[Goofy](https://github.com/danielbuechele/goofy) - Unofficial Facebook Messenger client.

Languages: ![javascript_icon]

-
[Leviathan](https://github.com/Swiftodon/Leviathan) - Leviathan is a iOS and macOS client application for the Mastodon social network.

Languages: ![swift_icon]

-
[Messenger](https://github.com/rsms/fb-mac-messenger) - macOS app wrapping Facebook's Messenger for desktop.

Languages: ![objective_c_icon]
Screenshots:

-
[Product Hunt](https://github.com/producthunt/producthunt-osx) - share and discover your favorite new products and applications.

Languages: ![swift_icon]

-
[Quail](https://github.com/1000ch/quail) - Unofficial [esa](https://esa.io) app.

Languages: ![javascript_icon]
Screenshots:

-
[Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram Desktop App.

Languages: ![javascript_icon] ![css_icon]

-
[RedditOS](https://github.com/Dimillian/RedditOS) - A SwiftUI Reddit client for macOS.

Languages: ![swift_icon]
Screenshots:

-
[Simpo](https://github.com/KeliCheng/Simpo) - macOS menubar app to post status quickly.

Languages: ![swift_icon]
Screenshots:


+
[Caprine](https://github.com/sindresorhus/caprine#features) - Elegant Facebook Messenger desktop app.

Languages: JavaScript icon CSS icon

+
[Goofy](https://github.com/danielbuechele/goofy) - Unofficial Facebook Messenger client.

Languages: JavaScript icon

+
[Leviathan](https://github.com/Swiftodon/Leviathan) - Leviathan is a iOS and macOS client application for the Mastodon social network.

Languages: Swift icon

+
[Messenger](https://github.com/rsms/fb-mac-messenger) - macOS app wrapping Facebook's Messenger for desktop.

Languages: Objective-C icon
Screenshots:

+
[Product Hunt](https://github.com/producthunt/producthunt-osx) - share and discover your favorite new products and applications.

Languages: Swift icon

+
[Quail](https://github.com/1000ch/quail) - Unofficial [esa](https://esa.io) app.

Languages: JavaScript icon
Screenshots:

+
[Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram Desktop App.

Languages: JavaScript icon CSS icon

+
[RedditOS](https://github.com/Dimillian/RedditOS) - A SwiftUI Reddit client for macOS.

Languages: Swift icon
Screenshots:

+
[Simpo](https://github.com/KeliCheng/Simpo) - macOS menubar app to post status quickly.

Languages: Swift icon
Screenshots:


### 📦 Streaming (3) -
[Galeri](https://github.com/michealparks/galeri) - Perpetual artwork streaming app.

Languages: ![javascript_icon]

-
[OBS Studio](https://github.com/obsproject/obs-studio) - Free and open source software for live streaming and screen recording.

Languages: ![cpp_icon]
Website: https://obsproject.com/

-
[Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine.

Languages: ![swift_icon]
Website: https://www.plugformac.com/
Screenshots:

+
[Galeri](https://github.com/michealparks/galeri) - Perpetual artwork streaming app.

Languages: JavaScript icon

+
[OBS Studio](https://github.com/obsproject/obs-studio) - Free and open source software for live streaming and screen recording.

Languages: C++ icon
Website: https://obsproject.com/

+
[Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine.

Languages: Swift icon
Website: https://www.plugformac.com/
Screenshots:

### ⚙️ 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.

Languages: ![objective_c_icon]
Screenshots:



(2 more screenshots available in the repository)

-
[Apple Juice](https://github.com/raphaelhanneken/apple-juice) - Advanced battery gauge for macOS.

Languages: ![swift_icon]
Screenshots:



-
[Clean-Me](https://github.com/Kevin-De-Koninck/Clean-Me) - Small macOS app that acts as a system cleaner (logs, cache, ...).

Languages: ![swift_icon]
Screenshots:


-
[Diagnostics](https://github.com/macmade/Diagnostics) - Diagnostics is an application displaying the diagnostic reports from applications on macOS.

Languages: ![swift_icon]
Screenshots:

-
[DisableMonitor](https://github.com/Eun/DisableMonitor) - Easily disable or enable a monitor on your Mac.

Languages: ![objective_c_icon]

-
[Fanny](https://github.com/DanielStormApps/Fanny) - Monitor your Mac's fan speed and CPU temperature from your Notification Center.

Languages: ![objective_c_icon]
Screenshots:

-
[HoRNDIS](https://github.com/jwise/HoRNDIS) - Android USB tethering driver for macOS.

Languages: ![cpp_icon]

-
[Juice](https://github.com/brianmichel/Juice) - Make your battery information a bit more interesting.

Languages: ![swift_icon]
Screenshots:


-
[KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevents your Mac from going to sleep.

Languages: ![objective_c_icon]
Screenshots:

-
[Latest](https://github.com/mangerlahn/Latest) - Small utility app for macOS that makes sure you know about all the latest updates to the apps you use.

Languages: ![swift_icon]
Screenshots:

-
[Loading](https://github.com/BonzaiThePenguin/Loading) - Simple network activity monitor for macOS.

Languages: ![objective_c_icon]
Screenshots:

-
[Overkill](https://github.com/KrauseFx/overkill-for-mac) - Stop iTunes from opening when you connect your iPhone.

Languages: ![swift_icon]

-
[ProfileCreator](https://github.com/ProfileCreator/ProfileCreator) - macOS Application to create standard or customized configuration profiles.

Languages: ![objective_c_icon]
Screenshots:

-
[SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs.

Languages: ![swift_icon]
Screenshots:


-
[Sloth](https://github.com/sveinbjornt/Sloth) - Sloth is an macOS application that displays a list of all open files and sockets in use by all running applications on your system.

Languages: ![objective_c_icon]
Screenshots:



-
[Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative.

Languages: ![typescript_icon] ![swift_icon]

-
[Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar

Languages: ![swift_icon]
Screenshots:

-
[Turbo Boost Switcher](https://github.com/rugarciap/Turbo-Boost-Switcher) - Turbo Boost Switcher is a little application for Mac computers that allows to enable and/or disable the Turbo Boost feature.

Languages: ![objective_c_icon]

-
[VerticalBar](https://github.com/DeromirNeves/DockSeparator) - macOS application to add a vertical bar to Dock.

Languages: ![swift_icon]
Screenshots:

-
[Wireshark](https://gitlab.com/wireshark/wireshark/-/tree/master) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions.

Languages: ![c_icon] ![c++_icon]
Website: https://www.wireshark.org/

-
[eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI.

Languages: ![swift_icon]
Screenshots:

-
[macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper.

Languages: ![shell_icon]
Screenshots:

-
[macOSLucidaGrande](https://github.com/LumingYin/macOSLucidaGrande) - A small utility to set Lucida Grande as your Mac's system UI font.

Languages: ![objective_c_icon]
Website: https://github.com/LumingYin/macOSLucidaGrande/releases
Screenshots:

+
[AppPolice](https://github.com/AppPolice/AppPolice) - App for macOS with a minimalistic UI which lets you quickly throttle down the CPU usage of any running process.

Languages: Objective-C icon
Screenshots:



(2 more screenshots available in the repository)

+
[Apple Juice](https://github.com/raphaelhanneken/apple-juice) - Advanced battery gauge for macOS.

Languages: Swift icon
Screenshots:



+
[Clean-Me](https://github.com/Kevin-De-Koninck/Clean-Me) - Small macOS app that acts as a system cleaner (logs, cache, ...).

Languages: Swift icon
Screenshots:


+
[Diagnostics](https://github.com/macmade/Diagnostics) - Diagnostics is an application displaying the diagnostic reports from applications on macOS.

Languages: Swift icon
Screenshots:

+
[DisableMonitor](https://github.com/Eun/DisableMonitor) - Easily disable or enable a monitor on your Mac.

Languages: Objective-C icon

+
[Fanny](https://github.com/DanielStormApps/Fanny) - Monitor your Mac's fan speed and CPU temperature from your Notification Center.

Languages: Objective-C icon
Screenshots:

+
[HoRNDIS](https://github.com/jwise/HoRNDIS) - Android USB tethering driver for macOS.

Languages: C++ icon

+
[Juice](https://github.com/brianmichel/Juice) - Make your battery information a bit more interesting.

Languages: Swift icon
Screenshots:


+
[KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevents your Mac from going to sleep.

Languages: Objective-C icon
Screenshots:

+
[Latest](https://github.com/mangerlahn/Latest) - Small utility app for macOS that makes sure you know about all the latest updates to the apps you use.

Languages: Swift icon
Screenshots:

+
[Loading](https://github.com/BonzaiThePenguin/Loading) - Simple network activity monitor for macOS.

Languages: Objective-C icon
Screenshots:

+
[Overkill](https://github.com/KrauseFx/overkill-for-mac) - Stop iTunes from opening when you connect your iPhone.

Languages: Swift icon

+
[ProfileCreator](https://github.com/ProfileCreator/ProfileCreator) - macOS Application to create standard or customized configuration profiles.

Languages: Objective-C icon
Screenshots:

+
[SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs.

Languages: Swift icon
Screenshots:


+
[Sloth](https://github.com/sveinbjornt/Sloth) - Sloth is an macOS application that displays a list of all open files and sockets in use by all running applications on your system.

Languages: Objective-C icon
Screenshots:



+
[Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative.

Languages: TypeScript icon Swift icon

+
[Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar

Languages: Swift icon
Screenshots:

+
[Turbo Boost Switcher](https://github.com/rugarciap/Turbo-Boost-Switcher) - Turbo Boost Switcher is a little application for Mac computers that allows to enable and/or disable the Turbo Boost feature.

Languages: Objective-C icon

+
[VerticalBar](https://github.com/DeromirNeves/DockSeparator) - macOS application to add a vertical bar to Dock.

Languages: Swift icon
Screenshots:

+
[Wireshark](https://gitlab.com/wireshark/wireshark/-/tree/master) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions.

Languages: C icon c++
Website: https://www.wireshark.org/

+
[eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI.

Languages: Swift icon
Screenshots:

+
[macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper.

Languages: Shell icon
Screenshots:

+
[macOSLucidaGrande](https://github.com/LumingYin/macOSLucidaGrande) - A small utility to set Lucida Grande as your Mac's system UI font.

Languages: Objective-C icon
Website: https://github.com/LumingYin/macOSLucidaGrande/releases
Screenshots:

### 📺 Terminal (13) -
[Alacritty](https://github.com/alacritty/alacritty) - Cross-platform, GPU-accelerated terminal emulator.

Languages: ![rust_icon]
Screenshots:

-
[Bifrost](https://github.com/ishuah/bifrost) - A tiny terminal emulator for serial port communication (macOS/Linux).

Languages: ![go_icon]

-
[Console](https://github.com/macmade/Console) - macOS console application.

Languages: ![swift_icon]
Screenshots:

-
[Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder.

Languages: ![swift_icon]

-
[Hyper](https://github.com/vercel/hyper) - Terminal built on web technologies.

Languages: ![javascript_icon] ![css_icon]
Screenshots:

-
[Kitty](https://github.com/kovidgoyal/kitty) - Cross-platform, fast, feature full, GPU based terminal emulator.

Languages: ![python_icon] ![c_icon]

-
[OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - Finder Toolbar app for macOS to open the current directory in Terminal, iTerm, Hyper or Alacritty.

Languages: ![swift_icon]
Screenshots:


-
[OpenTerminal](https://github.com/es-kumagai/OpenTerminal) - App for macOS that opens a new Finder window and changes the current directory to the folder launched by the app.

Languages: ![swift_icon]

-
[cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal

Languages: ![objective_c_icon]

-
[iTerm 2](https://github.com/gnachman/iTerm2) - Terminal emulator for macOS that does amazing things.

Languages: ![objective_c_icon]

-
[macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper.

Languages: ![shell_icon]
Screenshots:

-
[wallpapper](https://github.com/mczachurski/wallpapper) - wallpapper is a console application for creating dynamic wallpapers for Mojave.

Languages: ![swift_icon]

-
[zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal.

Languages: ![rust_icon]
Screenshots:

+
[Alacritty](https://github.com/alacritty/alacritty) - Cross-platform, GPU-accelerated terminal emulator.

Languages: Rust icon
Screenshots:

+
[Bifrost](https://github.com/ishuah/bifrost) - A tiny terminal emulator for serial port communication (macOS/Linux).

Languages: Go icon

+
[Console](https://github.com/macmade/Console) - macOS console application.

Languages: Swift icon
Screenshots:

+
[Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder.

Languages: Swift icon

+
[Hyper](https://github.com/vercel/hyper) - Terminal built on web technologies.

Languages: JavaScript icon CSS icon
Screenshots:

+
[Kitty](https://github.com/kovidgoyal/kitty) - Cross-platform, fast, feature full, GPU based terminal emulator.

Languages: Python icon C icon

+
[OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - Finder Toolbar app for macOS to open the current directory in Terminal, iTerm, Hyper or Alacritty.

Languages: Swift icon
Screenshots:


+
[OpenTerminal](https://github.com/es-kumagai/OpenTerminal) - App for macOS that opens a new Finder window and changes the current directory to the folder launched by the app.

Languages: Swift icon

+
[cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal

Languages: Objective-C icon

+
[iTerm 2](https://github.com/gnachman/iTerm2) - Terminal emulator for macOS that does amazing things.

Languages: Objective-C icon

+
[macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper.

Languages: Shell icon
Screenshots:

+
[wallpapper](https://github.com/mczachurski/wallpapper) - wallpapper is a console application for creating dynamic wallpapers for Mojave.

Languages: Swift icon

+
[zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal.

Languages: Rust icon
Screenshots:

### 📦 Touch Bar (6) -
[Muse](https://github.com/xzzz9097/Muse) - Spotify controller with TouchBar support.

Languages: ![swift_icon]
Screenshots:

-
[MyTouchbarMyRules](https://github.com/toxblh/MTMR) - App to customize your Touch Bar as you want.

Languages: ![swift_icon]

-
[Pock](https://github.com/pock/pock) - Display macOS Dock in Touch Bar.

Languages: ![swift_icon]
Website: https://pock.app/
Screenshots:

-
[Touch Bar Preview](https://github.com/touchbar/Touch-Bar-Preview) - Small application to display your designs on the Touch Bar of the new MacBook Pro.

Languages: ![swift_icon]

-
[Touch Bar Simulator](https://github.com/sindresorhus/touch-bar-simulator) - Use the Touch Bar on any Mac.

Languages: ![swift_icon]

-
[Touch Emoji](https://github.com/ilyalesik/touch-emoji) - Emoji picker for MacBook Pro Touch Bar.

Languages: ![swift_icon]
Screenshots:


+
[Muse](https://github.com/xzzz9097/Muse) - Spotify controller with TouchBar support.

Languages: Swift icon
Screenshots:

+
[MyTouchbarMyRules](https://github.com/toxblh/MTMR) - App to customize your Touch Bar as you want.

Languages: Swift icon

+
[Pock](https://github.com/pock/pock) - Display macOS Dock in Touch Bar.

Languages: Swift icon
Website: https://pock.app/
Screenshots:

+
[Touch Bar Preview](https://github.com/touchbar/Touch-Bar-Preview) - Small application to display your designs on the Touch Bar of the new MacBook Pro.

Languages: Swift icon

+
[Touch Bar Simulator](https://github.com/sindresorhus/touch-bar-simulator) - Use the Touch Bar on any Mac.

Languages: Swift icon

+
[Touch Emoji](https://github.com/ilyalesik/touch-emoji) - Emoji picker for MacBook Pro Touch Bar.

Languages: Swift icon
Screenshots:


### 🛠️ Utilities (79) -
[Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android

Languages: ![swift_icon]
Screenshots:



(2 more screenshots available in the repository)

-
[ArchiveMounter](https://github.com/ivoronin/ArchiveMounter) - Mounts archives like disk images.

Languages: ![swift_icon]

-
[Balena Etcher](https://github.com/balena-io/etcher) - Flash OS images to SD cards & USB drives, safely and easily.

Languages: ![typescript_icon]
Website: https://www.balena.io/etcher

-
[BeardedSpice](https://github.com/beardedspice/beardedspice) - Control web based media players with the media keys found on Mac keyboards.

Languages: ![objective_c_icon]

-
[Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware.

Languages: ![javascript_icon]
Website: https://betaflight.com/
Screenshots:

-
[Bitwarden](https://github.com/bitwarden/desktop) - Cross-platform password management solutions for individuals, teams, and business organizations.

Languages: ![typescript_icon]
Website: https://bitwarden.com/
Screenshots:



-
[Bitwarden Menu](https://github.com/jnsdrtlf/bitwarden-menubar) - Bitwarden Password Manager in your menu bar

Languages: ![typescript_icon] ![swift_icon]
Screenshots:

-
[Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers.

Languages: ![swift_icon] ![javascript_icon]
Website: https://boop.okat.best
Screenshots:

-
[Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Secure password manager for mac and other platforms.

Languages: ![javascript_icon]
Screenshots:

-
[Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar.

Languages: ![swift_icon]

-
[Catch](https://github.com/mipstian/catch/) - Catch: Broadcatching made easy.

Languages: ![swift_icon]

-
[Clear Clipboard Text Format](https://github.com/LumingYin/ClipboardClear) - Easily clear the format of your clipboard text with Clear Clipboard Text Format.

Languages: ![objective_c_icon]
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

Languages: ![swift_icon]
Screenshots:

-
[CornerCal](https://github.com/ekreutz/CornerCal) - Simple, clean calendar and clock app for macOS.

Languages: ![swift_icon]
Screenshots:

-
[Crypter](https://github.com/HR/Crypter) - Crypter is an innovative, convenient and secure cross-platform crypto app that simplifies secure password generation and management by requiring you to only remember one bit, the MasterPass.

Languages: ![javascript_icon]
Screenshots:



(1 more screenshots available in the repository)

-
[DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator...

Languages: ![swift_icon]
Website: https://devutils.com
Screenshots:

-
[Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder.

Languages: ![swift_icon]
Screenshots:

-
[ECheck](https://github.com/josejuanqm/ECheck) - Small tool to validate epub files for macOS.

Languages: ![swift_icon]

-
[Flying Carpet](https://github.com/spieglt/flyingcarpet) - cross-platform file transfer over ad-hoc wifi, like AirDrop but for Mac/Windows/Linux.

Languages: ![go_icon]
Website: https://adequate.systems/
Screenshots:

-
[Funky](https://github.com/thecatalinstan/Funky) - Easily toggle the function key on your Mac on a per app basis.

Languages: ![objective_c_icon]

-
[Gray](https://github.com/zenangst/Gray) - Pick between the light appearance and the dark appearance on a per-app basis with the click of a button

Languages: ![swift_icon]

-
[Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Manage grayscale mode from menu bar.

Languages: ![swift_icon]
Screenshots:


-
[Kap](https://github.com/wulkano/kap) - Screen recorder application built with web technology.

Languages: ![javascript_icon]

-
[KeePassXC](https://github.com/keepassxreboot/keepassxc) - Cross-platform community-driven port of the Windows application "Keepass Password Safe"

Languages: ![cpp_icon]

-
[KeeWeb](https://github.com/keeweb/keeweb) - Cross-platform password manager compatible with KeePass.

Languages: ![javascript_icon]

-
[Keka](https://github.com/aonez/Keka) - Keka is a full featured file archiver, as easy as it can be.

Languages: ![swift_icon]
Website: https://www.keka.io/en/
Screenshots:

-
[Kyapchar](https://github.com/vishaltelangre/Kyapchar) - Simple screen and microphone audio recorder for macOS.

Languages: ![swift_icon]

-
[Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView.

Languages: ![swift_icon]
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.

Languages: ![swift_icon]

-
[MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client.

Languages: ![javascript_icon] ![typescript_icon]
Screenshots:


-
[MacPass](https://github.com/MacPass/MacPass) - Native macOS KeePass client.

Languages: ![objective_c_icon]
Screenshots:

-
[Maria](https://github.com/shincurry/Maria) - macOS native app/widget for aria2 download tool.

Languages: ![swift_icon]

-
[MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings

Languages: ![swift_icon]
Screenshots:

-
[Meme Maker](https://github.com/MemeMaker/Meme-Maker-Mac) - Meme Maker macOS application for meme creation.

Languages: ![swift_icon]

-
[Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse

Languages: ![c_icon]
Screenshots:

-
[MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys.

Languages: ![swift_icon] ![objective_c_icon]
Screenshots:

-
[Monolingual](https://github.com/IngmarStein/Monolingual) - Remove unnecessary language resources from macOS

Languages: ![swift_icon]
Screenshots:

-
[Mos](https://github.com/Caldis/Mos) - Smooth your mouse's scrolling and reverse the mouse scroll direction

Languages: ![swift_icon]

-
[NVM](https://github.com/nvm-sh/nvm) - Node Version Manager.

Languages: ![shell_icon]

-
[Nmap](https://github.com/nmap/nmap) - Nmap - the Network Mapper.

Languages: ![cpp_icon]
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.

Languages: ![swift_icon]
Screenshots:

-
[NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar.

Languages: ![swift_icon]

-
[Noti](https://github.com/jariz/Noti/) - Receive Android notifications on your mac (with PushBullet).

Languages: ![swift_icon]

-
[OpenRocket](https://github.com/openrocket/openrocket) - OpenRocket is a cross-platform utility tool to model and simulate model rockets and their flight characteristics.

Languages: ![java_icon]
Website: https://openrocket.info/

-
[PB for Desktop](https://github.com/sidneys/pb-for-desktop) - Receive native push notifications on macOS, Windows and Linux.

Languages: ![javascript_icon]
Screenshots:



(1 more screenshots available in the repository)

-
[Padlock](https://github.com/padloc/padloc) - A minimal, open source password manager for macOS.

Languages: ![javascript_icon]

-
[PercentCalculator](https://github.com/cemolcay/PercentCalculator) - A menu bar application that calculates percents.

Languages: ![swift_icon]

-
[Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS.

Languages: ![swift_icon] ![metal_icon]
Website: https://superhighfives.com/pika
Screenshots:

-
[Plain Pasta](https://github.com/hisaac/PlainPasta) - Plaintextify your clipboard

Languages: ![swift_icon]
Screenshots:


-
[PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar.

Languages: ![swift_icon]
Screenshots:

-
[PowerShell](https://github.com/powershell/powershell) - PowerShell is a cross-platform automation and configuration tool/framework that works well with your existing tools.

Languages: ![c_sharp_icon]

-
[Rugby](https://github.com/swiftyfinch/Rugby) - 🏈 Cache CocoaPods for faster rebuild and indexing Xcode project.

Languages: ![swift_icon]
Website: https://swiftyfinch.github.io/en/2021-03-09-rugby-story/
Screenshots:

-
[ScreenCat](https://github.com/maxogden/screencat) - ScreenCat is a screen sharing + remote collaboration application.

Languages: ![javascript_icon] ![css_icon]

-
[SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs.

Languages: ![swift_icon]
Screenshots:


-
[SlowQuitApps](https://github.com/dteoh/SlowQuitApps) - Add a global delay to Command-Q to stop accidental app quits.

Languages: ![objective_c_icon]

-
[Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative.

Languages: ![typescript_icon] ![swift_icon]

-
[Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar

Languages: ![swift_icon]
Screenshots:

-
[Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications.

Languages: ![swift_icon]
Screenshots:


-
[Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration.

Languages: ![typescript_icon] ![javascript_icon]
Website: https://super-productivity.com
Screenshots:

-
[Telephone](https://github.com/64characters/Telephone) - SIP softphone for macOS.

Languages: ![objective_c_icon] ![swift_icon]

-
[The Blockstack Browser](https://github.com/stacks-network/blockstack-browser) - Blockstack is an internet for decentralized apps where users own their data. The Blockstack Browser allows you to explore the Blockstack internet.

Languages: ![javascript_icon]

-
[ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then'

Languages: ![swift_icon]
Screenshots:

-
[ToTheTop](https://github.com/zenangst/ToTheTop) - Small macOS application to help you scroll to the top.

Languages: ![swift_icon]

-
[Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari

Languages: ![swift_icon]
Screenshots:

-
[Wireshark](https://github.com/wireshark/wireshark) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions.

Languages: ![cpp_icon]
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.

Languages: ![objective_c_icon]
Screenshots:

-
[calibre](https://github.com/kovidgoyal/calibre) - cross platform e-book manager.

Languages: ![python_icon]
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.

Languages: ![objective_c_icon]
Website: https://dupeguru.voltaicideas.net/

-
[eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI.

Languages: ![swift_icon]
Screenshots:

-
[far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2

Languages: ![c_icon] ![cpp_icon]

-
[fselect](https://github.com/jhspetersson/fselect) - Command-line tool to search files with SQL syntax.

Languages: ![rust_icon]

-
[homebrew-cask](https://github.com/Homebrew/homebrew-cask) - A CLI workflow for the administration of macOS applications distributed as binaries

Languages: ![ruby_icon]
Website: https://brew.sh/
Screenshots:

-
[iOScanX](https://github.com/alessiomaffeis/iOScanX) - Cocoa application for semi-automated iOS app analysis and evaluation.

Languages: ![objective_c_icon] ![c_icon]
Screenshots:


-
[mac-sound-fix](https://github.com/dragstor/mac-sound-fix) - Mac Sound Re-Enabler.

Languages: ![swift_icon]
Screenshots:

-
[macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper.

Languages: ![shell_icon]
Screenshots:

-
[nix-package-manager](https://github.com/NixOS/nix) - Nix is a reproducible package manager alternative to Homebrew, with over 80,000 packages.

Languages: ![c++_icon] ![shell_icon] ![nix_icon]
Website: https://nixos.org/explore.html

-
[wechsel](https://github.com/friedrichweise/wechsel) - manage bluetooth connections with your keyboard.

Languages: ![swift_icon]
Website: https://wechsel.weise.io
Screenshots:

-
[zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal.

Languages: ![rust_icon]
Screenshots:

-
[Übersicht](https://github.com/felixhageloh/uebersicht) - Keep an eye on what's happening on your machine and in the world.

Languages: ![objective_c_icon]

+
[Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android

Languages: Swift icon
Screenshots:



(2 more screenshots available in the repository)

+
[ArchiveMounter](https://github.com/ivoronin/ArchiveMounter) - Mounts archives like disk images.

Languages: Swift icon

+
[Balena Etcher](https://github.com/balena-io/etcher) - Flash OS images to SD cards & USB drives, safely and easily.

Languages: TypeScript icon
Website: https://www.balena.io/etcher

+
[BeardedSpice](https://github.com/beardedspice/beardedspice) - Control web based media players with the media keys found on Mac keyboards.

Languages: Objective-C icon

+
[Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware.

Languages: JavaScript icon
Website: https://betaflight.com/
Screenshots:

+
[Bitwarden](https://github.com/bitwarden/desktop) - Cross-platform password management solutions for individuals, teams, and business organizations.

Languages: TypeScript icon
Website: https://bitwarden.com/
Screenshots:



+
[Bitwarden Menu](https://github.com/jnsdrtlf/bitwarden-menubar) - Bitwarden Password Manager in your menu bar

Languages: TypeScript icon Swift icon
Screenshots:

+
[Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers.

Languages: Swift icon JavaScript icon
Website: https://boop.okat.best
Screenshots:

+
[Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Secure password manager for mac and other platforms.

Languages: JavaScript icon
Screenshots:

+
[Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar.

Languages: Swift icon

+
[Catch](https://github.com/mipstian/catch/) - Catch: Broadcatching made easy.

Languages: Swift icon

+
[Clear Clipboard Text Format](https://github.com/LumingYin/ClipboardClear) - Easily clear the format of your clipboard text with Clear Clipboard Text Format.

Languages: Objective-C icon
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

Languages: Swift icon
Screenshots:

+
[CornerCal](https://github.com/ekreutz/CornerCal) - Simple, clean calendar and clock app for macOS.

Languages: Swift icon
Screenshots:

+
[Crypter](https://github.com/HR/Crypter) - Crypter is an innovative, convenient and secure cross-platform crypto app that simplifies secure password generation and management by requiring you to only remember one bit, the MasterPass.

Languages: JavaScript icon
Screenshots:



(1 more screenshots available in the repository)

+
[DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator...

Languages: Swift icon
Website: https://devutils.com
Screenshots:

+
[Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder.

Languages: Swift icon
Screenshots:

+
[ECheck](https://github.com/josejuanqm/ECheck) - Small tool to validate epub files for macOS.

Languages: Swift icon

+
[Flying Carpet](https://github.com/spieglt/flyingcarpet) - cross-platform file transfer over ad-hoc wifi, like AirDrop but for Mac/Windows/Linux.

Languages: Go icon
Website: https://adequate.systems/
Screenshots:

+
[Funky](https://github.com/thecatalinstan/Funky) - Easily toggle the function key on your Mac on a per app basis.

Languages: Objective-C icon

+
[Gray](https://github.com/zenangst/Gray) - Pick between the light appearance and the dark appearance on a per-app basis with the click of a button

Languages: Swift icon

+
[Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Manage grayscale mode from menu bar.

Languages: Swift icon
Screenshots:


+
[Kap](https://github.com/wulkano/kap) - Screen recorder application built with web technology.

Languages: JavaScript icon

+
[KeePassXC](https://github.com/keepassxreboot/keepassxc) - Cross-platform community-driven port of the Windows application "Keepass Password Safe"

Languages: C++ icon

+
[KeeWeb](https://github.com/keeweb/keeweb) - Cross-platform password manager compatible with KeePass.

Languages: JavaScript icon

+
[Keka](https://github.com/aonez/Keka) - Keka is a full featured file archiver, as easy as it can be.

Languages: Swift icon
Website: https://www.keka.io/en/
Screenshots:

+
[Kyapchar](https://github.com/vishaltelangre/Kyapchar) - Simple screen and microphone audio recorder for macOS.

Languages: Swift icon

+
[Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView.

Languages: Swift icon
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.

Languages: Swift icon

+
[MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client.

Languages: JavaScript icon TypeScript icon
Screenshots:


+
[MacPass](https://github.com/MacPass/MacPass) - Native macOS KeePass client.

Languages: Objective-C icon
Screenshots:

+
[Maria](https://github.com/shincurry/Maria) - macOS native app/widget for aria2 download tool.

Languages: Swift icon

+
[MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings

Languages: Swift icon
Screenshots:

+
[Meme Maker](https://github.com/MemeMaker/Meme-Maker-Mac) - Meme Maker macOS application for meme creation.

Languages: Swift icon

+
[Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse

Languages: C icon
Screenshots:

+
[MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys.

Languages: Swift icon Objective-C icon
Screenshots:

+
[Monolingual](https://github.com/IngmarStein/Monolingual) - Remove unnecessary language resources from macOS

Languages: Swift icon
Screenshots:

+
[Mos](https://github.com/Caldis/Mos) - Smooth your mouse's scrolling and reverse the mouse scroll direction

Languages: Swift icon

+
[NVM](https://github.com/nvm-sh/nvm) - Node Version Manager.

Languages: Shell icon

+
[Nmap](https://github.com/nmap/nmap) - Nmap - the Network Mapper.

Languages: C++ icon
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.

Languages: Swift icon
Screenshots:

+
[NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar.

Languages: Swift icon

+
[Noti](https://github.com/jariz/Noti/) - Receive Android notifications on your mac (with PushBullet).

Languages: Swift icon

+
[OpenRocket](https://github.com/openrocket/openrocket) - OpenRocket is a cross-platform utility tool to model and simulate model rockets and their flight characteristics.

Languages: Java icon
Website: https://openrocket.info/

+
[PB for Desktop](https://github.com/sidneys/pb-for-desktop) - Receive native push notifications on macOS, Windows and Linux.

Languages: JavaScript icon
Screenshots:



(1 more screenshots available in the repository)

+
[Padlock](https://github.com/padloc/padloc) - A minimal, open source password manager for macOS.

Languages: JavaScript icon

+
[PercentCalculator](https://github.com/cemolcay/PercentCalculator) - A menu bar application that calculates percents.

Languages: Swift icon

+
[Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS.

Languages: Swift icon metal
Website: https://superhighfives.com/pika
Screenshots:

+
[Plain Pasta](https://github.com/hisaac/PlainPasta) - Plaintextify your clipboard

Languages: Swift icon
Screenshots:


+
[PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar.

Languages: Swift icon
Screenshots:

+
[PowerShell](https://github.com/powershell/powershell) - PowerShell is a cross-platform automation and configuration tool/framework that works well with your existing tools.

Languages: C# icon

+
[Rugby](https://github.com/swiftyfinch/Rugby) - 🏈 Cache CocoaPods for faster rebuild and indexing Xcode project.

Languages: Swift icon
Website: https://swiftyfinch.github.io/en/2021-03-09-rugby-story/
Screenshots:

+
[ScreenCat](https://github.com/maxogden/screencat) - ScreenCat is a screen sharing + remote collaboration application.

Languages: JavaScript icon CSS icon

+
[SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs.

Languages: Swift icon
Screenshots:


+
[SlowQuitApps](https://github.com/dteoh/SlowQuitApps) - Add a global delay to Command-Q to stop accidental app quits.

Languages: Objective-C icon

+
[Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative.

Languages: TypeScript icon Swift icon

+
[Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar

Languages: Swift icon
Screenshots:

+
[Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications.

Languages: Swift icon
Screenshots:


+
[Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration.

Languages: TypeScript icon JavaScript icon
Website: https://super-productivity.com
Screenshots:

+
[Telephone](https://github.com/64characters/Telephone) - SIP softphone for macOS.

Languages: Objective-C icon Swift icon

+
[The Blockstack Browser](https://github.com/stacks-network/blockstack-browser) - Blockstack is an internet for decentralized apps where users own their data. The Blockstack Browser allows you to explore the Blockstack internet.

Languages: JavaScript icon

+
[ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then'

Languages: Swift icon
Screenshots:

+
[ToTheTop](https://github.com/zenangst/ToTheTop) - Small macOS application to help you scroll to the top.

Languages: Swift icon

+
[Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari

Languages: Swift icon
Screenshots:

+
[Wireshark](https://github.com/wireshark/wireshark) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions.

Languages: C++ icon
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.

Languages: Objective-C icon
Screenshots:

+
[calibre](https://github.com/kovidgoyal/calibre) - cross platform e-book manager.

Languages: Python icon
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.

Languages: Objective-C icon
Website: https://dupeguru.voltaicideas.net/

+
[eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI.

Languages: Swift icon
Screenshots:

+
[far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2

Languages: C icon C++ icon

+
[fselect](https://github.com/jhspetersson/fselect) - Command-line tool to search files with SQL syntax.

Languages: Rust icon

+
[homebrew-cask](https://github.com/Homebrew/homebrew-cask) - A CLI workflow for the administration of macOS applications distributed as binaries

Languages: Ruby icon
Website: https://brew.sh/
Screenshots:

+
[iOScanX](https://github.com/alessiomaffeis/iOScanX) - Cocoa application for semi-automated iOS app analysis and evaluation.

Languages: Objective-C icon C icon
Screenshots:


+
[mac-sound-fix](https://github.com/dragstor/mac-sound-fix) - Mac Sound Re-Enabler.

Languages: Swift icon
Screenshots:

+
[macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper.

Languages: Shell icon
Screenshots:

+
[nix-package-manager](https://github.com/NixOS/nix) - Nix is a reproducible package manager alternative to Homebrew, with over 80,000 packages.

Languages: c++ Shell icon nix
Website: https://nixos.org/explore.html

+
[wechsel](https://github.com/friedrichweise/wechsel) - manage bluetooth connections with your keyboard.

Languages: Swift icon
Website: https://wechsel.weise.io
Screenshots:

+
[zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal.

Languages: Rust icon
Screenshots:

+
[Übersicht](https://github.com/felixhageloh/uebersicht) - Keep an eye on what's happening on your machine and in the world.

Languages: Objective-C icon

### 🔐 VPN & Proxy (6) -
[ShadowsocksX-NG](https://github.com/shadowsocks/ShadowsocksX-NG) - Next Generation of ShadowsocksX.

Languages: ![swift_icon]

-
[Specht](https://github.com/zhuhaow/Specht) - Rule-based proxy app built with Network Extension for macOS.

Languages: ![swift_icon]
Screenshots:

-
[SpechtLite](https://github.com/zhuhaow/SpechtLite) - Rule-based proxy app for macOS.

Languages: ![swift_icon]

-
[Tunnelblick](https://github.com/Tunnelblick/Tunnelblick) - Tunnelblick is a graphic user interface for OpenVPN on macOS.

Languages: ![objective_c_icon]

-
[clashX](https://github.com/yichengchen/clashX) - A rule based custom proxy with GUI for Mac base on clash.

Languages: ![swift_icon]

-
[rvc-mac](https://github.com/riboseinc/cryptode-mac) - Ribose VPN Client macOS Menu App.

Languages: ![swift_icon]

+
[ShadowsocksX-NG](https://github.com/shadowsocks/ShadowsocksX-NG) - Next Generation of ShadowsocksX.

Languages: Swift icon

+
[Specht](https://github.com/zhuhaow/Specht) - Rule-based proxy app built with Network Extension for macOS.

Languages: Swift icon
Screenshots:

+
[SpechtLite](https://github.com/zhuhaow/SpechtLite) - Rule-based proxy app for macOS.

Languages: Swift icon

+
[Tunnelblick](https://github.com/Tunnelblick/Tunnelblick) - Tunnelblick is a graphic user interface for OpenVPN on macOS.

Languages: Objective-C icon

+
[clashX](https://github.com/yichengchen/clashX) - A rule based custom proxy with GUI for Mac base on clash.

Languages: Swift icon

+
[rvc-mac](https://github.com/riboseinc/cryptode-mac) - Ribose VPN Client macOS Menu App.

Languages: Swift icon

### 🎬 Video (19) -
[Acid.Cam.v2.OSX](https://github.com/lostjared/Acid.Cam.v2.OSX) - Acid Cam v2 for macOS distorts video to create art.

Languages: ![cpp_icon]

-
[AppleEvents](https://github.com/insidegui/AppleEvents) - Unofficial Apple Events app for macOS.

Languages: ![objective_c_icon]

-
[Conferences.digital](https://github.com/zagahr/Conferences.digital) - Best way to watch the latest and greatest videos from your favourite developer conferences for free on your Mac.

Languages: ![swift_icon]
Screenshots:

-
[Datamosh](https://github.com/maelswarm/Datamosh) - Datamosh your videos on macOS.

Languages: ![swift_icon]
Screenshots:

-
[Face Data](https://github.com/xiaohk/FaceData) - macOS application used to auto-annotate landmarks from a video.

Languages: ![swift_icon]
Screenshots:


-
[GNU Gatekeeper](https://github.com/willamowius/gnugk) - Video conferencing server for H.323 terminals.

Languages: ![cpp_icon]
Website: https://www.gnugk.org

-
[Gifted](https://github.com/vdel26/gifted) - Turn any short video into an animated GIF quickly and easily.

Languages: ![objective_c_icon]

-
[HandBrake](https://github.com/HandBrake/HandBrake) - HandBrake is a video transcoder available for Linux, Mac, and Windows.

Languages: ![c_icon]

-
[LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding.

Languages: ![javascript_icon]
Website: https://mifi.no/losslesscut/
Screenshots:

-
[MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player.

Languages: ![c_icon]
Website: https://mpv.io
Screenshots:

-
[MenuTube](https://github.com/edanchenkov/MenuTube) - Catch YouTube into your macOS menu bar!

Languages: ![javascript_icon]

-
[OpenShot](https://github.com/OpenShot/openshot-qt) - Easy to use, quick to learn, and surprisingly powerful video editor.

Languages: ![python_icon]

-
[Quick Caption](https://github.com/LumingYin/Caption) - Transcribe and generate caption files (SRT, ASS and FCPXML) without manually entering time codes.

Languages: ![swift_icon]
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.

Languages: ![objective_c_icon]

-
[Subler](https://bitbucket.org/galad87/subler/src) - Subler is an macOS app created to mux and tag mp4 files.

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

Languages: ![c_icon]
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.

Languages: ![swift_icon]

-
[WebTorrent Desktop](https://github.com/webtorrent/webtorrent-desktop) - Streaming torrent app. For Mac, Windows, and Linux.

Languages: ![javascript_icon]
Screenshots:



-
[Yoda](https://github.com/whoisandy/yoda) - Nifty macOS application which enables you to browse and download videos from YouTube.

Languages: ![javascript_icon]

+
[Acid.Cam.v2.OSX](https://github.com/lostjared/Acid.Cam.v2.OSX) - Acid Cam v2 for macOS distorts video to create art.

Languages: C++ icon

+
[AppleEvents](https://github.com/insidegui/AppleEvents) - Unofficial Apple Events app for macOS.

Languages: Objective-C icon

+
[Conferences.digital](https://github.com/zagahr/Conferences.digital) - Best way to watch the latest and greatest videos from your favourite developer conferences for free on your Mac.

Languages: Swift icon
Screenshots:

+
[Datamosh](https://github.com/maelswarm/Datamosh) - Datamosh your videos on macOS.

Languages: Swift icon
Screenshots:

+
[Face Data](https://github.com/xiaohk/FaceData) - macOS application used to auto-annotate landmarks from a video.

Languages: Swift icon
Screenshots:


+
[GNU Gatekeeper](https://github.com/willamowius/gnugk) - Video conferencing server for H.323 terminals.

Languages: C++ icon
Website: https://www.gnugk.org

+
[Gifted](https://github.com/vdel26/gifted) - Turn any short video into an animated GIF quickly and easily.

Languages: Objective-C icon

+
[HandBrake](https://github.com/HandBrake/HandBrake) - HandBrake is a video transcoder available for Linux, Mac, and Windows.

Languages: C icon

+
[LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding.

Languages: JavaScript icon
Website: https://mifi.no/losslesscut/
Screenshots:

+
[MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player.

Languages: C icon
Website: https://mpv.io
Screenshots:

+
[MenuTube](https://github.com/edanchenkov/MenuTube) - Catch YouTube into your macOS menu bar!

Languages: JavaScript icon

+
[OpenShot](https://github.com/OpenShot/openshot-qt) - Easy to use, quick to learn, and surprisingly powerful video editor.

Languages: Python icon

+
[Quick Caption](https://github.com/LumingYin/Caption) - Transcribe and generate caption files (SRT, ASS and FCPXML) without manually entering time codes.

Languages: Swift icon
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.

Languages: Objective-C icon

+
[Subler](https://bitbucket.org/galad87/subler/src) - Subler is an macOS app created to mux and tag mp4 files.

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

Languages: C icon
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.

Languages: Swift icon

+
[WebTorrent Desktop](https://github.com/webtorrent/webtorrent-desktop) - Streaming torrent app. For Mac, Windows, and Linux.

Languages: JavaScript icon
Screenshots:



+
[Yoda](https://github.com/whoisandy/yoda) - Nifty macOS application which enables you to browse and download videos from YouTube.

Languages: JavaScript icon

### 🖥️ 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.

Languages: ![swift_icon]

-
[ArtWall](https://github.com/JustinFincher/ASWP-for-macOS) - ArtStation set as wallpapers from artwork.rss

Languages: ![objective_c_icon]

-
[Artify](https://github.com/NghiaTranUIT/artify-macos) - A macOS application for bringing dedicatedly 18th century Arts to everyone

Languages: ![swift_icon]
Screenshots:



(1 more screenshots available in the repository)

-
[BingPaper](https://github.com/pengsrc/BingPaper) - Use Bing daily photo as your wallpaper on macOS.

Languages: ![swift_icon]
Screenshots:


-
[Desktop Wallpaper Switcher](https://github.com/VioletGiraffe/desktop-wallpaper-switcher) - Win / Linux / macOS tool for managing and cycling desktop wallpapers.

Languages: ![cpp_icon]

-
[Muzei](https://github.com/naman14/Muzei-macOS) - Muzei wallpaper app for macOS.

Languages: ![swift_icon]

-
[Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper.

Languages: ![swift_icon]
Website: https://sindresorhus.com/plash
Screenshots:

-
[Satellite Eyes](https://github.com/tomtaylor/satellite-eyes) - macOS app to automatically set your desktop wallpaper to the satellite view overhead.

Languages: ![objective_c_icon]
Screenshots:

-
[Sunscreen](https://github.com/davidcelis/Sunscreen) - Sunscreen is a fun, lightweight application that changes your desktop wallpaper based on sunrise and sunset.

Languages: ![swift_icon]
Screenshots:

-
[WallpaperMenu](https://github.com/diogosantos/WallpaperMenu) - macOS menubar application for navigation through beautiful pictures on the web and set them up as your desktop image.

Languages: ![ruby_icon]

-
[pyDailyChanger](https://github.com/IngoMeyer441/pyDailyChanger) - pyDailyChanger is a program that changes your wallpaper daily.

Languages: ![python_icon]

+
[500-mac-wallpaper](https://github.com/markcheeky/500-mac-wallpaper) - Simple macOS app for the status bar to automatically download photos from 500px.com to a local folder that can be set as a source of wallpapers.

Languages: Swift icon

+
[ArtWall](https://github.com/JustinFincher/ASWP-for-macOS) - ArtStation set as wallpapers from artwork.rss

Languages: Objective-C icon

+
[Artify](https://github.com/NghiaTranUIT/artify-macos) - A macOS application for bringing dedicatedly 18th century Arts to everyone

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

+
[BingPaper](https://github.com/pengsrc/BingPaper) - Use Bing daily photo as your wallpaper on macOS.

Languages: Swift icon
Screenshots:


+
[Desktop Wallpaper Switcher](https://github.com/VioletGiraffe/desktop-wallpaper-switcher) - Win / Linux / macOS tool for managing and cycling desktop wallpapers.

Languages: C++ icon

+
[Muzei](https://github.com/naman14/Muzei-macOS) - Muzei wallpaper app for macOS.

Languages: Swift icon

+
[Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper.

Languages: Swift icon
Website: https://sindresorhus.com/plash
Screenshots:

+
[Satellite Eyes](https://github.com/tomtaylor/satellite-eyes) - macOS app to automatically set your desktop wallpaper to the satellite view overhead.

Languages: Objective-C icon
Screenshots:

+
[Sunscreen](https://github.com/davidcelis/Sunscreen) - Sunscreen is a fun, lightweight application that changes your desktop wallpaper based on sunrise and sunset.

Languages: Swift icon
Screenshots:

+
[WallpaperMenu](https://github.com/diogosantos/WallpaperMenu) - macOS menubar application for navigation through beautiful pictures on the web and set them up as your desktop image.

Languages: Ruby icon

+
[pyDailyChanger](https://github.com/IngoMeyer441/pyDailyChanger) - pyDailyChanger is a program that changes your wallpaper daily.

Languages: Python icon

### 🪟 Window Management (11) -
[AltTab](https://github.com/lwouis/alt-tab-macos) - AltTab brings the power of Windows alt-tab to macOS.

Languages: ![swift_icon] ![shell_icon]
Website: https://alt-tab-macos.netlify.app/
Screenshots:



-
[Amethyst](https://github.com/ianyh/Amethyst) - Automatic tiling window manager for macOS.

Languages: ![swift_icon]
Screenshots:



-
[AppGrid](https://github.com/mjolnirapp/AppGrid) - Grid-based keyboard window manager for macOS.

Languages: ![objective_c_icon]
Screenshots:


-
[Desktop Profiles](https://github.com/mamiksik/Desktop-Profiles) - An innovative desktop/window manager for macOS

Languages: ![swift_icon]
Screenshots:


-
[Hammerspoon](https://github.com/Hammerspoon/hammerspoon) - Staggeringly powerful macOS desktop automation with Lua.

Languages: ![lua_icon] ![objective_c_icon]

-
[Phoenix](https://github.com/kasper/phoenix) - Lightweight macOS window and app manager scriptable with JavaScript.

Languages: ![objective_c_icon]
Screenshots:

-
[Rectangle](https://github.com/rxhanson/Rectangle) - Rectangle is a window manager heavily based on Spectacle, written in Swift.

Languages: ![swift_icon]
Website: https://rectangleapp.com

-
[ShiftIt](https://github.com/fikovnik/ShiftIt) - Managing windows size and position.

Languages: ![objective_c_icon]
Screenshots:



-
[Slate](https://github.com/jigish/slate) - Slate is a window management application similar to Divvy and SizeUp

Languages: ![objective_c_icon]

-
[Spectacle](https://github.com/eczarny/spectacle) - Spectacle allows you to organize your windows without using a mouse.

Languages: ![objective_c_icon]

-
[Yabai](https://github.com/koekeishiya/yabai) - A tiling window manager for macOS based on binary space partitioning.

Languages: ![c_icon] ![objective_c_icon]
Screenshots:

+
[AltTab](https://github.com/lwouis/alt-tab-macos) - AltTab brings the power of Windows alt-tab to macOS.

Languages: Swift icon Shell icon
Website: https://alt-tab-macos.netlify.app/
Screenshots:



+
[Amethyst](https://github.com/ianyh/Amethyst) - Automatic tiling window manager for macOS.

Languages: Swift icon
Screenshots:



+
[AppGrid](https://github.com/mjolnirapp/AppGrid) - Grid-based keyboard window manager for macOS.

Languages: Objective-C icon
Screenshots:


+
[Desktop Profiles](https://github.com/mamiksik/Desktop-Profiles) - An innovative desktop/window manager for macOS

Languages: Swift icon
Screenshots:


+
[Hammerspoon](https://github.com/Hammerspoon/hammerspoon) - Staggeringly powerful macOS desktop automation with Lua.

Languages: Lua icon Objective-C icon

+
[Phoenix](https://github.com/kasper/phoenix) - Lightweight macOS window and app manager scriptable with JavaScript.

Languages: Objective-C icon
Screenshots:

+
[Rectangle](https://github.com/rxhanson/Rectangle) - Rectangle is a window manager heavily based on Spectacle, written in Swift.

Languages: Swift icon
Website: https://rectangleapp.com

+
[ShiftIt](https://github.com/fikovnik/ShiftIt) - Managing windows size and position.

Languages: Objective-C icon
Screenshots:



+
[Slate](https://github.com/jigish/slate) - Slate is a window management application similar to Divvy and SizeUp

Languages: Objective-C icon

+
[Spectacle](https://github.com/eczarny/spectacle) - Spectacle allows you to organize your windows without using a mouse.

Languages: Objective-C icon

+
[Yabai](https://github.com/koekeishiya/yabai) - A tiling window manager for macOS based on binary space partitioning.

Languages: C icon Objective-C icon
Screenshots:

From 1b01150bde7627e004df187cc6eab6565827d00c Mon Sep 17 00:00:00 2001 From: Stephan Arenswald <53045059+sarensw@users.noreply.github.com> Date: Sun, 14 Sep 2025 18:58:22 +0200 Subject: [PATCH 12/62] Add MacPacker (#969) --- applications.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/applications.json b/applications.json index 22a7a05..8f4b916 100644 --- a/applications.json +++ b/applications.json @@ -9750,6 +9750,22 @@ "javascript", "typescript", ] + }, + { + "short_description": "Archive manager for macOS. Preview (nested) archives without extracting them. Extract single files.", + "categories": [ + "utilities" + ], + "repo_url": "https://github.com/sarensw/MacPacker/", + "title": "MacPacker", + "icon_url": "https://macpacker.app/icon_512x512@2x.png", + "screenshots": [ + "https://macpacker.app/main.png" + ], + "official_site": "https://macpacker.app/ ", + "languages": [ + "swift" + ] } ] } From 1a14adac1d1c5208dd75c02b3b35d7cd09263bbe Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Sun, 14 Sep 2025 16:58:36 +0000 Subject: [PATCH 13/62] Generate README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e5a3e27..bb4bd98 100644 --- a/README.md +++ b/README.md @@ -811,7 +811,7 @@ You can see in which language an app is written. Currently there are following l
[Touch Emoji](https://github.com/ilyalesik/touch-emoji) - Emoji picker for MacBook Pro Touch Bar.

Languages: Swift icon
Screenshots:


-### 🛠️ Utilities (79) +### 🛠️ Utilities (80)
[Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android

Languages: Swift icon
Screenshots:



(2 more screenshots available in the repository)

[ArchiveMounter](https://github.com/ivoronin/ArchiveMounter) - Mounts archives like disk images.

Languages: Swift icon

[Balena Etcher](https://github.com/balena-io/etcher) - Flash OS images to SD cards & USB drives, safely and easily.

Languages: TypeScript icon
Website: https://www.balena.io/etcher

@@ -842,6 +842,7 @@ You can see in which language an app is written. Currently there are following l
[Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView.

Languages: Swift icon
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.

Languages: Swift icon

[MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client.

Languages: JavaScript icon TypeScript icon
Screenshots:


+
[MacPacker](https://github.com/sarensw/MacPacker/) - Archive manager for macOS. Preview (nested) archives without extracting them. Extract single files.

Languages: Swift icon
Website: https://macpacker.app/ 
Screenshots:

[MacPass](https://github.com/MacPass/MacPass) - Native macOS KeePass client.

Languages: Objective-C icon
Screenshots:

[Maria](https://github.com/shincurry/Maria) - macOS native app/widget for aria2 download tool.

Languages: Swift icon

[MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings

Languages: Swift icon
Screenshots:

From ade68027c12b1160a15949ba0ad9945641678ba1 Mon Sep 17 00:00:00 2001 From: Serhii Londar Date: Sun, 14 Sep 2025 22:31:25 +0200 Subject: [PATCH 14/62] Update main.swift --- .github/main.swift | 56 +++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 53 insertions(+), 3 deletions(-) diff --git a/.github/main.swift b/.github/main.swift index 15e0320..a85f94a 100644 --- a/.github/main.swift +++ b/.github/main.swift @@ -181,6 +181,8 @@ class JSONApplication: Codable { var screenshots: [String] var categories: [String] var officialSite: String + // Optional metadata for richer README rendering + var homebrewCask: String? enum CodingKeys: String, CodingKey { case title @@ -191,9 +193,10 @@ class JSONApplication: Codable { case screenshots case categories case officialSite = "official_site" + case homebrewCask = "homebrew_cask" } - init(title: String, iconURL: String, repoURL: String, shortDescription: String, languages: [String], screenshots: [String], categories: [String], officialSite: String) { + init(title: String, iconURL: String, repoURL: String, shortDescription: String, languages: [String], screenshots: [String], categories: [String], officialSite: String, homebrewCask: String? = nil) { self.title = title self.iconURL = iconURL self.repoURL = repoURL @@ -202,6 +205,7 @@ class JSONApplication: Codable { self.screenshots = screenshots self.categories = categories self.officialSite = officialSite + self.homebrewCask = homebrewCask } } @@ -332,14 +336,46 @@ extension JSONApplication { languages.append(languageIconHTML(for: lang) + " ") } - // Create a collapsible section for each application + // Header line with a standard Markdown link so it's always clickable + markdownDescription.append("- [\(self.title)](\(self.repoURL)) - \(self.shortDescription)\n") + + // Collapsible extra details (languages, links, screenshots) markdownDescription.append("
") - markdownDescription.append("[\(self.title)](\(self.repoURL)) - \(self.shortDescription)") + markdownDescription.append("More") markdownDescription.append("

") // Add languages markdownDescription.append("Languages: \(languages)
") + // 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" + badges.append(appStoreButton) + } + // GitHub Releases badge + if let (owner, repo) = ownerRepo { + let releasesURL = "https://github.com/\(owner)/\(repo)/releases/latest" + let releaseBadge = "Latest Release" + badges.append(releaseBadge) + // Stars and license badges as additional improvements + let starsBadge = "GitHub stars" + let licenseBadge = "License" + badges.append(starsBadge) + badges.append(licenseBadge) + } + // Homebrew availability badge if provided + if let cask = self.homebrewCask, !cask.isEmpty { + let brewURL = "https://formulae.brew.sh/cask/\(cask)" + let brewBadge = "Homebrew cask" + badges.append(brewBadge) + } + if badges.isEmpty == false { + markdownDescription.append("Links: \(badges.joined(separator: "   "))
") + } + // Add official site if available if !self.officialSite.isEmpty { markdownDescription.append("Website: \(self.officialSite)
") @@ -401,6 +437,20 @@ private func languageIconHTML(for languageKey: String) -> String { } } +// MARK: - Helpers +private func githubOwnerRepo(from repoURL: String) -> (String, String)? { + guard repoURL.contains("github.com") else { return nil } + let parts = repoURL.split(separator: "/").map(String.init) + guard let owner = parts.drop(while: { $0 != "github.com" }).dropFirst().first, + let repoRaw = parts.drop(while: { $0 != "github.com" }).dropFirst(2).first else { return nil } + let repo = repoRaw.replacingOccurrences(of: ".git", with: "") + return (owner, repo) +} + +private func isAppStoreURL(_ string: String) -> Bool { + return string.contains("apps.apple.com") || string.contains("itunes.apple.com") +} + // Helper function to get emoji for categories func getCategoryEmoji(_ categoryId: String) -> String { switch categoryId { From 102d329f17cde57892263e9ea403bb7baf6df25e Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Sun, 14 Sep 2025 20:31:41 +0000 Subject: [PATCH 15/62] Generate README --- README.md | 2088 +++++++++++++++++++++++++++++++++++------------------ 1 file changed, 1392 insertions(+), 696 deletions(-) diff --git a/README.md b/README.md index bb4bd98..8c77032 100644 --- a/README.md +++ b/README.md @@ -111,846 +111,1542 @@ 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.

Languages: Swift icon
Screenshots:

-
[Audacity](https://github.com/audacity/audacity) - Free, open source, cross-platform audio software

Languages: C icon
Website: https://www.audacityteam.org/
Screenshots:

-
[Aural Player](https://github.com/kartik-venugopal/aural-player) - Aural Player is a audio player application for the macOS platform. Inspired by the classic Winamp player for Windows, it is designed to be to-the-point and easy to use.

Languages: Swift icon
Screenshots:



(5 more screenshots available in the repository)

-
[AutoMute](https://github.com/yonilevy/automute) - Automatically mute the sound when headphones disconnect / Mac awake from sleep.

Languages: Objective-C icon
Website: https://yoni.ninja/automute/
Screenshots:


-
[Background Music](https://github.com/kyleneideck/BackgroundMusic) - Background Music, a macOS audio utility: automatically pause your music, set individual apps' volumes and record system audio.

Languages: C++ icon
Screenshots:

-
[BlackHole](https://github.com/ExistentialAudio/BlackHole) - BlackHole is a modern macOS virtual audio driver that allows applications to pass audio to other applications with zero additional latency.

Languages: C icon

-
[CAM](https://github.com/hanayik/CAM) - macOS camera recording using ffmpeg

Languages: JavaScript icon
Screenshots:



(1 more screenshots available in the repository)

-
[Clementine](https://github.com/clementine-player/Clementine) - Clementine is a modern music player and library organizer for Windows, Linux and macOS.

Languages: C++ icon
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.

Languages: Objective-C icon
Website: https://cogx.org/

-
[Karaoke Forever](https://github.com/bhj/KaraokeEternal) - Host awesome karaoke parties where everyone can queue songs from their phone's browser. Plays MP3+G and MP4 with WebGL visualizations.

Languages: JavaScript icon
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.

Languages: Objective-C icon
Screenshots:

-
[LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding.

Languages: JavaScript icon
Website: https://mifi.no/losslesscut/
Screenshots:

-
[Lyricism](https://github.com/lyc2345/Lyricism) - macOS app to show you lyric what currently iTunes or Spotify is playing.

Languages: Objective-C icon Swift icon
Screenshots:



-
[LyricsX](https://github.com/ddddxxx/LyricsX) - Lyrics for iTunes, Spotify and Vox.

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

-
[MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player.

Languages: C icon
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.

Languages: Swift icon Objective-C icon
Screenshots:

-
[Mous Player](https://github.com/bsdelf/mous) - Simple yet powerful audio player for BSD/Linux/macOS.

Languages: C++ icon
Screenshots:



(2 more screenshots available in the repository)

-
[NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar.

Languages: Swift icon

-
[PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar.

Languages: Swift icon
Screenshots:

-
[Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine.

Languages: Swift icon
Website: https://www.plugformac.com/
Screenshots:

-
[Scope](https://github.com/billthefarmer/audiotools/tree/master/Scope/swift) - Audio Oscilloscope

Languages: Swift icon
Website: https://billthefarmer.github.io/audiotools/
Screenshots:

-
[ShazamScrobbler](https://github.com/ShazamScrobbler/shazamscrobbler-macos) - Scrobble vinyl, radios, movies to Last.fm.

Languages: Objective-C icon
Screenshots:

-
[Sonora](https://github.com/sonoramac/Sonora) - Minimal, beautifully designed music player for macOS.

Languages: Objective-C icon
Screenshots:

-
[SpotMenu](https://github.com/kmikiy/SpotMenu) - Spotify and iTunes in your menu bar.

Languages: Objective-C icon Swift icon
Screenshots:

-
[SpotSpot](https://github.com/will-stone/SpotSpot) - Spotify mini-player for macOS.

Languages: JavaScript icon

-
[Spotify4BigSur](https://github.com/fabiusBile/Spotify4BigSur) - Spotify widget for Notification Center.

Languages: Swift icon
Screenshots:

-
[Suohai](https://github.com/Sunnyyoung/Suohai) - Audio input/output source lock for macOS.

Languages: Swift icon
Screenshots:

-
[Tickeys](https://github.com/yingDev/Tickeys) - Instant audio feedback for typing. macOS version.

Languages: Rust icon
Screenshots:



-
[Tuner](https://github.com/billthefarmer/ctuner) - Musical Instrument Tuner

Languages: Swift icon
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.

Languages: Objective-C icon C icon
Screenshots:

-
[eqMac2](https://github.com/bitgapp/eqMac) - System-Wide Equalizer for the Mac.

Languages: C++ icon
Screenshots:


-
[fre:ac](https://github.com/enzo1982/freac) - The fre:ac audio converter project.

Languages: C++ icon
Screenshots:

-
[iTunes-Volume-Control](https://github.com/alberti42/iTunes-Volume-Control) - This app allows you to control the iTunes volume using volume up and volume down hotkeys.

Languages: Objective-C icon
Screenshots:

-
[jmc](https://github.com/jcm93/jmc) - jmc is new macOS media organizer.

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

-
[shairport-sync](https://github.com/mikebrady/shairport-sync) - macOS/Linux/FreeBSD/OpenBSD Airplay audio receiver.

Languages: C icon C++ icon

-
[waveSDR](https://github.com/getoffmyhack/waveSDR) - macOS native desktop Software Defined Radio application using the RTL-SDR USB device.

Languages: Swift icon
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:

+- [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:

+- [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. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://yoni.ninja/automute/
Screenshots:


+- [Background Music](https://github.com/kyleneideck/BackgroundMusic) - Background Music, a macOS audio utility: automatically pause your music, set individual apps' volumes and record system audio. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [BlackHole](https://github.com/ExistentialAudio/BlackHole) - BlackHole is a modern macOS virtual audio driver that allows applications to pass audio to other applications with zero additional latency. +
More

Languages: C icon
Links: Latest Release   GitHub stars   License

+- [CAM](https://github.com/hanayik/CAM) - macOS camera recording using ffmpeg +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+- [Clementine](https://github.com/clementine-player/Clementine) - Clementine is a modern music player and library organizer for Windows, Linux and macOS. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://www.clementine-player.org/
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/

+- [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. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://mifi.no/losslesscut/
Screenshots:

+- [Lyricism](https://github.com/lyc2345/Lyricism) - macOS app to show you lyric what currently iTunes or Spotify is playing. +
More

Languages: Objective-C icon Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+- [LyricsX](https://github.com/ddddxxx/LyricsX) - Lyrics for iTunes, Spotify and Vox. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+- [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)

+- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.plugformac.com/
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:

+- [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:

+- [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:

### 💾 Backup (5) -
[BorgBase/Vorta](https://github.com/borgbase) - Simple and Secure Offsite Backups

Languages: Python icon
Website: https://www.borgbase.com/

-
[Mackup](https://github.com/lra/mackup) - Keep your application settings in sync (macOS/Linux).

Languages: Python icon

-
[Syncalicious](https://github.com/zenangst/Syncalicious) - Keeping multiple macOS preferences in sync can be painful, but it shouldn't be.

Languages: Swift icon

-
[UrBackup](https://github.com/uroni/urbackup_backend) - UrBackup is Client/Server network backup for Windows, macOS and Linux.

Languages: C++ icon C icon

-
[shallow-backup](https://github.com/alichtman/shallow-backup) - Easily create lightweight documentation of installed applications, dotfiles, and more.

Languages: Python icon
Screenshots:

+- [BorgBase/Vorta](https://github.com/borgbase) - Simple and Secure Offsite Backups +
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

+- [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:

### 🌐 Browser (13) -
[Beaker Browser](https://github.com/beakerbrowser/beaker) - Beaker is an experimental peer-to-peer Web browser.

Languages: JavaScript icon
Screenshots:


-
[Brave Browser](https://github.com/brave/brave-browser) - Brave browser for Desktop and Laptop computers running Windows, macOS, and Linux.

Languages: JavaScript icon

-
[Chromium](https://chromium.googlesource.com/chromium/src/) - Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.

Languages: JavaScript icon C++ icon C icon
Website: https://www.chromium.org/

-
[Finicky](https://github.com/johnste/finicky) - Always opens the right browser.

Languages: Swift icon

-
[Firefox](https://hg.mozilla.org/mozilla-central/) - Fast, privacy aware browser from a non-profit. Runs on Windows, macOS and Linux.

Languages: JavaScript icon Rust icon C++ icon
Website: https://www.mozilla.org/en-US/firefox/browsers/

-
[Helium](https://github.com/JadenGeller/Helium) - Floating browser window for macOS.

Languages: Objective-C icon Swift icon

-
[Min Browser](https://github.com/minbrowser/min) - A fast and efficient minimal web browser.

Languages: JavaScript icon
Website: https://minbrowser.org

-
[Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium.

Languages: JavaScript icon
Screenshots:



(1 more screenshots available in the repository)

-
[Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper.

Languages: Swift icon
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.

Languages: Swift icon

-
[browserosaurus](https://github.com/will-stone/browserosaurus) - macOS tool that prompts you to choose a browser when opening a link.

Languages: JavaScript icon

-
[otter-browser](https://github.com/OtterBrowser/otter-browser) - Otter Browser aims to recreate the best aspects of the classic Opera (12.x) UI using Qt5.

Languages: C++ icon
Screenshots:

-
[seb-mac](https://github.com/SafeExamBrowser/seb-mac) - Safe Exam Browser for macOS and iOS.

Languages: C icon

+- [Beaker Browser](https://github.com/beakerbrowser/beaker) - Beaker is an experimental peer-to-peer Web browser. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Brave Browser](https://github.com/brave/brave-browser) - Brave browser for Desktop and Laptop computers running Windows, macOS, and Linux. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [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. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Firefox](https://hg.mozilla.org/mozilla-central/) - Fast, privacy aware browser from a non-profit. Runs on Windows, macOS and Linux. +
More

Languages: JavaScript icon Rust icon C++ icon
Website: https://www.mozilla.org/en-US/firefox/browsers/

+- [Helium](https://github.com/JadenGeller/Helium) - Floating browser window for macOS. +
More

Languages: Objective-C icon Swift icon
Links: Latest Release   GitHub stars   License

+- [Min Browser](https://github.com/minbrowser/min) - A fast and efficient minimal web browser. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://minbrowser.org

+- [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

### 💬 Chat (19) -
[Adium](https://github.com/adium/adium) - Instant messaging application that can connect to XMPP (Jabber), IRC and more.

Languages: C icon
Website: https://adium.im/
Screenshots:

-
[Beagle IM](https://github.com/tigase/beagle-im) - Powerful XMPP client with support for file transfer, VoIP and end-to-end encryption.

Languages: Swift icon
Website: https://beagle.im/
Screenshots:

-
[ChitChat](https://github.com/stonesam92/ChitChat) - Native Mac app wrapper for WhatsApp Web.

Languages: Objective-C icon
Screenshots:

-
[Electronic WeChat](https://github.com/geeeeeeeeek/electronic-wechat) - Better WeChat on macOS and Linux.

Languages: JavaScript icon
Screenshots:

-
[Element](https://github.com/vector-im/element-web) - Element is a collaboration app (currently Electron) for the [Matrix](https://matrix.org/) protocol.

Languages: JavaScript icon

-
[Franz](https://github.com/meetfranz/franz) - Franz is messaging application for services like WhatsApp, Slack, Messenger and many more.

Languages: JavaScript icon
Screenshots:

-
[Google Allo for Desktop](https://github.com/kelyvin/Google-Allo-For-Desktop) - Native macOS & Windows desktop app for Google Allo.

Languages: JavaScript icon
Screenshots:

-
[GroupMe](https://github.com/dcrousso/GroupMe) - Unofficial GroupMe App.

Languages: JavaScript icon CSS icon
Screenshots:

-
[MessagesHistoryBrowser](https://github.com/glaurent/MessagesHistoryBrowser) - macOS application to comfortably browse and search through your Messages.app history.

Languages: Swift icon

-
[RocketChat](https://github.com/RocketChat/Rocket.Chat.Electron) - Free open source chat system for teams. An alternative to Slack that can also be self hosted.

Languages: JavaScript icon
Website: https://www.rocket.chat/

-
[Seaglass](https://github.com/neilalexander/seaglass) - A truly native [Matrix](https://matrix.org/blog/home/) client for macOS.

Languages: Swift icon
Screenshots:

-
[Signal Desktop](https://github.com/signalapp/Signal-Desktop) - Electron app that links with your Signal Android or Signal iOS app.

Languages: JavaScript icon

-
[Telegram](https://github.com/overtake/TelegramSwift) - Source code of Telegram for macOS on Swift.

Languages: Swift icon

-
[Telegram Desktop](https://github.com/telegramdesktop/tdesktop) - Telegram Desktop messaging app.

Languages: C++ icon
Screenshots:

-
[Textual](https://github.com/Codeux-Software/Textual) - Textual is an IRC client for macOS.

Languages: Objective-C icon
Screenshots:



(1 more screenshots available in the repository)

-
[Thunderbird](https://hg.mozilla.org/mozilla-central) - Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client.

Languages: C++ icon JavaScript icon Rust icon
Website: https://www.thunderbird.net/en-US/
Screenshots:



-
[Torchat-Mac](https://github.com/javerous/TorChat-Mac) - TorChat for Mac is a macOS native and unofficial port of torchat.

Languages: Objective-C icon

-
[WhatsAppBar](https://github.com/aldychris/WhatsAppBar) - Send WhatsApp message from menu bar.

Languages: Swift icon
Screenshots:



-
[Wire Desktop](https://github.com/wireapp/wire-desktop) - Standalone Electron app for the chatapp Wire.

Languages: JavaScript icon

+- [Adium](https://github.com/adium/adium) - Instant messaging application that can connect to XMPP (Jabber), IRC and more. +
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Website: https://adium.im/
Screenshots:

+- [Beagle IM](https://github.com/tigase/beagle-im) - Powerful XMPP client with support for file transfer, VoIP and end-to-end encryption. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://beagle.im/
Screenshots:

+- [ChitChat](https://github.com/stonesam92/ChitChat) - Native Mac app wrapper for WhatsApp Web. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Electronic WeChat](https://github.com/geeeeeeeeek/electronic-wechat) - Better WeChat on macOS and Linux. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Element](https://github.com/vector-im/element-web) - Element is a collaboration app (currently Electron) for the [Matrix](https://matrix.org/) protocol. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [Franz](https://github.com/meetfranz/franz) - Franz is messaging application for services like WhatsApp, Slack, Messenger and many more. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Google Allo for Desktop](https://github.com/kelyvin/Google-Allo-For-Desktop) - Native macOS & Windows desktop app for Google Allo. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [GroupMe](https://github.com/dcrousso/GroupMe) - Unofficial GroupMe App. +
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [MessagesHistoryBrowser](https://github.com/glaurent/MessagesHistoryBrowser) - macOS application to comfortably browse and search through your Messages.app history. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [RocketChat](https://github.com/RocketChat/Rocket.Chat.Electron) - Free open source chat system for teams. An alternative to Slack that can also be self hosted. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.rocket.chat/

+- [Seaglass](https://github.com/neilalexander/seaglass) - A truly native [Matrix](https://matrix.org/blog/home/) client for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Signal Desktop](https://github.com/signalapp/Signal-Desktop) - Electron app that links with your Signal Android or Signal iOS app. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [Telegram](https://github.com/overtake/TelegramSwift) - Source code of Telegram for macOS on Swift. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Telegram Desktop](https://github.com/telegramdesktop/tdesktop) - Telegram Desktop messaging app. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Textual](https://github.com/Codeux-Software/Textual) - Textual is an IRC client for macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+- [Thunderbird](https://hg.mozilla.org/mozilla-central) - Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client. +
More

Languages: C++ icon JavaScript icon Rust icon
Website: https://www.thunderbird.net/en-US/
Screenshots:



+- [Torchat-Mac](https://github.com/javerous/TorChat-Mac) - TorChat for Mac is a macOS native and unofficial port of torchat. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [WhatsAppBar](https://github.com/aldychris/WhatsAppBar) - Send WhatsApp message from menu bar. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+- [Wire Desktop](https://github.com/wireapp/wire-desktop) - Standalone Electron app for the chatapp Wire. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

### 💰 Cryptocurrency (5) -
[Balance Open](https://github.com/balance-io/balance-open) - App for all the world’s currencies.

Languages: Swift icon
Screenshots:

-
[CoinBar](https://github.com/adamwaite/CoinBar) - macOS menu bar application for tracking crypto coin prices.

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

-
[Copay](https://github.com/bitpay/copay) - A secure bitcoin wallet platform for both desktop and mobile devices.

Languages: TypeScript icon

-
[Crypto Bar](https://github.com/geraldoramos/crypto-bar) - macOS menu bar application built with Electron.

Languages: JavaScript icon

-
[Float coin](https://github.com/kaunteya/FloatCoin) - Native menu bar app with floating window and support for many Exchanges.

Languages: Swift icon
Screenshots:

+- [Balance Open](https://github.com/balance-io/balance-open) - App for all the world’s currencies. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [CoinBar](https://github.com/adamwaite/CoinBar) - macOS menu bar application for tracking crypto coin prices. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+- [Copay](https://github.com/bitpay/copay) - A secure bitcoin wallet platform for both desktop and mobile devices. +
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License

+- [Crypto Bar](https://github.com/geraldoramos/crypto-bar) - macOS menu bar application built with Electron. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [Float coin](https://github.com/kaunteya/FloatCoin) - Native menu bar app with floating window and support for many Exchanges. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 🗄️ Database (18) -
[Bdash](https://github.com/bdash-app/bdash) - Simple SQL Client for lightweight data analysis.

Languages: JavaScript icon
Screenshots:


-
[Beekeeper Studio](https://github.com/beekeeper-studio/beekeeper-studio) - SQL editor and manager with support for SQLite, MySQL, MariaDB, Postgres, CockroachDB, SQL Server, and Amazon Redshift.

Languages: JavaScript icon
Website: https://www.beekeeperstudio.io
Screenshots:


-
[DB Browser for SQLite](https://github.com/sqlitebrowser/sqlitebrowser) - SQLite database management GUI.

Languages: C++ icon
Screenshots:

-
[DBeaver](https://github.com/dbeaver/dbeaver) - Universal database tool and SQL client.

Languages: Java icon
Screenshots:



(1 more screenshots available in the repository)

-
[DbGate](https://github.com/dbgate/dbgate) - Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application.

Languages: JavaScript icon TypeScript icon
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.

Languages: JavaScript icon
Screenshots:

-
[MongoHub](https://github.com/jeromelebel/MongoHub-Mac) - Add another lightweight Mac Native MongoDB client.

Languages: Objective-C icon C icon

-
[Postbird](https://github.com/Paxa/postbird) - PostgreSQL GUI client for macOS.

Languages: JavaScript icon
Screenshots:



-
[Postgres.app](https://github.com/PostgresApp/PostgresApp) - The easiest way to get started with PostgreSQL on the Mac.

Languages: Swift icon

-
[Redis Desktop Manager](https://github.com/uglide/RedisDesktopManager) - Cross-platform open source database management tool for Redis ®

Languages: C++ icon
Screenshots:

-
[Redis.app](https://github.com/jpadilla/redisapp) - The easiest way to get started with Redis on the Mac.

Languages: Swift icon
Screenshots:

-
[Robo 3T](https://github.com/Studio3T/robomongo) - Robo 3T (formerly Robomongo) is the free lightweight GUI for MongoDB enthusiasts.

Languages: C++ icon
Screenshots:

-
[Sequel Ace](https://github.com/Sequel-Ace/Sequel-Ace) - Sequel Ace is a fast, easy-to-use Mac database management application for working with MySQL & MariaDB databases.

Languages: Objective-C icon
Website: https://sequel-ace.com/

-
[Sequel Pro](https://github.com/sequelpro/sequelpro) - MySQL/MariaDB database management for macOS.

Languages: Objective-C icon
Screenshots:


-
[mongoDB.app](https://github.com/gcollazo/mongodbapp) - The easiest way to get started with mongoDB on the Mac.

Languages: Swift icon
Screenshots:

-
[redis-pro](https://github.com/cmushroom/redis-pro) - Redis management with SwiftUI.

Languages: Swift icon
Screenshots:

-
[reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system.

Languages: TypeScript icon Swift icon
Screenshots:

-
[sqlectron](https://github.com/sqlectron/sqlectron-gui) - A simple and lightweight SQL client desktop/terminal with cross database and platform support.

Languages: TypeScript icon
Website: https://sqlectron.github.io/
Screenshots:

+- [Bdash](https://github.com/bdash-app/bdash) - Simple SQL Client for lightweight data analysis. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Beekeeper Studio](https://github.com/beekeeper-studio/beekeeper-studio) - SQL editor and manager with support for SQLite, MySQL, MariaDB, Postgres, CockroachDB, SQL Server, and Amazon Redshift. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.beekeeperstudio.io
Screenshots:


+- [DB Browser for SQLite](https://github.com/sqlitebrowser/sqlitebrowser) - SQLite database management GUI. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [DBeaver](https://github.com/dbeaver/dbeaver) - Universal database tool and SQL client. +
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+- [DbGate](https://github.com/dbgate/dbgate) - Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application. +
More

Languages: JavaScript icon TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://dbgate.org
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:

+- [MongoHub](https://github.com/jeromelebel/MongoHub-Mac) - Add another lightweight Mac Native MongoDB client. +
More

Languages: Objective-C icon C icon
Links: Latest Release   GitHub stars   License

+- [Postbird](https://github.com/Paxa/postbird) - PostgreSQL GUI client for macOS. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



+- [Postgres.app](https://github.com/PostgresApp/PostgresApp) - The easiest way to get started with PostgreSQL on the Mac. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Redis Desktop Manager](https://github.com/uglide/RedisDesktopManager) - Cross-platform open source database management tool for Redis ® +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Redis.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:

+- [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:

### 👨‍💻 Development (9) -
[Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more.

Languages: Java icon
Website: https://netbeans.apache.org/
Screenshots:


-
[Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript.

Languages: JavaScript icon
Website: https://brackets.io/
Screenshots:

-
[ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease.

Languages: Swift icon C# icon Objective-C icon
Website: https://imazing.com/colorset
Screenshots:

-
[GitAhead](https://github.com/gitahead/gitahead/) - A graphical Git client designed to help you understand and manage your source code history.

Languages: C++ icon C icon
Website: https://gitahead.github.io/gitahead.com/

-
[KiCad](https://gitlab.com/kicad/code/kicad) - A software suite for electronic design automation.

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.

Languages: Swift icon
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.

Languages: Swift icon
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.

Languages: Swift icon
Screenshots:


-
[utmapp](https://github.com/utmapp/) - Virtualization for other operating systems.

Languages: Swift icon Objective-C icon
Website: https://mac.getutm.app/
Screenshots:

+- [Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more. +
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://netbeans.apache.org/
Screenshots:


+- [Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://brackets.io/
Screenshots:

+- [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. +
More

Languages: Swift icon C# icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://imazing.com/colorset
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/

+- [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:

+- [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. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [utmapp](https://github.com/utmapp/) - Virtualization for other operating systems. +
More

Languages: Swift icon Objective-C icon
Website: https://mac.getutm.app/
Screenshots:

#### 📦 Git (20) -
[Cashew](https://github.com/dhennessy/OpenCashew) - Cashew macOS Github Issue Tracker.

Languages: Objective-C icon C icon

-
[GPM](https://github.com/mtgto/GPM) - macOS application for easily operating GitHub Projects.

Languages: Swift icon

-
[Git Interactive Rebase Tool](https://github.com/MitMaro/git-interactive-rebase-tool) - Full feature terminal based sequence editor for interactive rebase.

Languages: Rust icon
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.

Languages: C++ icon C icon
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

Languages: Swift icon

-
[GitHub Desktop](https://github.com/desktop/desktop) - Simple collaboration from your desktop.

Languages: TypeScript icon
Screenshots:

-
[GitSync](https://github.com/eonist/GitSync) - Minimalistic Git client for Mac.

Languages: Swift icon
Screenshots:

-
[GitUp](https://github.com/git-up/GitUp) - The Git interface you've been missing all your life has finally arrived.

Languages: Objective-C icon
Screenshots:



(2 more screenshots available in the repository)

-
[GitX](https://github.com/gitx/gitx) - Graphical client for the git version control system.

Languages: Objective-C icon

-
[Gitee](https://github.com/Nightonke/Gitee) - Gitee, macOS status bar application for Github.

Languages: Objective-C icon Swift icon
Screenshots:



(11 more screenshots available in the repository)

-
[Github contributions](https://github.com/remirobert/Github-contributions) - GitHub contributions app, for iOS, WatchOS, and macOS.

Languages: Swift icon
Screenshots:

-
[GithubListener](https://github.com/ad/GithubListener) - Simple app that will notify about new commits to watched repositories.

Languages: Swift icon
Screenshots:

-
[GithubNotify](https://github.com/erik/github-notify) - Simple macOS app to alert you when you have unread GitHub notifications.

Languages: Swift icon

-
[Gitify](https://github.com/manosim/gitify) - Your GitHub notifications on your menu bar.

Languages: JavaScript icon
Website: https://www.gitify.io/
Screenshots:

-
[Streaker](https://github.com/jamieweavis/streaker) - GitHub contribution streak tracking menubar app.

Languages: JavaScript icon
Screenshots:

-
[TeamStatus-for-GitHub](https://github.com/marcinreliga/TeamStatus-for-GitHub) - macOS status bar application for tracking code review process within the team.

Languages: Swift icon
Screenshots:

-
[Tempo](https://github.com/maoyama/Tempo) - Replace the Git CLI with a clear UI and AI assist.

Languages: Swift icon
Screenshots:


-
[Trailer](https://github.com/ptsochantaris/trailer) - Managing Pull Requests and Issues For GitHub & GitHub Enterprise.

Languages: Swift icon
Screenshots:

-
[Xit](https://github.com/Uncommon/Xit) - Xit is a graphical tool for working with git repositories.

Languages: Swift icon
Screenshots:

-
[osagitfilter](https://github.com/doekman/osagitfilter) - Filter to put OSA languages (AppleScript, JavaScript) into git, as if they where plain text-files.

Languages: Shell icon applescript

+- [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:

+- [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:

+- [Streaker](https://github.com/jamieweavis/streaker) - GitHub contribution streak tracking menubar app. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [TeamStatus-for-GitHub](https://github.com/marcinreliga/TeamStatus-for-GitHub) - macOS status bar application for tracking code review process within the team. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Tempo](https://github.com/maoyama/Tempo) - Replace the Git CLI with a clear UI and AI assist. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Trailer](https://github.com/ptsochantaris/trailer) - Managing Pull Requests and Issues For GitHub & GitHub Enterprise. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Xit](https://github.com/Uncommon/Xit) - Xit is a graphical tool for working with git repositories. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [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

#### 📦 JSON Parsing (4) -
[JSON Mapper](https://github.com/AppCraft-LLC/json-mapper) - Simple macOS app to generate Swift Object Mapper classes from JSON.

Languages: Swift icon

-
[JSON to Model class](https://github.com/chanonly123/Json-Model-Generator) - Template based highly customizable macOS app to generate classes from JSON string, supports many languages.

Languages: Swift icon
Screenshots:

-
[JSONExport](https://github.com/Ahmed-Ali/JSONExport) - Desktop application for macOS which enables you to export JSON objects as model classes with their associated constructors, utility methods, setters and getters in your favorite language.

Languages: Swift icon
Screenshots:

-
[j2s](https://github.com/zadr/j2s) - macOS app to convert JSON objects into Swift structs (currently targets Swift 4 and Codable).

Languages: Swift icon

+- [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

#### 📦 Other Development (5) -
[Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers.

Languages: Swift icon JavaScript icon
Website: https://boop.okat.best
Screenshots:

-
[ChefInspector](https://github.com/Yasumoto/ChefInspector) - Node and Attribute viewer for Chef

Languages: Swift icon
Screenshots:

-
[MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client.

Languages: JavaScript icon TypeScript icon
Screenshots:


-
[macho-browser](https://github.com/dcsch/macho-browser) - Browser for macOS Mach-O binaries.

Languages: Objective-C icon

-
[vegvisir](https://github.com/ant4g0nist/vegvisir) - Browser based GUI for **LLDB** Debugger.

Languages: JavaScript icon
Screenshots:



(5 more screenshots available in the repository)

+- [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

+- [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)

#### 📦 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.

Languages: Objective-C icon
Screenshots:

-
[Corectl App for macOS](https://github.com/TheNewNormal/corectl.app) - Corectl App is a macOS Status bar App which works like a wrapper around the corectl command line tool corectld to control the server runtime process.

Languages: Swift icon
Screenshots:

-
[HTTP Toolkit](https://github.com/httptoolkit/httptoolkit-desktop) - HTTP Toolkit is a cross-platform tool to intercept, debug & mock HTTP.

Languages: TypeScript icon
Website: https://httptoolkit.com/
Screenshots:



-
[Insomnia](https://github.com/Kong/insomnia) - Insomnia is a cross-platform REST client, built on top of Electron.

Languages: JavaScript icon
Screenshots:

-
[KubeMonitor](https://github.com/Daniel-Sanche/KubeMonitor) - KubeMonitor is a macOS app that displays information about your active Kubernetes cluster in your menu bar.

Languages: Swift icon
Screenshots:

-
[KubeSwitch](https://github.com/nsriram/KubeSwitch) - KubeSwitch lists the available kubernetes cluster contexts on the mac, in Mac's Menu bar.

Languages: Swift icon
Screenshots:

-
[Lantern](https://github.com/RoyalIcing/Lantern) - Dedicated Mac app for website auditing and crawling.

Languages: Swift icon

-
[LocalSites](https://github.com/plan44/localSites) - Simple Menu Bar (Status Bar) App for macOS listing local Bonjour websites (as Safari 11 no longer has Bonjour Bookmarks).

Languages: Swift icon

-
[SimpleLocalize CLI](https://github.com/simplelocalize/simplelocalize-cli) - Open source tool for managing i18n keys in software projects.

Languages: Swift icon
Website: https://simplelocalize.io

-
[aws-s3-uploader](https://github.com/RafalWilinski/s3-uploader) - Simple macOS app for uploading files to Amazon Web Services.

Languages: JavaScript icon
Screenshots:

-
[iTunesConnect](https://github.com/trulyronak/itunesconnect) - macOS app to let you access iTunesConnect.

Languages: Swift icon

-
[ndm](https://github.com/720kb/ndm) - Npm desktop GUI.

Languages: JavaScript icon
Screenshots:

-
[nodeScratchpad](https://github.com/vsaravind007/nodeScratchpad) - Evaluate Nodejs/JS code snippets from Menubar.

Languages: Swift icon

-
[stts](https://github.com/inket/stts) - macOS app for monitoring the status of cloud services.

Languages: Swift icon
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:

+- [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:

+- [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:

+- [KubeMonitor](https://github.com/Daniel-Sanche/KubeMonitor) - KubeMonitor is a macOS app that displays information about your active Kubernetes cluster in your menu bar. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [KubeSwitch](https://github.com/nsriram/KubeSwitch) - KubeSwitch lists the available kubernetes cluster contexts on the mac, in Mac's Menu bar. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Lantern](https://github.com/RoyalIcing/Lantern) - Dedicated Mac app for website auditing and crawling. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [LocalSites](https://github.com/plan44/localSites) - Simple Menu Bar (Status Bar) App for macOS listing local Bonjour websites (as Safari 11 no longer has Bonjour Bookmarks). +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [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

+- [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:

#### 📦 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.

Languages: Swift icon

-
[AppBox](https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation) - Tool for iOS developers to build and deploy Development, Ad-Hoc and In-house (Enterprise) applications directly to the devices from your Dropbox account.

Languages: Objective-C icon
Screenshots:



-
[AppIcons](https://github.com/kuyawa/AppIcons) - Tool for generating icons in all sizes as required by macOS and iOS apps.

Languages: Swift icon
Screenshots:

-
[AppStoreReviewTimes](https://github.com/arbel03/AppStoreReviewTimes) - Gives you indication about the average iOS / macOS app stores review times.

Languages: Swift icon
Screenshots:


-
[AppleTrace](https://github.com/everettjf/AppleTrace) - Trace tool for iOS/macOS.

Languages: Objective-C icon

-
[Asset Catalog Tinkerer](https://github.com/insidegui/AssetCatalogTinkerer) - App that lets you open .car files and browse/extract their images.

Languages: Objective-C icon Swift icon
Screenshots:



-
[Assets](https://github.com/e7711bbear/Assets) - Assets is a macOS app that manages assets for your development projects (Xcode, web, etc).

Languages: Swift icon

-
[Attabench](https://github.com/attaswift/Attabench) - Attabench is a microbenchmarking app for macOS, designed to measure and visualize the performance of Swift code.

Languages: Swift icon
Screenshots:



-
[Board For GitHub](https://github.com/JustinFincher/BoardForGitHub) - Small application to monitor your GitHub project web page in a native macOS app :octocat:!

Languages: Objective-C icon
Screenshots:



-
[Brisk](https://github.com/br1sk/brisk) - macOS app for submitting radars.

Languages: Swift icon
Screenshots:


-
[Cleaner for Xcode](https://github.com/waylybaye/XcodeCleaner) - Cleaner for Xcode.app built with react-native-macOS.

Languages: Objective-C icon

-
[CocoaRestClient](https://github.com/mmattozzi/cocoa-rest-client) - Native Apple macOS app for testing HTTP/REST endpoints.

Languages: Objective-C icon
Screenshots:



(2 more screenshots available in the repository)

-
[Corona Tracker](https://github.com/MhdHejazi/CoronaTracker) - Coronavirus tracker app for iOS & macOS with maps & charts.

Languages: Swift icon
Website: https://coronatracker.samabox.com/
Screenshots:


-
[FilterShop](https://github.com/KrisYu/FilterShop) - macOS App to explore CoreImage Filters.

Languages: Swift icon
Screenshots:

-
[IconGenerator](https://github.com/onmyway133/IconGenerator) - macOS app to generate app icons.

Languages: JavaScript icon
Screenshots:


-
[Iconizer](https://github.com/raphaelhanneken/iconizer) - Create Xcode image catalogs (xcassets) on the fly.

Languages: Swift icon
Screenshots:

-
[Iconology](https://github.com/liamrosenfeld/Iconology) - Edit icons and then export to Xcode, icns, ico, favicon, macOS iconset, or a custom collection.

Languages: Swift icon
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.

Languages: Objective-C icon

-
[InjectionIII](https://github.com/johnno1962/InjectionIII) - overdue Swift rewrite of Injection.

Languages: Objective-C icon Swift icon

-
[Knuff](https://github.com/KnuffApp/Knuff) - The debug application for Apple Push Notification Service (APNs).

Languages: Objective-C icon
Screenshots:

-
[LayerX](https://github.com/yuhua-chen/LayerX) - Intuitive app to display transparent images on screen.

Languages: Swift icon
Screenshots:

-
[Localizable.strings](https://github.com/cristibaluta/Localizable.strings) - Mac app to localize your iOS and macOS projects.

Languages: Swift icon

-
[Localization Editor](https://github.com/igorkulman/iOSLocalizationEditor) - Simple macOS editor app to help you manage iOS app localizations by allowing you to edit all the translations side by side.

Languages: Swift icon

-
[Localizations](https://github.com/e7711bbear/Localizations) - Localizations is an macOS app that manages your Xcode project localization files (.strings).

Languages: Swift icon

-
[Menubar Colors](https://github.com/nvzqz/Menubar-Colors) - macOS app for convenient access to the system color panel.

Languages: Swift icon
Screenshots:

-
[Notarize](https://github.com/macmade/Notarize) - Notarization status monitoring tool for macOS, supporting multiple developer accounts

Languages: Swift icon
Screenshots:

-
[PodsUpdater](https://github.com/kizitonwose/PodsUpdater) - macOS app which helps you manage dependency releases in your Podfile.

Languages: Swift icon
Screenshots:


-
[ProfilesManager](https://github.com/shaojiankui/ProfilesManager) - Apple iOS/macOS Provisioning Profiles management,.provisionprofile, .mobileprovision files manager tool for mac.

Languages: Objective-C icon
Screenshots:

-
[PushNotifications](https://github.com/onmyway133/PushNotifications) - macOS app to test push notifications on iOS and Android.

Languages: JavaScript icon
Screenshots:



(6 more screenshots available in the repository)

-
[ResignTool](https://github.com/InjoyDeng/ResignTool) - This is an app for macOS that can (re)sign apps and bundle them into ipa files that are ready to be installed on an iOS device.

Languages: Objective-C icon
Screenshots:

-
[Resizr](https://github.com/onurgenes/Resizr) - MacOS application for creating AppIcon for iOS and Android apps.

Languages: Swift icon

-
[SmartPush](https://github.com/shaojiankui/SmartPush) - iOS Push Notification Debug App.

Languages: Objective-C icon
Screenshots:

-
[Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications.

Languages: Swift icon
Screenshots:


-
[TransporterPad](https://github.com/iseebi/TransporterPad) - iOS/Android app deployment tool for macOS.

Languages: Swift icon

-
[WWDC](https://github.com/insidegui/WWDC) - Unofficial WWDC app for macOS.

Languages: Swift icon

-
[WWDC.srt](https://github.com/ssamadgh/WWDCsrt) - Powerful app for downloading subtitle for each WWDC session video since 2013 in (srt) format.

Languages: Swift icon
Screenshots:



(2 more screenshots available in the repository)

-
[Xcodes.app](https://github.com/RobotsAndPencils/XcodesApp) - The easiest way to install and switch between multiple versions of Xcode.

Languages: Swift icon
Screenshots:

-
[calabash-launcher](https://github.com/xing/calabash-launcher) - iOS Calabash Launcher is a macOS app that helps you run and manage Calabash tests on your Mac.

Languages: Swift icon
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.

Languages: Objective-C icon
Screenshots:


-
[iSimulator](https://github.com/wigl/iSimulator) - iSimulator is a GUI utility to control the Simulator and manage the app installed on the simulator.

Languages: Objective-C icon

-
[xib2Storyboard](https://github.com/novemberfiveco/xib2Storyboard) - Tool to convert Xcode .xib to .storyboard files.

Languages: Objective-C icon

+- [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

+- [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

+- [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:



+- [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:


+- [Cleaner for Xcode](https://github.com/waylybaye/XcodeCleaner) - Cleaner for Xcode.app built with react-native-macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [CocoaRestClient](https://github.com/mmattozzi/cocoa-rest-client) - Native Apple macOS app for testing HTTP/REST endpoints. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



(2 more screenshots available in the repository)

+- [Corona Tracker](https://github.com/MhdHejazi/CoronaTracker) - Coronavirus tracker app for iOS & macOS with maps & charts. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://coronatracker.samabox.com/
Screenshots:


+- [FilterShop](https://github.com/KrisYu/FilterShop) - macOS App to explore CoreImage Filters. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [IconGenerator](https://github.com/onmyway133/IconGenerator) - macOS app to generate app icons. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Iconizer](https://github.com/raphaelhanneken/iconizer) - Create Xcode image catalogs (xcassets) on the fly. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Iconology](https://github.com/liamrosenfeld/Iconology) - Edit icons and then export to Xcode, icns, ico, favicon, macOS iconset, or a custom collection. +
More

Languages: Swift icon
Links: App Store App Store   Latest Release   GitHub stars   License
Website: https://apps.apple.com/us/app/iconology/id1463452867
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

+- [Knuff](https://github.com/KnuffApp/Knuff) - The debug application for Apple Push Notification Service (APNs). +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [LayerX](https://github.com/yuhua-chen/LayerX) - Intuitive app to display transparent images on screen. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Localizable.strings](https://github.com/cristibaluta/Localizable.strings) - Mac app to localize your iOS and macOS projects. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Localization Editor](https://github.com/igorkulman/iOSLocalizationEditor) - Simple macOS editor app to help you manage iOS app localizations by allowing you to edit all the translations side by side. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Localizations](https://github.com/e7711bbear/Localizations) - Localizations is an macOS app that manages your Xcode project localization files (.strings). +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Menubar Colors](https://github.com/nvzqz/Menubar-Colors) - macOS app for convenient access to the system color panel. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Notarize](https://github.com/macmade/Notarize) - Notarization status monitoring tool for macOS, supporting multiple developer accounts +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [PodsUpdater](https://github.com/kizitonwose/PodsUpdater) - macOS app which helps you manage dependency releases in your Podfile. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [ProfilesManager](https://github.com/shaojiankui/ProfilesManager) - Apple iOS/macOS Provisioning Profiles management,.provisionprofile, .mobileprovision files manager tool for mac. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [PushNotifications](https://github.com/onmyway133/PushNotifications) - macOS app to test push notifications on iOS and Android. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(6 more screenshots available in the repository)

+- [ResignTool](https://github.com/InjoyDeng/ResignTool) - This is an app for macOS that can (re)sign apps and bundle them into ipa files that are ready to be installed on an iOS device. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Resizr](https://github.com/onurgenes/Resizr) - MacOS application for creating AppIcon for iOS and Android apps. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [SmartPush](https://github.com/shaojiankui/SmartPush) - iOS Push Notification Debug App. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [TransporterPad](https://github.com/iseebi/TransporterPad) - iOS/Android app deployment tool for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [WWDC](https://github.com/insidegui/WWDC) - Unofficial WWDC app for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [WWDC.srt](https://github.com/ssamadgh/WWDCsrt) - Powerful app for downloading subtitle for each WWDC session video since 2013 in (srt) format. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(2 more screenshots available in the repository)

+- [Xcodes.app](https://github.com/RobotsAndPencils/XcodesApp) - The easiest way to install and switch between multiple versions of Xcode. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [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

### ⬇️ Downloader (7) -
[App Downloader](https://github.com/yep/app-downloader) - Easily search and download macOS apps from the huge `homebrew cask` app catalog.

Languages: Swift icon

-
[Extream Download Manager](https://github.com/subhra74/xdm) - a powerful tool to increase download speeds up to 500%

Languages: Java icon
Website: https://subhra74.github.io/xdm/

-
[Get It](https://github.com/Kevin-De-Koninck/Get-It) - Native macOS video/audio downloader. Think of it as a youtube downloader that works on many sites.

Languages: Swift icon

-
[Motrix](https://github.com/agalwood/Motrix) - A full-featured download manager.

Languages: JavaScript icon
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.

Languages: Objective-C icon Swift icon
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.

Languages: Swift icon
Screenshots:

-
[udemy-downloader-gui](https://github.com/FaisalUmair/udemy-downloader-gui) - desktop application for downloading Udemy Courses.

Languages: JavaScript icon

+- [App Downloader](https://github.com/yep/app-downloader) - Easily search and download macOS apps from the huge `homebrew cask` app catalog. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Extream Download Manager](https://github.com/subhra74/xdm) - a powerful tool to increase download speeds up to 500% +
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://subhra74.github.io/xdm/

+- [Get It](https://github.com/Kevin-De-Koninck/Get-It) - Native macOS video/audio downloader. Think of it as a youtube downloader that works on many sites. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Motrix](https://github.com/agalwood/Motrix) - A full-featured download manager. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://motrix.app/
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

### 📝 Editors (4) -
[AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS.

Languages: Swift icon
Website: https://auroraeditor.com
Screenshots:

-
[Chime](https://github.com/ChimeHQ/Chime) - An editor for macOS

Languages: Swift icon
Website: https://www.chimehq.com/
Screenshots:

-
[CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever.

Languages: Swift icon
Website: https://www.codeedit.app/
Screenshots:

-
[Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.

Languages: C icon c++
Website: https://www.geany.org/
Screenshots:

+- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://auroraeditor.com
Screenshots:

+- [Chime](https://github.com/ChimeHQ/Chime) - An editor for macOS +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.chimehq.com/
Screenshots:

+- [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.codeedit.app/
Screenshots:

+- [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. +
More

Languages: C icon c++
Links: Latest Release   GitHub stars   License
Website: https://www.geany.org/
Screenshots:

#### 📦 CSV (1) -
[TableTool](https://github.com/jakob/TableTool) - simple CSV editor for the macOS.

Languages: Objective-C icon

+- [TableTool](https://github.com/jakob/TableTool) - simple CSV editor for the macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

#### 📦 JSON (2) -
[JSON Editor](https://github.com/fand/json-editor-app) - Dead simple JSON editor using josdejong/jsoneditor

Languages: TypeScript icon
Screenshots:

-
[JSON-Splora](https://github.com/wellsjo/JSON-Splora) - GUI for editing, visualizing, and manipulating JSON data.

Languages: JavaScript icon
Screenshots:


+- [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:


#### 📦 Markdown (10) -
[Gingko](https://github.com/gingko/client) - Tree-structured markdown editor for macOS, Windows, and Linux.

Languages: Elm icon
Screenshots:

-
[MacDown](https://github.com/MacDownApp/macdown) - Markdown editor for macOS.

Languages: Objective-C icon

-
[Mark Text](https://github.com/marktext/marktext/) - Realtime preview markdown editor for macOS Windows and Linux.

Languages: JavaScript icon

-
[MarkEdit](https://github.com/MarkEdit-app/MarkEdit) - MarkEdit is a free and open-source Markdown editor, for macOS. It's just like TextEdit on Mac but dedicated to Markdown.

Languages: Swift icon TypeScript icon
Website: https://markedit.app/
Screenshots:



-
[Notenik](https://github.com/hbowie/notenik-swift) - Note-taking app with many organizational options.

Languages: Swift icon
Website: https://notenik.app
Screenshots:

-
[Obsidian plugins & themes](https://github.com/obsidianmd/obsidian-releases) - Community plugins list, theme list, and releases of Obsidian.

Languages: JavaScript icon
Website: https://obsidian.md/
Screenshots:

-
[Pine](https://github.com/lukakerr/Pine) - A modern MacOS markdown editor.

Languages: Swift icon
Screenshots:



-
[QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration.

Languages: C++ icon
Website: https://www.qownnotes.org/
Screenshots:

-
[Zettlr](https://github.com/Zettlr/Zettlr) - A Markdown Editor for the 21st century.

Languages: JavaScript icon TypeScript icon
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.

Languages: JavaScript icon vue CSS icon
Website: https://uselinked.com
Screenshots:


+- [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:

+- [MacDown](https://github.com/MacDownApp/macdown) - Markdown editor for macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Mark Text](https://github.com/marktext/marktext/) - Realtime preview markdown editor for macOS Windows and Linux. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [MarkEdit](https://github.com/MarkEdit-app/MarkEdit) - MarkEdit is a free and open-source Markdown editor, for macOS. It's just like TextEdit on Mac but dedicated to Markdown. +
More

Languages: Swift icon TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://markedit.app/
Screenshots:



+- [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:

+- [Obsidian plugins & themes](https://github.com/obsidianmd/obsidian-releases) - Community plugins list, theme list, and releases of Obsidian. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://obsidian.md/
Screenshots:

+- [Pine](https://github.com/lukakerr/Pine) - A modern MacOS markdown editor. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://www.qownnotes.org/
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:


#### 📦 TeX (1) -
[Qilin Editor](https://github.com/qilin-editor/qilin-app) - Text editor for exact sciences with built-in KaTeX/AsciiMath support.

Languages: JavaScript icon
Screenshots:



+- [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:



#### 📦 Text (11) -
[AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS.

Languages: Swift icon
Website: https://auroraeditor.com
Screenshots:

-
[CotEditor](https://github.com/coteditor/CotEditor) - Lightweight Plain-Text Editor for macOS.

Languages: Swift icon
Screenshots:

-
[Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.

Languages: C icon c++
Website: https://www.geany.org/
Screenshots:

-
[MacVim](https://github.com/macvim-dev/macvim) - Text editor for macOS.

Languages: C icon

-
[Noto](https://github.com/brunophilipe/noto) - Plain text editor for macOS with customizable themes.

Languages: Swift icon
Screenshots:


-
[SubEthaEdit](https://github.com/subethaedit/SubEthaEdit) - General purpose plain text editor for macOS. Widely known for its live collaboration feature.

Languages: Objective-C icon
Screenshots:


-
[TextMate](https://github.com/textmate/textmate) - TextMate is a graphical text editor for macOS.

Languages: Objective-C icon
Screenshots:

-
[Tincta](https://github.com/CodingFriends/Tincta) - One-window text editor with syntax highlighting.

Languages: Objective-C icon
Website: https://codingfriends.github.io/Tincta/

-
[VimR](https://github.com/qvacua/vimr) - Refined Neovim experience for macOS.

Languages: Swift icon

-
[micro](https://github.com/zyedidia/micro) - A terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the capabilities of modern terminals.

Languages: Go icon
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.

Languages: TypeScript icon Swift icon
Screenshots:

+- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://auroraeditor.com
Screenshots:

+- [CotEditor](https://github.com/coteditor/CotEditor) - Lightweight Plain-Text Editor for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. +
More

Languages: C icon c++
Links: Latest Release   GitHub stars   License
Website: https://www.geany.org/
Screenshots:

+- [MacVim](https://github.com/macvim-dev/macvim) - Text editor for macOS. +
More

Languages: C icon
Links: Latest Release   GitHub stars   License

+- [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:


+- [SubEthaEdit](https://github.com/subethaedit/SubEthaEdit) - General purpose plain text editor for macOS. Widely known for its live collaboration feature. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [TextMate](https://github.com/textmate/textmate) - TextMate is a graphical text editor for macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Tincta](https://github.com/CodingFriends/Tincta) - One-window text editor with syntax highlighting. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://codingfriends.github.io/Tincta/

+- [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:

### 🧩 Extensions (13) -
[AdGuard for Safari](https://github.com/adguardteam/adguardforsafari) - The most advanced ad blocking extension for Safari

Languages: JavaScript icon
Website: https://adguard.com/en/welcome.html
Screenshots:

-
[BetterPiP](https://github.com/Capevace/BetterPiP) - Use native picture-in-picture with browsers such as Google Chrome for HTML5 videos.

Languages: Swift icon
Screenshots:

-
[Is It Private?](https://github.com/ffittschen/IsItPrivate) - A Safari Extension providing a toolbar icon that changes its visual appearance if Private Browsing is enabled.

Languages: Swift icon
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

Languages: C icon
Screenshots:

-
[PageExtender](https://github.com/fphilipe/PageExtender.app) - Extend pages with your own CSS and JS files.

Languages: Swift icon JavaScript icon
Screenshots:

-
[PiPTool](https://github.com/bfmatei/PiPTool) - Add the Picture-in-Picture Functionality to YouTube, Netflix, Plex and other video broadcasting services in macOS.

Languages: JavaScript icon

-
[PiPifier](https://github.com/arnoappenzeller/PiPifier) - PiPifier is a native macOS 10.12 Safari extension that lets you use every HTML5 video in Picture in Picture mode.

Languages: Swift icon
Screenshots:



-
[Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives.

Languages: Swift icon

-
[Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions

Languages: Swift icon
Screenshots:

-
[Swimat](https://github.com/Jintin/Swimat) - Swimat is an Xcode plug-in to format your Swift code.

Languages: Swift icon
Website: https://jintin.github.io/Swimat/
Screenshots:

-
[ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then'

Languages: Swift icon
Screenshots:

-
[Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari

Languages: Swift icon
Screenshots:

-
[nef](https://github.com/bow-swift/nef-plugin) - This Xcode extension enables you to make a code selection and export it to a snippets. Available on Mac AppStore.

Languages: Swift icon
Website: https://nef.bow-swift.io/
Screenshots:


+- [AdGuard for Safari](https://github.com/adguardteam/adguardforsafari) - The most advanced ad blocking extension for Safari +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://adguard.com/en/welcome.html
Screenshots:

+- [BetterPiP](https://github.com/Capevace/BetterPiP) - Use native picture-in-picture with browsers such as Google Chrome for HTML5 videos. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Is It Private?](https://github.com/ffittschen/IsItPrivate) - A Safari Extension providing a toolbar icon that changes its visual appearance if Private Browsing is enabled. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://florian.codes/projects/is-it-private/
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:

+- [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:



+- [Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Swimat](https://github.com/Jintin/Swimat) - Swimat is an Xcode plug-in to format your Swift code. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://jintin.github.io/Swimat/
Screenshots:

+- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [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:


### 🔍 Finder (11) -
[Clipy](https://github.com/Clipy/Clipy) - Clipy is a Clipboard extension app for macOS.

Languages: Swift icon
Screenshots:


-
[CopyQ](https://github.com/hluk/CopyQ) - Clipboard manager with advanced features

Languages: C++ icon

-
[Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder.

Languages: Swift icon
Screenshots:

-
[FiScript](https://github.com/Mortennn/FiScript) - Execute custom scripts from the MacOS context menu (CTRL+click) in Finder.

Languages: Swift icon
Screenshots:


-
[Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder.

Languages: Swift icon

-
[OpenInCode](https://github.com/sozercan/OpenInCode) - Finder toolbar app to open current folder in Visual Studio Code.

Languages: Objective-C icon
Screenshots:

-
[OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - Finder Toolbar app for macOS to open the current directory in Terminal, iTerm, Hyper or Alacritty.

Languages: Swift icon
Screenshots:


-
[Quick Look plugins](https://github.com/sindresorhus/quick-look-plugins) - List of useful Quick Look plugins for developers.

Languages: Objective-C icon C icon
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

Languages: Objective-C icon

-
[dupeGuru](https://github.com/arsenetar/dupeguru/) - dupeGuru is a tool to find duplicate files on your computer. It can scan using file names and file contents.

Languages: Objective-C icon
Website: https://dupeguru.voltaicideas.net/

-
[zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal.

Languages: Rust icon
Screenshots:

+- [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

+- [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

+- [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:

### 🎮 Games (11) -
[0 A.D.](https://svn.wildfiregames.com/public/ps/trunk/) - Real-time strategy game of ancient warfare

Languages: C++ icon
Website: https://play0ad.com
Screenshots:


-
[Battle for Wesnoth](https://github.com/wesnoth/wesnoth) - Turn-based tactical strategy game, featuring both single-player and online multiplayer combat.

Languages: C++ icon

-
[Boxer](https://github.com/alunbestor/Boxer) - The DOS game emulator that’s fit for your Mac.

Languages: C++ icon Objective-C icon

-
[Chess](https://opensource.apple.com/source/Chess/Chess-410.4.1/) - The chess app that comes with macOS.

Languages: objective-c
Website: https://www.apple.com/
Screenshots:

-
[Dolphin](https://github.com/dolphin-emu/dolphin) - Powerful emulator for Nintendo GameCube and Wii games.

Languages: C++ icon

-
[Dynamic Dark Mode](https://github.com/ApolloZhu/Dynamic-Dark-Mode) - Dynamic Dark Mode is the app you are looking for to power up Dark Mode on macOS Mojave and beyond.

Languages: Swift icon
Website: https://apollozhu.github.io/Dynamic-Dark-Mode/
Screenshots:

-
[OpenEmu](https://github.com/OpenEmu/OpenEmu) - Retro video game emulation for macOS.

Languages: Objective-C icon
Screenshots:

-
[OpenRCT2](https://github.com/OpenRCT2/OpenRCT2) - Re-implementation of RollerCoaster Tycoon 2.

Languages: C++ icon
Screenshots:

-
[Screentendo](https://github.com/AaronRandall/Screentendo) - Turn your screen into a playable level of Mario.

Languages: Objective-C icon
Screenshots:

-
[Stockfish](https://github.com/daylen/stockfish-mac) - Beautiful, powerful chess application.

Languages: C++ icon Objective-C icon

-
[Widelands](https://github.com/widelands/widelands) - Widelands is a free, open source real-time strategy game with singleplayer campaigns and a multiplayer mode. The game was inspired by Settlers II™ (© Bluebyte) but has significantly more variety and depth to it.

Languages: c++ Python icon Lua icon JavaScript icon
Website: https://www.widelands.org
Screenshots:

+- [0 A.D.](https://svn.wildfiregames.com/public/ps/trunk/) - Real-time strategy game of ancient warfare +
More

Languages: C++ icon
Website: https://play0ad.com
Screenshots:


+- [Battle for Wesnoth](https://github.com/wesnoth/wesnoth) - Turn-based tactical strategy game, featuring both single-player and online multiplayer combat. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+- [Boxer](https://github.com/alunbestor/Boxer) - The DOS game emulator that’s fit for your Mac. +
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Chess](https://opensource.apple.com/source/Chess/Chess-410.4.1/) - The chess app that comes with macOS. +
More

Languages: objective-c
Website: https://www.apple.com/
Screenshots:

+- [Dolphin](https://github.com/dolphin-emu/dolphin) - Powerful emulator for Nintendo GameCube and Wii games. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+- [Dynamic Dark Mode](https://github.com/ApolloZhu/Dynamic-Dark-Mode) - Dynamic Dark Mode is the app you are looking for to power up Dark Mode on macOS Mojave and beyond. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://apollozhu.github.io/Dynamic-Dark-Mode/
Screenshots:

+- [OpenEmu](https://github.com/OpenEmu/OpenEmu) - Retro video game emulation for macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [OpenRCT2](https://github.com/OpenRCT2/OpenRCT2) - Re-implementation of RollerCoaster Tycoon 2. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Screentendo](https://github.com/AaronRandall/Screentendo) - Turn your screen into a playable level of Mario. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Stockfish](https://github.com/daylen/stockfish-mac) - Beautiful, powerful chess application. +
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Widelands](https://github.com/widelands/widelands) - Widelands is a free, open source real-time strategy game with singleplayer campaigns and a multiplayer mode. The game was inspired by Settlers II™ (© Bluebyte) but has significantly more variety and depth to it. +
More

Languages: c++ Python icon Lua icon JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.widelands.org
Screenshots:

### 🎨 Graphics (15) -
[Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux).

Languages: C++ icon C icon

-
[Blender](https://projects.blender.org/) - Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline: modeling, rigging, animation, simulation, rendering, compositing, motion tracking, and video editing.

Languages: C icon C++ icon Python icon
Website: https://www.blender.org
Screenshots:



(3 more screenshots available in the repository)

-
[CaptuocrToy](https://github.com/sfragrance/CaptuocrToy) - Tool to capture screenshot and recognize text by online ocr apis.

Languages: Swift icon
Screenshots:

-
[ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease.

Languages: Swift icon C# icon Objective-C icon
Website: https://imazing.com/colorset
Screenshots:

-
[FreeCAD](https://github.com/FreeCAD/FreeCAD) - FreeCAD is an open-source 3D parametric modeler

Languages: c++ Python icon
Website: https://www.freecad.org/
Screenshots:

-
[Gaphor](https://github.com/gaphor/gaphor) - Gaphor is the simple modeling tool for UML and SysML.

Languages: Python icon
Website: https://gaphor.org

-
[GifCapture](https://github.com/onmyway133/GifCapture) - Gif capture app for macOS.

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

-
[Gifcurry](https://github.com/lettier/gifcurry) - Video to GIF maker with a graphical interface capable of cropping, adding text, seeking, and trimming.

Languages: Haskell icon
Screenshots:


-
[Gifski](https://github.com/sindresorhus/Gifski) - Convert videos to high-quality GIFs.

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

-
[InfiniteCanvas](https://github.com/CleanCocoa/InfiniteCanvas) - Proof of concept Mac drawing application.

Languages: Swift icon
Screenshots:

-
[Krita](https://invent.kde.org/graphics/krita) - Krita is a cross-platform application for creating digital art files from scratch like illustrations, concept art, matte painting, textures, comics and animations.

Languages: C++ icon Python icon C icon
Website: https://krita.org/en/
Screenshots:

-
[Material Colors Native](https://github.com/BafS/Material-Colors-native) - Choose your Material colours and copy the hex code.

Languages: Objective-C icon
Screenshots:

-
[Pencil2D Animation](https://github.com/pencil2d/pencil) - Pencil2D is an animation/drawing software for macOS, Windows, and Linux. It lets you create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics.

Languages: C++ icon

-
[ScreenToLayers for macOS](https://github.com/duyquoc/ScreenToLayers) - ScreenToLayers is a macOS application to easily capture your screen as a layered PSD file.

Languages: Objective-C icon CSS icon
Screenshots:

-
[macSVG](https://github.com/dsward2/macSVG) - macOS application for designing HTML5 SVG (Scalable Vector Graphics) art and animation with a WebKit web view.

Languages: Objective-C icon
Screenshots:

+- [Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux). +
More

Languages: C++ icon C icon
Links: Latest Release   GitHub stars   License

+- [Blender](https://projects.blender.org/) - Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline: modeling, rigging, animation, simulation, rendering, compositing, motion tracking, and video editing. +
More

Languages: C icon C++ icon Python icon
Website: https://www.blender.org
Screenshots:



(3 more screenshots available in the repository)

+- [CaptuocrToy](https://github.com/sfragrance/CaptuocrToy) - Tool to capture screenshot and recognize text by online ocr apis. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. +
More

Languages: Swift icon C# icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://imazing.com/colorset
Screenshots:

+- [FreeCAD](https://github.com/FreeCAD/FreeCAD) - FreeCAD is an open-source 3D parametric modeler +
More

Languages: c++ Python icon
Links: Latest Release   GitHub stars   License
Website: https://www.freecad.org/
Screenshots:

+- [Gaphor](https://github.com/gaphor/gaphor) - Gaphor is the simple modeling tool for UML and SysML. +
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Website: https://gaphor.org

+- [GifCapture](https://github.com/onmyway133/GifCapture) - Gif capture app for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+- [Gifcurry](https://github.com/lettier/gifcurry) - Video to GIF maker with a graphical interface capable of cropping, adding text, seeking, and trimming. +
More

Languages: Haskell icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Gifski](https://github.com/sindresorhus/Gifski) - Convert videos to high-quality GIFs. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+- [InfiniteCanvas](https://github.com/CleanCocoa/InfiniteCanvas) - Proof of concept Mac drawing application. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Krita](https://invent.kde.org/graphics/krita) - Krita is a cross-platform application for creating digital art files from scratch like illustrations, concept art, matte painting, textures, comics and animations. +
More

Languages: C++ icon Python icon C icon
Website: https://krita.org/en/
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:

### 💻 IDE (12) -
[Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more.

Languages: Java icon
Website: https://netbeans.apache.org/
Screenshots:


-
[Atom](https://github.com/atom/atom) - The hackable text editor.

Languages: JavaScript icon
Screenshots:


-
[AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS.

Languages: Swift icon
Website: https://auroraeditor.com
Screenshots:

-
[Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript.

Languages: JavaScript icon
Website: https://brackets.io/
Screenshots:

-
[CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever.

Languages: Swift icon
Website: https://www.codeedit.app/
Screenshots:

-
[Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.

Languages: C icon c++
Website: https://www.geany.org/
Screenshots:

-
[IntelliJ IDEA Community Edition](https://github.com/JetBrains/intellij-community) - IntelliJ IDEA is an integrated development environment written in Java for developing computer software

Languages: Java icon
Website: https://www.jetbrains.com/idea/
Screenshots:

-
[LiveCode](https://github.com/livecode/livecode) - Cross-platform development IDE.

Languages: C icon
Website: https://livecode.org/

-
[Oni](https://github.com/onivim/oni) - Oni is a modern take on modal editing code editor focused on developer productivity.

Languages: JavaScript icon TypeScript icon

-
[Vim](https://github.com/vim/vim) - ubiquitous text editor

Languages: C icon Vim script
Website: https://www.vim.org/
Screenshots:

-
[Visual Studio Code](https://github.com/Microsoft/vscode) - Code editor developed by Microsoft.

Languages: TypeScript icon
Screenshots:

-
[ZeroBraneStudio](https://github.com/pkulchenko/ZeroBraneStudio) - ZeroBrane Studio is a lightweight cross-platform Lua IDE with code completion, syntax highlighting, remote debugger, code analyzer, live coding, and debugging support for various Lua engines.

Languages: Lua icon
Screenshots:

+- [Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more. +
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://netbeans.apache.org/
Screenshots:


+- [Atom](https://github.com/atom/atom) - The hackable text editor. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://auroraeditor.com
Screenshots:

+- [Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://brackets.io/
Screenshots:

+- [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.codeedit.app/
Screenshots:

+- [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. +
More

Languages: C icon c++
Links: Latest Release   GitHub stars   License
Website: https://www.geany.org/
Screenshots:

+- [IntelliJ IDEA Community Edition](https://github.com/JetBrains/intellij-community) - IntelliJ IDEA is an integrated development environment written in Java for developing computer software +
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://www.jetbrains.com/idea/
Screenshots:

+- [LiveCode](https://github.com/livecode/livecode) - Cross-platform development IDE. +
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Website: https://livecode.org/

+- [Oni](https://github.com/onivim/oni) - Oni is a modern take on modal editing code editor focused on developer productivity. +
More

Languages: JavaScript icon TypeScript icon
Links: Latest Release   GitHub stars   License

+- [Vim](https://github.com/vim/vim) - ubiquitous text editor +
More

Languages: C icon Vim script
Links: Latest Release   GitHub stars   License
Website: https://www.vim.org/
Screenshots:

+- [Visual Studio Code](https://github.com/Microsoft/vscode) - Code editor developed by Microsoft. +
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [ZeroBraneStudio](https://github.com/pkulchenko/ZeroBraneStudio) - ZeroBrane Studio is a lightweight cross-platform Lua IDE with code completion, syntax highlighting, remote debugger, code analyzer, live coding, and debugging support for various Lua engines. +
More

Languages: Lua icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 🖼️ Images (17) -
[APNGb](https://github.com/shgodoroja/APNGb) - macOS app which assembles and disassembles animated png files.

Languages: Swift icon

-
[Crunch](https://github.com/chrissimpkins/Crunch) - Insane(ly slow but wicked good) PNG image optimization.

Languages: Python icon

-
[ExifCleaner](https://github.com/szTheory/exifcleaner) - Remove image metadata with drag and drop, multi-core batch processing, and dark mode.

Languages: JavaScript icon
Website: https://exifcleaner.com
Screenshots:



-
[Flameshot](https://github.com/flameshot-org/flameshot) - Powerful yet simple to use screenshot software.

Languages: C++ icon
Website: https://flameshot.org
Screenshots:

-
[Freehand](https://github.com/wddwycc/Freehand) - macOS Status Bar App for quick sketch.

Languages: Swift icon
Screenshots:

-
[Gimp](https://github.com/GNOME/gimp) - Gimp is GNU Image Manipulation Program.

Languages: C icon

-
[Iconology](https://github.com/liamrosenfeld/Iconology) - Edit icons and then export to Xcode, icns, ico, favicon, macOS iconset, or a custom collection.

Languages: Swift icon
Website: https://apps.apple.com/us/app/iconology/id1463452867
Screenshots:

-
[ImageAlpha](https://github.com/kornelski/ImageAlpha) - Mac GUI for pngquant, pngnq and posterizer.

Languages: Objective-C icon Python icon
Screenshots:

-
[Imagine](https://github.com/meowtec/Imagine) - Imagine is a desktop app for compression of PNG and JPEG, with a modern and friendly UI.

Languages: TypeScript icon

-
[InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software

Languages: Python icon
Screenshots:



-
[Inkscape](https://gitlab.com/inkscape/inkscape) - Inkscape is a Free and open source vector graphics editor.

Languages: c++
Website: https://inkscape.org/
Screenshots:

-
[Katana](https://github.com/bluegill/katana) - Katana is a simple screenshot utility for macOS that lives in your menubar.

Languages: JavaScript icon CSS icon

-
[Krita](https://invent.kde.org/graphics/krita) - Krita is a cross-platform application for creating digital art files from scratch like illustrations, concept art, matte painting, textures, comics and animations.

Languages: C++ icon Python icon C icon
Website: https://krita.org/en/
Screenshots:

-
[PhotoMiner](https://github.com/gergelysanta/photominer) - macOS app for finding and lost forgotten photos on your disks.

Languages: Swift icon
Screenshots:



(3 more screenshots available in the repository)

-
[Screenbar](https://github.com/crilleengvall/Screenbar) - macOS menubar app for automating screenshots.

Languages: Swift icon
Screenshots:

-
[Seashore](https://github.com/robaho/seashore) - Easy to use macOS image editing application for the rest of us.

Languages: Objective-C icon
Screenshots:

-
[WebPonize](https://github.com/1000ch/WebPonize) - WebPonize is a macOS App for converting PNG, JPEG, animated (or not) GIF images into WebP.

Languages: Swift icon C icon

+- [APNGb](https://github.com/shgodoroja/APNGb) - macOS app which assembles and disassembles animated png files. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Crunch](https://github.com/chrissimpkins/Crunch) - Insane(ly slow but wicked good) PNG image optimization. +
More

Languages: Python icon
Links: Latest Release   GitHub stars   License

+- [ExifCleaner](https://github.com/szTheory/exifcleaner) - Remove image metadata with drag and drop, multi-core batch processing, and dark mode. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://exifcleaner.com
Screenshots:



+- [Flameshot](https://github.com/flameshot-org/flameshot) - Powerful yet simple to use screenshot software. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://flameshot.org
Screenshots:

+- [Freehand](https://github.com/wddwycc/Freehand) - macOS Status Bar App for quick sketch. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Gimp](https://github.com/GNOME/gimp) - Gimp is GNU Image Manipulation Program. +
More

Languages: C icon
Links: Latest Release   GitHub stars   License

+- [Iconology](https://github.com/liamrosenfeld/Iconology) - Edit icons and then export to Xcode, icns, ico, favicon, macOS iconset, or a custom collection. +
More

Languages: Swift icon
Links: App Store App Store   Latest Release   GitHub stars   License
Website: https://apps.apple.com/us/app/iconology/id1463452867
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:

+- [Katana](https://github.com/bluegill/katana) - Katana is a simple screenshot utility for macOS that lives in your menubar. +
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+- [Krita](https://invent.kde.org/graphics/krita) - Krita is a cross-platform application for creating digital art files from scratch like illustrations, concept art, matte painting, textures, comics and animations. +
More

Languages: C++ icon Python icon C icon
Website: https://krita.org/en/
Screenshots:

+- [PhotoMiner](https://github.com/gergelysanta/photominer) - macOS app for finding and lost forgotten photos on your disks. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(3 more screenshots available in the repository)

+- [Screenbar](https://github.com/crilleengvall/Screenbar) - macOS menubar app for automating screenshots. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Seashore](https://github.com/robaho/seashore) - Easy to use macOS image editing application for the rest of us. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [WebPonize](https://github.com/1000ch/WebPonize) - WebPonize is a macOS App for converting PNG, JPEG, animated (or not) GIF images into WebP. +
More

Languages: Swift icon C icon
Links: Latest Release   GitHub stars   License

### ⌨️ Keyboard (9) -
[AnnePro-mac](https://github.com/msvisser/AnnePro-mac) - macOS application for controlling AnnePro keyboard over bluetooth.

Languages: Swift icon

-
[Fluor](https://github.com/Pyroh/Fluor) - Handy tool for macOS allowing you to switch Fn keys' mode based on active application.

Languages: Swift icon

-
[GokuRakuJoudo](https://github.com/yqrashawn/GokuRakuJoudo) - Karabiner-Elements configuration manager, rescue to bloated karabiner.json

Languages: Clojure icon

-
[Karabiner](https://github.com/tekezo/Karabiner) - Karabiner (KeyRemap4MacBook) is a powerful utility for keyboard customization.

Languages: C++ icon Objective-C icon

-
[Karabiner-Elements](https://github.com/pqrs-org/Karabiner-Elements) - Karabiner-Elements is a powerful utility for keyboard customization on macOS Sierra (10.12) or later.

Languages: C++ icon Objective-C icon

-
[Kawa](https://github.com/hatashiro/kawa) - Better input source switcher for macOS.

Languages: Swift icon
Screenshots:


-
[Keycastr](https://github.com/keycastr/keycastr) - Keystroke visualizer.

Languages: Objective-C
Screenshots:

-
[Thor](https://github.com/gbammc/Thor) - Switch the right application ASAP.

Languages: Swift icon
Screenshots:


-
[Unshaky](https://github.com/aahung/Unshaky) - A software attempt to address the "double key press" issue on Apple's butterfly keyboard

Languages: Swift icon
Website: https://unshaky.nestederror.com/
Screenshots:


+- [AnnePro-mac](https://github.com/msvisser/AnnePro-mac) - macOS application for controlling AnnePro keyboard over bluetooth. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Fluor](https://github.com/Pyroh/Fluor) - Handy tool for macOS allowing you to switch Fn keys' mode based on active application. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [GokuRakuJoudo](https://github.com/yqrashawn/GokuRakuJoudo) - Karabiner-Elements configuration manager, rescue to bloated karabiner.json +
More

Languages: Clojure icon
Links: Latest Release   GitHub stars   License

+- [Karabiner](https://github.com/tekezo/Karabiner) - Karabiner (KeyRemap4MacBook) is a powerful utility for keyboard customization. +
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Karabiner-Elements](https://github.com/pqrs-org/Karabiner-Elements) - Karabiner-Elements is a powerful utility for keyboard customization on macOS Sierra (10.12) or later. +
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Kawa](https://github.com/hatashiro/kawa) - Better input source switcher for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Keycastr](https://github.com/keycastr/keycastr) - Keystroke visualizer. +
More

Languages: Objective-C
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Thor](https://github.com/gbammc/Thor) - Switch the right application ASAP. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Unshaky](https://github.com/aahung/Unshaky) - A software attempt to address the "double key press" issue on Apple's butterfly keyboard +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://unshaky.nestederror.com/
Screenshots:


### 📧 Mail (7) -
[Correo](https://github.com/amitmerchant1990/correo) - Menubar/taskbar Gmail App for Windows and macOS.

Languages: JavaScript icon

-
[ElectronMail](https://github.com/vladimiry/ElectronMail) - Unofficial desktop app for ProtonMail and Tutanota end-to-end encrypted email providers.

Languages: TypeScript icon
Screenshots:


-
[Mailspring](https://github.com/Foundry376/Mailspring) - 💌 A beautiful, fast and maintained fork of @nylas Mail by one of the original authors

Languages: JavaScript icon
Website: https://getmailspring.com/

-
[Rambox](https://github.com/ramboxapp/community-edition) - Cross Platform messaging and emailing app that combines common web applications into one.

Languages: JavaScript icon CSS icon

-
[SimpleLogin](https://github.com/simple-login/mac-app) - Email Alias solution: protect your real email address.

Languages: Swift icon

-
[Thunderbird](https://hg.mozilla.org/mozilla-central) - Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client.

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.

Languages: C++ icon Objective-C icon
Screenshots:

+- [Correo](https://github.com/amitmerchant1990/correo) - Menubar/taskbar Gmail App for Windows and macOS. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [ElectronMail](https://github.com/vladimiry/ElectronMail) - Unofficial desktop app for ProtonMail and Tutanota end-to-end encrypted email providers. +
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Mailspring](https://github.com/Foundry376/Mailspring) - 💌 A beautiful, fast and maintained fork of @nylas Mail by one of the original authors +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://getmailspring.com/

+- [Rambox](https://github.com/ramboxapp/community-edition) - Cross Platform messaging and emailing app that combines common web applications into one. +
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+- [SimpleLogin](https://github.com/simple-login/mac-app) - Email Alias solution: protect your real email address. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Thunderbird](https://hg.mozilla.org/mozilla-central) - Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client. +
More

Languages: C++ icon JavaScript icon Rust icon
Website: https://www.thunderbird.net/en-US/
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:

### 📦 Medical (1) -
[InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software

Languages: Python icon
Screenshots:



+- [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software +
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Screenshots:



### 📊 Menubar (39) -
[Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks.

Languages: JavaScript icon

-
[Akku](https://github.com/jariz/Akku) - The missing macOS bluetooth headset battery indicator app.

Languages: Swift icon Python icon Ruby icon
Screenshots:

-
[AnyBar](https://github.com/tonsky/AnyBar) - macOS menubar status indicator.

Languages: Objective-C icon

-
[BarTranslate](https://github.com/ThijmenDam/BarTranslate) - A handy menu bar translator app that supports DeepL and Google Translate.

Languages: TypeScript icon
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.

Languages: Objective-C icon
Screenshots:

-
[DatWeatherDoe](https://github.com/inderdhir/DatWeatherDoe) - Simple menu bar weather app for macOS written in Swift.

Languages: Swift icon

-
[DisplayMenu](https://github.com/Kwpolska/DisplayMenu) - Simple (bare-bones) macOS menubar extra to apply display presets.

Languages: Swift icon

-
[Dozer](https://github.com/Mortennn/Dozer) - Hide MacOS menubar items.

Languages: Swift icon
Screenshots:

-
[Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Manage grayscale mode from menu bar.

Languages: Swift icon
Screenshots:


-
[Hidden Bar](https://github.com/dwarvesf/hidden) - An ultra-light MacOS utility that helps hide menu bar icons

Languages: Swift icon
Screenshots:

-
[Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar.

Languages: Objective-C icon
Website: https://www.mowglii.com/itsycal/
Screenshots:

-
[KubeContext](https://github.com/turkenh/KubeContext) - import, manage and switch between your Kubernetes contexts on Mac.

Languages: Swift icon
Screenshots:


-
[LinkLiar](https://github.com/halo/LinkLiar) - Keep your MAC address random for privacy (intuitive GUI for ifconfig)

Languages: Swift icon
Website: https://halo.github.io/LinkLiar/
Screenshots:

-
[Market Bar](https://github.com/mnndnl/market-bar ) - Tiny stocks watcher for the menu bar.

Languages: Swift icon

-
[MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings

Languages: Swift icon
Screenshots:

-
[MenuMeters](https://github.com/yujitach/MenuMeters) - CPU, memory, disk, and network monitoring tools for macOS.

Languages: Objective-C icon

-
[Menubar Brightness](https://github.com/lucasbento/menubar-brightness) - macOS app to change the screen brightness on the menubar.

Languages: JavaScript icon

-
[MiniSim](https://github.com/okwasniewski/MiniSim) - MacOS menu bar app for launching iOS  and Android 🤖 emulators.

Languages: Swift icon
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.

Languages: Swift icon

-
[Night Shift Control](https://github.com/isaiasmatewos/night-shift-control) - Night Shift Control is a simple macOS menubar app for controlling Night Shift. It's aim is to bring features from f.lux which are missing from Night Shift such as disabling Night Shift for certain apps.

Languages: Swift icon
Screenshots:

-
[Nocturnal](https://github.com/joshjon/nocturnal) - Menu bar app featuring darker than dark dimming, Night Shift fine tuning, and the ability to turn off TouchBar on MacBook Pro.

Languages: Swift icon
Screenshots:

-
[NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar.

Languages: Swift icon

-
[PSIBar](https://github.com/nikhilsh/PSIBar) - Quickly hacked up PSI macOS status bar app.

Languages: Swift icon

-
[Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene.

Languages: Swift icon
Website: https://paretosecurity.com/
Screenshots:

-
[Pi Stats](https://github.com/Bunn/PiStats) - macOS app to visualize Pi-hole information.

Languages: Swift icon Objective-C icon
Screenshots:

-
[Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS.

Languages: Swift icon metal
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.

Languages: Swift icon
Screenshots:

-
[Quickeys](https://github.com/alexrosenfeld10/Quickeys) - A mac menu bar app that provides note taking functionality though a quick dropdown menu.

Languages: Swift icon
Screenshots:

-
[SensibleSideButtons](https://github.com/archagon/sensible-side-buttons) - Small menu bar utility that lets you use your third-party mouse's side buttons for navigation across a variety of apps.

Languages: Objective-C icon C icon

-
[Shifty](https://github.com/thompsonate/Shifty) - macOS menu bar app that gives you more control over Night Shift.

Languages: Swift icon
Screenshots:

-
[SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs.

Languages: Swift icon
Screenshots:


-
[Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar

Languages: Swift icon
Screenshots:

-
[SwiftBar](https://github.com/swiftbar/SwiftBar) - Powerful macOS menu bar customization tool.

Languages: Swift icon
Website: https://swiftbar.app

-
[TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording.

Languages: CSS icon JavaScript icon TypeScript icon
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.

Languages: Objective-C icon
Screenshots:

-
[eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI.

Languages: Swift icon
Screenshots:

-
[gSwitch](https://github.com/CodySchrank/gSwitch) - macOS status bar app that allows control over the gpu on dual gpu macbooks.

Languages: Swift icon

-
[iGlance](https://github.com/iglance/iGlance) - macOS System Monitor (cpu, memory, network, fan and battery) for the Status Bar.

Languages: Swift icon

-
[xbar](https://github.com/matryer/xbar) - Put the output from any script or program into your macOS Menu Bar.

Languages: Objective-C icon

+- [Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [Akku](https://github.com/jariz/Akku) - The missing macOS bluetooth headset battery indicator app. +
More

Languages: Swift icon Python icon Ruby icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [AnyBar](https://github.com/tonsky/AnyBar) - macOS menubar status indicator. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [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. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [DatWeatherDoe](https://github.com/inderdhir/DatWeatherDoe) - Simple menu bar weather app for macOS written in Swift. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [DisplayMenu](https://github.com/Kwpolska/DisplayMenu) - Simple (bare-bones) macOS menubar extra to apply display presets. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Dozer](https://github.com/Mortennn/Dozer) - Hide MacOS menubar items. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [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:


+- [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:

+- [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. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [LinkLiar](https://github.com/halo/LinkLiar) - Keep your MAC address random for privacy (intuitive GUI for ifconfig) +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://halo.github.io/LinkLiar/
Screenshots:

+- [Market Bar](https://github.com/mnndnl/market-bar ) - Tiny stocks watcher for the menu bar. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [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

+- [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. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Night Shift Control](https://github.com/isaiasmatewos/night-shift-control) - Night Shift Control is a simple macOS menubar app for controlling Night Shift. It's aim is to bring features from f.lux which are missing from Night Shift such as disabling Night Shift for certain apps. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Nocturnal](https://github.com/joshjon/nocturnal) - Menu bar app featuring darker than dark dimming, Night Shift fine tuning, and the ability to turn off TouchBar on MacBook Pro. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [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. +
More

Languages: Swift icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. +
More

Languages: Swift icon metal
Links: Latest Release   GitHub stars   License
Website: https://superhighfives.com/pika
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:

+- [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. +
More

Languages: Objective-C icon C icon
Links: Latest Release   GitHub stars   License

+- [Shifty](https://github.com/thompsonate/Shifty) - macOS menu bar app that gives you more control over Night Shift. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [SwiftBar](https://github.com/swiftbar/SwiftBar) - Powerful macOS menu bar customization tool. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://swiftbar.app

+- [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

### 🎧 Music (15) -
[Carol](https://github.com/AnaghSharma/Carol) - A minimal and beautiful lyrics app that stays in the menu bar of macOS.

Languages: C# icon

-
[ChordDetector](https://github.com/cemolcay/ChordDetector) - Tiny menu bar app that listens iTunes and Spotify to detect chords of songs!

Languages: Swift icon

-
[DeezPlayer](https://github.com/imanel/deezplayer) - Deezer Desktop app for Windows, Linux and macOS.

Languages: CoffeeScript icon

-
[Karaoke Forever](https://github.com/bhj/KaraokeEternal) - Host awesome karaoke parties where everyone can queue songs from their phone's browser. Plays MP3+G and MP4 with WebGL visualizations.

Languages: JavaScript icon
Website: https://www.karaoke-eternal.com/
Screenshots:

-
[Lilypond UI](https://github.com/doches/lilypond-ui) - Create beautiful musical scores with LilyPond.

Languages: JavaScript icon
Screenshots:

-
[MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player.

Languages: C icon
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.

Languages: Swift icon

-
[PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar.

Languages: Swift icon
Screenshots:

-
[Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine.

Languages: Swift icon
Website: https://www.plugformac.com/
Screenshots:

-
[SoundCleod](https://github.com/salomvary/soundcleod) - SoundCloud for macOS and Windows.

Languages: JavaScript icon
Screenshots:


-
[Spotify-Cli-Mac](https://github.com/ersel/spotify-cli-mac) - Control Spotify without leaving your terminal. :notes:

Languages: JavaScript icon
Screenshots:

-
[YouTube-Music](https://github.com/steve228uk/YouTube-Music) - macOS wrapper for music.youtube.com.

Languages: Swift icon
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.

Languages: Swift icon
Screenshots:


-
[lyricsify](https://github.com/mamal72/lyricsify-mac) - Simple Spotify lyrics viewer menu bar app for macOS in Swift.

Languages: Swift icon
Screenshots:


-
[spicetify-cli](https://github.com/spicetify/spicetify-cli) - Command-line tool to customize the official Spotify client. Supports Windows, MacOS and Linux.

Languages: JavaScript icon
Website: https://spicetify.app/
Screenshots:

+- [Carol](https://github.com/AnaghSharma/Carol) - A minimal and beautiful lyrics app that stays in the menu bar of macOS. +
More

Languages: C# icon
Links: Latest Release   GitHub stars   License

+- [ChordDetector](https://github.com/cemolcay/ChordDetector) - Tiny menu bar app that listens iTunes and Spotify to detect chords of songs! +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [DeezPlayer](https://github.com/imanel/deezplayer) - Deezer Desktop app for Windows, Linux and macOS. +
More

Languages: CoffeeScript icon
Links: Latest Release   GitHub stars   License

+- [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:

+- [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. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.plugformac.com/
Screenshots:

+- [SoundCleod](https://github.com/salomvary/soundcleod) - SoundCloud for macOS and Windows. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
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:

### 📰 News (6) -
[Diurna](https://github.com/ngquerol/Diurna) - Basic/Classic Hacker News app, used as a Cocoa & Swift learning platform.

Languages: Swift icon
Screenshots:

-
[NetNewsWire](https://github.com/Ranchero-Software/NetNewsWire) - Feed reader for macOS.

Languages: Swift icon

-
[Vienna](https://github.com/ViennaRSS/vienna-rss) - Vienna is a RSS/Atom newsreader for macOS.

Languages: Objective-C icon

-
[Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io

Languages: JavaScript icon
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.

Languages: Objective-C icon
Screenshots:

-
[hacker-menu](https://github.com/owenthereal/hacker-menu) - Hacker News Delivered to Desktop.

Languages: JavaScript icon
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:

+- [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:

### 📔 Notes (16) -
[Boostnote](https://github.com/BoostIO/BoostNote-Legacy) - Note-taking application made for programmers just like you.

Languages: JavaScript icon
Screenshots:

-
[Dnote](https://github.com/dnote/dnote) - A simple command line notebook with multi-device sync and web interface.

Languages: Go icon TypeScript icon
Website: https://www.getdnote.com/
Screenshots:

-
[FSNotes](https://github.com/glushchenko/fsnotes) - Notes manager for macOS/iOS: modern notational velocity (nvALT) on steroids.

Languages: Swift icon
Screenshots:


-
[FromScratch](https://github.com/Kilian/fromscratch) - Little app that you can use as a quick note taking or todo app.

Languages: JavaScript icon CSS icon

-
[Jupyter Notebook Viewer](https://github.com/tuxu/nbviewer-app) - Notebook viewer for macOS.

Languages: Swift icon

-
[NoteTaker](https://github.com/insidegui/NoteTaker) - Simple note taking app for macOS and iOS which uses Realm and CloudKit for syncing.

Languages: Swift icon
Screenshots:

-
[Notenik](https://github.com/hbowie/notenik-swift) - Note-taking app with many organizational options.

Languages: Swift icon
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.

Languages: Swift icon

-
[QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration.

Languages: C++ icon
Website: https://www.qownnotes.org/
Screenshots:

-
[Simplenote](https://github.com/Automattic/simplenote-macos) - Simplest way to keep notes.

Languages: Objective-C icon
Screenshots:

-
[Standard Notes](https://github.com/standardnotes/app) - Safe place for your notes, thoughts, and life's work.

Languages: JavaScript icon CSS icon

-
[Tusk](https://github.com/klaudiosinani/tusk) - Unofficial, third-party, community driven Evernote app with a handful of useful features.

Languages: JavaScript icon CSS icon

-
[joplin](https://github.com/laurent22/joplin) - Note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS.

Languages: JavaScript icon

-
[linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis.

Languages: JavaScript icon vue CSS icon
Website: https://uselinked.com
Screenshots:


-
[notable](https://github.com/jmcfarlane/notable) - Simple note taking application.

Languages: JavaScript icon
Screenshots:



(4 more screenshots available in the repository)

-
[tmpNote](https://github.com/buddax2/tmpNote) - Very simple macOS app to make temporary notes.

Languages: Swift icon
Screenshots:

+- [Boostnote](https://github.com/BoostIO/BoostNote-Legacy) - Note-taking application made for programmers just like you. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Dnote](https://github.com/dnote/dnote) - A simple command line notebook with multi-device sync and web interface. +
More

Languages: Go icon TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.getdnote.com/
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

+- [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:

+- [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

+- [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:

### 📦 Other (22) -
[Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware.

Languages: JavaScript icon
Website: https://betaflight.com/
Screenshots:

-
[Cakebrew](https://github.com/brunophilipe/Cakebrew) - Manage your Homebrew formulas with style using Cakebrew.

Languages: Objective-C icon
Screenshots:

-
[ChipMunk](https://github.com/esrlabs/chipmunk) - Log analysis tool.

Languages: TypeScript icon Rust icon
Screenshots:

-
[DevDocs for macOS](https://github.com/dteoh/devdocs-macos) - An unofficial DevDocs API documentation viewer.

Languages: Swift icon
Screenshots:

-
[Gas Mask](https://github.com/2ndalpha/gasmask) - Hosts file manager for macOS.

Languages: Objective-C icon

-
[Hosts](https://github.com/specialunderwear/Hosts.prefpane) - Cocoa GUI for /etc/hosts.

Languages: Objective-C icon

-
[ImageOptim](https://github.com/ImageOptim/ImageOptim) - GUI image optimizer for Mac.

Languages: Objective-C icon

-
[Keyframes Player](https://github.com/insidegui/KeyframesPlayer) - Simple macOS app to preview animations created with Facebook's keyframes framework.

Languages: Swift icon
Screenshots:

-
[Lepton](https://github.com/hackjutsu/Lepton) - Democratizing Code Snippets Management (macOS/Win/Linux).

Languages: JavaScript icon

-
[Letters](https://github.com/klaaspieter/letters) - Teach your kids the alphabet and how to type.

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

-
[Platypus](https://github.com/sveinbjornt/Platypus) - Mac developer tool that creates application bundles from command line scripts.

Languages: Objective-C icon

-
[QorumLogs](https://github.com/Esqarrouth/QorumLogs) - Swift Logging Utility for Xcode & Google Docs.

Languages: Swift icon

-
[React Native Debugger](https://github.com/jhen0409/react-native-debugger) - Desktop app for inspecting your React Native projects. macOS, Linux, and Windows.

Languages: JavaScript icon
Screenshots:

-
[Reactotron](https://github.com/infinitered/reactotron) - Desktop app for inspecting your React JS and React Native projects. macOS, Linux, and Windows.

Languages: JavaScript icon

-
[RktMachine](https://github.com/woofwoofinc/rktmachine) - Menu bar macOS app for running rkt in a macOS hypervisor CoreOS VM.

Languages: Swift icon
Screenshots:


-
[Ruby.app](https://github.com/gosu/ruby-app) - macOS app that contains a full Ruby installation (for use with Ruby/Gosu).

Languages: Ruby icon

-
[Shuttle](https://github.com/fitztrev/shuttle) - Simple SSH shortcut menu for macOS.

Languages: Objective-C icon
Screenshots:

-
[SwiftyBeaver](https://github.com/SwiftyBeaver/SwiftyBeaver) - Convenient logging during development & release in Swift.

Languages: Swift icon

-
[Unused](https://github.com/jeffhodnett/Unused) - Mac app for checking Xcode projects for unused resources.

Languages: Objective-C icon

-
[Vagrant Manager](https://github.com/lanayotech/vagrant-manager) - Manage your vagrant machines in one place with Vagrant Manager for macOS.

Languages: Objective-C icon
Screenshots:

-
[macGist](https://github.com/Bunn/macGist) - Simple app to send pasteboard items to GitHub's Gist.

Languages: Swift icon

-
[syncthing-macosx](https://github.com/syncthing/syncthing-macos) - Frugal nativemacOS macOS Syncthing application bundle.

Languages: Objective-C icon
Screenshots:

+- [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://betaflight.com/
Screenshots:

+- [Cakebrew](https://github.com/brunophilipe/Cakebrew) - Manage your Homebrew formulas with style using Cakebrew. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [ChipMunk](https://github.com/esrlabs/chipmunk) - Log analysis tool. +
More

Languages: TypeScript icon Rust icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [DevDocs for macOS](https://github.com/dteoh/devdocs-macos) - An unofficial DevDocs API documentation viewer. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Gas Mask](https://github.com/2ndalpha/gasmask) - Hosts file manager for macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Hosts](https://github.com/specialunderwear/Hosts.prefpane) - Cocoa GUI for /etc/hosts. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [ImageOptim](https://github.com/ImageOptim/ImageOptim) - GUI image optimizer for Mac. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Keyframes Player](https://github.com/insidegui/KeyframesPlayer) - Simple macOS app to preview animations created with Facebook's keyframes framework. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Lepton](https://github.com/hackjutsu/Lepton) - Democratizing Code Snippets Management (macOS/Win/Linux). +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [Letters](https://github.com/klaaspieter/letters) - Teach your kids the alphabet and how to type. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+- [Platypus](https://github.com/sveinbjornt/Platypus) - Mac developer tool that creates application bundles from command line scripts. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [QorumLogs](https://github.com/Esqarrouth/QorumLogs) - Swift Logging Utility for Xcode & Google Docs. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [React Native Debugger](https://github.com/jhen0409/react-native-debugger) - Desktop app for inspecting your React Native projects. macOS, Linux, and Windows. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Reactotron](https://github.com/infinitered/reactotron) - Desktop app for inspecting your React JS and React Native projects. macOS, Linux, and Windows. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [RktMachine](https://github.com/woofwoofinc/rktmachine) - Menu bar macOS app for running rkt in a macOS hypervisor CoreOS VM. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Ruby.app](https://github.com/gosu/ruby-app) - macOS app that contains a full Ruby installation (for use with Ruby/Gosu). +
More

Languages: Ruby icon
Links: Latest Release   GitHub stars   License

+- [Shuttle](https://github.com/fitztrev/shuttle) - Simple SSH shortcut menu for macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [SwiftyBeaver](https://github.com/SwiftyBeaver/SwiftyBeaver) - Convenient logging during development & release in Swift. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [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:

### 📦 Player (6) -
[IINA](https://github.com/iina/iina) - The modern video player for macOS.

Languages: Swift icon
Website: https://iina.io

-
[MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player.

Languages: C icon
Website: https://mpv.io
Screenshots:

-
[MPlayerX](https://github.com/niltsh/MPlayerX) - Media player on macOS.

Languages: Objective-C icon

-
[MacMorpheus](https://github.com/emoRaivis/MacMorpheus) - 3D 180/360 video player for macOS for PSVR with head tracking.

Languages: Objective-C icon
Screenshots:

-
[Movie Monad](https://github.com/lettier/movie-monad) - Desktop video player built with Haskell that uses GStreamer and GTK+.

Languages: Haskell icon
Screenshots:


-
[Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine.

Languages: Swift icon
Website: https://www.plugformac.com/
Screenshots:

+- [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:


+- [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:

### 📦 Podcast (7) -
[Cumulonimbus](https://github.com/z-------------/CPod) - Simple, beautiful podcast app.

Languages: JavaScript icon
Screenshots:

-
[Doughnut](https://github.com/dyerc/Doughnut) - Podcast player and library for mac

Languages: Swift icon
Screenshots:

-
[PodcastMenu](https://github.com/insidegui/PodcastMenu) - PodcastMenu is a simple app which puts [Overcast](https://overcast.fm/) on your Mac's menu bar so you can listen to your favorite podcasts while you work.

Languages: Swift icon

-
[Podlive for macOS](https://github.com/Podlive/podlive-macos) - macOS client to listen to live streaming podcasts (only). It currently supports all livestreams broadcasting via Ultraschall with [Studio Link On Air](https://studio-link.de).

Languages: Objective-C icon
Screenshots:

-
[Winds](https://github.com/GetStream/Winds) - A Beautiful Open Source RSS & Podcast App Powered by Getstream.io

Languages: JavaScript icon
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.

Languages: Python icon
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.

Languages: Python icon

+- [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:

+- [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

### ⏱️ Productivity (55) -
[Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app.

Languages: JavaScript icon CSS icon

-
[Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar.

Languages: Swift icon

-
[Cerebro](https://github.com/cerebroapp/cerebro) - Cross-platform launcher app.

Languages: JavaScript icon

-
[ClipMenu](https://github.com/naotaka/ClipMenu) - Clipboard manager for macOS.

Languages: Objective-C icon
Screenshots:

-
[Clocker](https://github.com/n0shake/Clocker) - macOS app to plan and organize through timezones.

Languages: Objective-C icon

-
[Condution](https://github.com/Shabang-Systems/Condution) - Create tasks, manage due dates, and filter with powerful perspectives.

Languages: JavaScript icon
Website: https://www.condution.com
Screenshots:

-
[ControlPlane](https://github.com/dustinrue/ControlPlane) - Automate running tasks based on where you are or what you do.

Languages: Objective-C icon

-
[DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator...

Languages: Swift icon
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.

Languages: JavaScript icon
Screenshots:


-
[Flycut](https://github.com/TermiT/flycut) - Clean and simple clipboard manager for developers.

Languages: Objective-C icon

-
[Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar.

Languages: Objective-C icon
Website: https://www.mowglii.com/itsycal/
Screenshots:

-
[KeyHolder](https://github.com/Clipy/KeyHolder) - Record shortcuts in macOS, like Alfred.app.

Languages: Swift icon

-
[Kiwix](https://github.com/kiwix/apple) - Kiwix for iOS and macOS, build on Swift.

Languages: Swift icon

-
[Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView.

Languages: Swift icon
Website: https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12
Screenshots:

-
[Linked Ideas](https://github.com/fespinoza/LinkedIdeas) - macOS application to write down and connect ideas.

Languages: Swift icon
Screenshots:

-
[Mac Screenshot Tracker](https://github.com/instance01/mac-screenshot-tracker) - An open source, free and hackable screenshot tracker. Re-watch what you've been working on!

Languages: Python icon
Screenshots:


-
[Maccy](https://github.com/p0deje/Maccy) - Lightweight search-as-you-type clipboard manager.

Languages: Swift icon
Screenshots:

-
[Manta](https://github.com/hql287/Manta) - Flexible invoicing desktop app with beautiful & customizable templates.

Languages: JavaScript icon

-
[MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings

Languages: Swift icon
Screenshots:

-
[Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse

Languages: C icon
Screenshots:

-
[PDF Archiver](https://github.com/PDF-Archiver/PDF-Archiver) - Nice tool for tagging and archiving tasks.

Languages: Swift icon

-
[Paperless Desktop](https://github.com/thomasbrueggemann/paperless-desktop) - Desktop app that uses the paperless API to manage your document scans.

Languages: JavaScript icon
Screenshots:


-
[Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium.

Languages: JavaScript icon
Screenshots:



(1 more screenshots available in the repository)

-
[Pomodoro Cycle](https://github.com/ziulev/pomodoro-cycle-app) - Pomodoro Cycle for macOS

Languages: TypeScript icon
Website: https://github.com/ziulev/pomodoro-cycle-app/releases
Screenshots:

-
[QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration.

Languages: C++ icon
Website: https://www.qownnotes.org/
Screenshots:

-
[Quicksilver](https://github.com/quicksilver/Quicksilver) - Quicksilver is a fast macOS productivity application that gives you the power to control your Mac quickly and elegantly.

Languages: Objective-C icon

-
[Quickwords](https://github.com/quickwords/quickwords) - Write anything in a matter of seconds. Create snippets that can substitute text, execute tedious tasks and more.

Languages: JavaScript icon CSS icon
Screenshots:

-
[SelfControl](https://github.com/SelfControlApp/selfcontrol) - macOS app to block your own access to distracting websites etc for a predetermined period of time. It can not be undone by the app or by a restart – you must wait for the timer to run out.

Languages: Objective-C icon

-
[Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions

Languages: Swift icon
Screenshots:

-
[Speed Reader](https://github.com/LumingYin/SpeedReader) - Read faster with the power of silencing vocalization with SpeedReader.

Languages: Swift icon
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.

Languages: TypeScript icon Swift icon

-
[StickyNotes](https://github.com/LumingYin/StickyNotes) - A Windows 10-esque Sticky Notes app implemented in AppKit.

Languages: Swift icon
Website: https://github.com/LumingYin/StickyNotes/releases
Screenshots:

-
[Strategr](https://github.com/khrykin/StrategrDesktop) - No-fuss time management.

Languages: C++ icon Objective-C icon
Website: https://khrykin.github.io/StrategrDesktop/
Screenshots:


-
[Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration.

Languages: TypeScript icon JavaScript icon
Website: https://super-productivity.com
Screenshots:

-
[ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then'

Languages: Swift icon
Screenshots:

-
[Thyme](https://github.com/joaomoreno/thyme) - The task timer for OS X.

Languages: Objective-C icon

-
[Time to Leave](https://github.com/thamara/time-to-leave) - Log work hours and get notified when it's time to leave the office and start to live.

Languages: JavaScript icon CSS icon html
Website: https://timetoleave.app/
Screenshots:


-
[TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording.

Languages: CSS icon JavaScript icon TypeScript icon
Website: https://timescribe.app
Screenshots:



(2 more screenshots available in the repository)

-
[Timer](https://github.com/michaelvillar/timer-app) - Simple Timer app for Mac.

Languages: Swift icon
Screenshots:


-
[Toggl Desktop](https://github.com/toggl-open-source/toggldesktop) - Toggl Desktop app for Windows, Mac and Linux.

Languages: C++ icon

-
[TomatoBar](https://github.com/ivoronin/TomatoBar) - Pomodoro Technique Timer for macOS with Touch Bar support.

Languages: Swift icon

-
[TrelloApp](https://github.com/jlong/TrelloApp) - Unofficial wrapper application for Trello.com written in Swift. This is almost a "Hello World" for a site specific browser.

Languages: Swift icon

-
[Ueli](https://github.com/oliverschwendener/ueli) - A keystroke launcher for macOS (and Windows) like Spotlight or Alfred.

Languages: TypeScript icon
Website: https://ueli.app/
Screenshots:

-
[Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari

Languages: Swift icon
Screenshots:

-
[Watson](https://github.com/TailorDev/Watson) - A CLI application for time tracking.

Languages: Python icon
Screenshots:


-
[Whale](https://github.com/1000ch/whale) - Unofficial Trello app.

Languages: JavaScript icon
Screenshots:

-
[Yomu](https://github.com/sendyhalim/Yomu) - Manga reader app for macOS.

Languages: Swift icon

-
[espanso](https://github.com/espanso/espanso) - Cross-platform Text Expander, a powerful replacement for Alfred Snippets

Languages: Rust icon
Website: https://espanso.org
Screenshots:

-
[far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2

Languages: C icon C++ icon

-
[linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis.

Languages: JavaScript icon vue CSS icon
Website: https://uselinked.com
Screenshots:


-
[macOrganizer](https://github.com/shubhambatra3019/macOrganizer) - macOS app for organizing files or removing unnecessary files.

Languages: Swift icon

-
[reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system.

Languages: TypeScript icon Swift icon
Screenshots:

-
[sqlectron](https://github.com/sqlectron/sqlectron-gui) - A simple and lightweight SQL client desktop/terminal with cross database and platform support.

Languages: TypeScript icon
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.

Languages: Swift icon
Screenshots:

-
[stretchly](https://github.com/hovancik/stretchly) - Cross-platform electron app that reminds you to take breaks when working with computer.

Languages: JavaScript icon

+- [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app. +
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+- [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Cerebro](https://github.com/cerebroapp/cerebro) - Cross-platform launcher app. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [ClipMenu](https://github.com/naotaka/ClipMenu) - Clipboard manager for macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Clocker](https://github.com/n0shake/Clocker) - macOS app to plan and organize through timezones. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Condution](https://github.com/Shabang-Systems/Condution) - Create tasks, manage due dates, and filter with powerful perspectives. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.condution.com
Screenshots:

+- [ControlPlane](https://github.com/dustinrue/ControlPlane) - Automate running tasks based on where you are or what you do. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator... +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://devutils.com
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:


+- [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. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://www.mowglii.com/itsycal/
Screenshots:

+- [KeyHolder](https://github.com/Clipy/KeyHolder) - Record shortcuts in macOS, like Alfred.app. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Kiwix](https://github.com/kiwix/apple) - Kiwix for iOS and macOS, build on Swift. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. +
More

Languages: Swift icon
Links: App Store App Store   Latest Release   GitHub stars   License
Website: https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12
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:

+- [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:


+- [Pennywise](https://github.com/kamranahmedse/pennywise) - Pennywise opens any website or media in a small floating window that remains on top of all other applications. It's a great alternative to Helium. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+- [Pomodoro Cycle](https://github.com/ziulev/pomodoro-cycle-app) - Pomodoro Cycle for macOS +
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://github.com/ziulev/pomodoro-cycle-app/releases
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:

+- [Quicksilver](https://github.com/quicksilver/Quicksilver) - Quicksilver is a fast macOS productivity application that gives you the power to control your Mac quickly and elegantly. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Quickwords](https://github.com/quickwords/quickwords) - Write anything in a matter of seconds. Create snippets that can substitute text, execute tedious tasks and more. +
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [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:

+- [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

+- [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:


+- [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' +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Thyme](https://github.com/joaomoreno/thyme) - The task timer for OS X. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Time to Leave](https://github.com/thamara/time-to-leave) - Log work hours and get notified when it's time to leave the office and start to live. +
More

Languages: JavaScript icon CSS icon html
Links: Latest Release   GitHub stars   License
Website: https://timetoleave.app/
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:


+- [Toggl Desktop](https://github.com/toggl-open-source/toggldesktop) - Toggl Desktop app for Windows, Mac and Linux. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+- [TomatoBar](https://github.com/ivoronin/TomatoBar) - Pomodoro Technique Timer for macOS with Touch Bar support. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [TrelloApp](https://github.com/jlong/TrelloApp) - Unofficial wrapper application for Trello.com written in Swift. This is almost a "Hello World" for a site specific browser. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Ueli](https://github.com/oliverschwendener/ueli) - A keystroke launcher for macOS (and Windows) like Spotlight or Alfred. +
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://ueli.app/
Screenshots:

+- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Watson](https://github.com/TailorDev/Watson) - A CLI application for time tracking. +
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Whale](https://github.com/1000ch/whale) - Unofficial Trello app. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [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

### 📦 Screensaver (10) -
[Aerial](https://github.com/JohnCoates/Aerial) - Apple TV Aerial Screensaver for macOS.

Languages: Swift icon
Screenshots:



(3 more screenshots available in the repository)

-
[Brooklyn](https://github.com/pedrommcarrasco/Brooklyn) - Screensaver inspired by Apple's Event on October 30, 2018.

Languages: Swift icon
Screenshots:


-
[Epoch Flip Clock Screensaver](https://github.com/chrstphrknwtn/epoch-flip-clock-screensaver) - Unix epoch timestamp flip clock screensaver.

Languages: Objective-C icon
Screenshots:

-
[Image-As-Wallpaper](https://github.com/ved62/Image-As-Wallpaper) - Utility application helps with selection of images for using as desktop wallpaper or in screensaver on Mac computers.

Languages: Swift icon

-
[Irvue](https://github.com/leonspok/Irvue-Screensaver) - Screensaver for macOS.

Languages: Objective-C icon
Screenshots:



-
[Life Saver](https://github.com/amiantos/lifesaver) - An abstract screensaver based on Conway's Game of Life implemented with SpriteKit

Languages: Swift icon
Screenshots:



-
[MinimalClock](https://github.com/mattiarossini/MinimalClock) - Simple and elegant screensaver that displays the time.

Languages: Swift icon
Website: https://mattiarossini.github.io/MinimalClock/
Screenshots:

-
[MusaicFM](https://github.com/obrhoff/MusaicFM) - iTunes Screensaver Clone for Spotify and Last.fm

Languages: Objective-C icon
Screenshots:

-
[Predator](https://github.com/vpeschenkov/Predator) - A predator-inspired clock screensaver for macOS

Languages: Swift icon
Screenshots:


-
[The GitHub Matrix Screensaver](https://github.com/winterbe/github-matrix-screensaver) - The GitHub Matrix Screensaver for macOS.

Languages: JavaScript icon
Screenshots:


+- [Aerial](https://github.com/JohnCoates/Aerial) - Apple TV Aerial Screensaver for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(3 more screenshots available in the repository)

+- [Brooklyn](https://github.com/pedrommcarrasco/Brooklyn) - Screensaver inspired by Apple's Event on October 30, 2018. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Epoch Flip Clock Screensaver](https://github.com/chrstphrknwtn/epoch-flip-clock-screensaver) - Unix epoch timestamp flip clock screensaver. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Image-As-Wallpaper](https://github.com/ved62/Image-As-Wallpaper) - Utility application helps with selection of images for using as desktop wallpaper or in screensaver on Mac computers. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Irvue](https://github.com/leonspok/Irvue-Screensaver) - Screensaver for macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



+- [Life Saver](https://github.com/amiantos/lifesaver) - An abstract screensaver based on Conway's Game of Life implemented with SpriteKit +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+- [MinimalClock](https://github.com/mattiarossini/MinimalClock) - Simple and elegant screensaver that displays the time. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://mattiarossini.github.io/MinimalClock/
Screenshots:

+- [MusaicFM](https://github.com/obrhoff/MusaicFM) - iTunes Screensaver Clone for Spotify and Last.fm +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Predator](https://github.com/vpeschenkov/Predator) - A predator-inspired clock screensaver for macOS +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [The GitHub Matrix Screensaver](https://github.com/winterbe/github-matrix-screensaver) - The GitHub Matrix Screensaver for macOS. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


### 🔒 Security (9) -
[Cloaker](https://github.com/spieglt/cloaker) - simple drag-and-drop, password-based file encryption.

Languages: Rust icon
Website: https://adequate.systems/
Screenshots:

-
[Cryptomator](https://github.com/cryptomator/cryptomator) - Multi-platform transparent client-side encryption of your files in the cloud.

Languages: Java icon
Website: https://cryptomator.org/

-
[LuLu](https://github.com/objective-see/LuLu) - LuLu is macOS firewall application that aims to block unauthorized (outgoing) network traffic.

Languages: Objective-C icon

-
[Pareto Security](https://github.com/paretoSecurity/pareto-mac/) - A MenuBar app to automatically audit your Mac for basic security hygiene.

Languages: Swift icon
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.

Languages: Swift icon

-
[Swifty](https://github.com/swiftyapp/swifty) - Free and offline password manager.

Languages: JavaScript icon
Website: https://getswifty.pro
Screenshots:


-
[VeraCrypt](https://github.com/veracrypt/VeraCrypt) - Disk encryption with strong security based on TrueCrypt.

Languages: C icon C++ icon
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.

Languages: Shell icon
Screenshots:

-
[stronghold](https://github.com/alichtman/stronghold) - Easily configure macOS security settings from the terminal.

Languages: Python icon
Screenshots:


+- [Cloaker](https://github.com/spieglt/cloaker) - simple drag-and-drop, password-based file encryption. +
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License
Website: https://adequate.systems/
Screenshots:

+- [Cryptomator](https://github.com/cryptomator/cryptomator) - Multi-platform transparent client-side encryption of your files in the cloud. +
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://cryptomator.org/

+- [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

+- [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

+- [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:


### 📤 Sharing Files (9) -
[Cyberduck](https://github.com/iterate-ch/cyberduck) - Cyberduck is a libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure & OneDrive, Google Drive and Dropbox.

Languages: Java icon
Website: https://cyberduck.io
Screenshots:


-
[Deluge](https://github.com/deluge-torrent/deluge) - Lightweight cross-platform BitTorrent client.

Languages: Python icon

-
[NitroShare](https://github.com/nitroshare/nitroshare-desktop) - Transferring files from one device to another

Languages: C++ icon
Website: https://nitroshare.net

-
[Rhea](https://github.com/timonus/Rhea) - macOS status bar app for quickly sharing files and URLs.

Languages: Objective-C icon

-
[Soduto](https://github.com/soduto/Soduto) - Soduto is a KDEConnect compatible application for macOS. It gives AirDrop like integration and allows file and clipboard sharing between your phones, desktops and tablets.

Languages: Swift icon Objective-C icon
Website: https://soduto.com/

-
[Transmission](https://github.com/transmission/transmission) - Official Transmission BitTorrent client repository.

Languages: Objective-C icon C icon

-
[Tribler](https://github.com/Tribler/tribler) - Privacy enhanced BitTorrent client with P2P content discovery.

Languages: Python icon

-
[mac2imgur](https://github.com/mileswd/mac2imgur) - Simple Mac app designed to make uploading images and screenshots to Imgur quick and effortless.

Languages: Swift icon

-
[qBittorrent](https://github.com/qbittorrent/qBittorrent) - BitTorrent client in Qt.

Languages: C++ icon

+- [Cyberduck](https://github.com/iterate-ch/cyberduck) - Cyberduck is a libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure & OneDrive, Google Drive and Dropbox. +
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://cyberduck.io
Screenshots:


+- [Deluge](https://github.com/deluge-torrent/deluge) - Lightweight cross-platform BitTorrent client. +
More

Languages: Python 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

+- [Rhea](https://github.com/timonus/Rhea) - macOS status bar app for quickly sharing files and URLs. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Soduto](https://github.com/soduto/Soduto) - Soduto is a KDEConnect compatible application for macOS. It gives AirDrop like integration and allows file and clipboard sharing between your phones, desktops and tablets. +
More

Languages: Swift icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://soduto.com/

+- [Transmission](https://github.com/transmission/transmission) - Official Transmission BitTorrent client repository. +
More

Languages: Objective-C icon C icon
Links: Latest Release   GitHub stars   License

+- [Tribler](https://github.com/Tribler/tribler) - Privacy enhanced BitTorrent client with P2P content discovery. +
More

Languages: Python icon
Links: Latest Release   GitHub stars   License

+- [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

### 👥 Social Networking (9) -
[Caprine](https://github.com/sindresorhus/caprine#features) - Elegant Facebook Messenger desktop app.

Languages: JavaScript icon CSS icon

-
[Goofy](https://github.com/danielbuechele/goofy) - Unofficial Facebook Messenger client.

Languages: JavaScript icon

-
[Leviathan](https://github.com/Swiftodon/Leviathan) - Leviathan is a iOS and macOS client application for the Mastodon social network.

Languages: Swift icon

-
[Messenger](https://github.com/rsms/fb-mac-messenger) - macOS app wrapping Facebook's Messenger for desktop.

Languages: Objective-C icon
Screenshots:

-
[Product Hunt](https://github.com/producthunt/producthunt-osx) - share and discover your favorite new products and applications.

Languages: Swift icon

-
[Quail](https://github.com/1000ch/quail) - Unofficial [esa](https://esa.io) app.

Languages: JavaScript icon
Screenshots:

-
[Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram Desktop App.

Languages: JavaScript icon CSS icon

-
[RedditOS](https://github.com/Dimillian/RedditOS) - A SwiftUI Reddit client for macOS.

Languages: Swift icon
Screenshots:

-
[Simpo](https://github.com/KeliCheng/Simpo) - macOS menubar app to post status quickly.

Languages: Swift icon
Screenshots:


+- [Caprine](https://github.com/sindresorhus/caprine#features) - Elegant Facebook Messenger desktop app. +
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+- [Goofy](https://github.com/danielbuechele/goofy) - Unofficial Facebook Messenger client. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [Leviathan](https://github.com/Swiftodon/Leviathan) - Leviathan is a iOS and macOS client application for the Mastodon social network. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Messenger](https://github.com/rsms/fb-mac-messenger) - macOS app wrapping Facebook's Messenger for desktop. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Product Hunt](https://github.com/producthunt/producthunt-osx) - share and discover your favorite new products and applications. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Quail](https://github.com/1000ch/quail) - Unofficial [esa](https://esa.io) app. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram Desktop App. +
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+- [RedditOS](https://github.com/Dimillian/RedditOS) - A SwiftUI Reddit client for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Simpo](https://github.com/KeliCheng/Simpo) - macOS menubar app to post status quickly. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


### 📦 Streaming (3) -
[Galeri](https://github.com/michealparks/galeri) - Perpetual artwork streaming app.

Languages: JavaScript icon

-
[OBS Studio](https://github.com/obsproject/obs-studio) - Free and open source software for live streaming and screen recording.

Languages: C++ icon
Website: https://obsproject.com/

-
[Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine.

Languages: Swift icon
Website: https://www.plugformac.com/
Screenshots:

+- [Galeri](https://github.com/michealparks/galeri) - Perpetual artwork streaming app. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [OBS Studio](https://github.com/obsproject/obs-studio) - Free and open source software for live streaming and screen recording. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://obsproject.com/

+- [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:

### ⚙️ 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.

Languages: Objective-C icon
Screenshots:



(2 more screenshots available in the repository)

-
[Apple Juice](https://github.com/raphaelhanneken/apple-juice) - Advanced battery gauge for macOS.

Languages: Swift icon
Screenshots:



-
[Clean-Me](https://github.com/Kevin-De-Koninck/Clean-Me) - Small macOS app that acts as a system cleaner (logs, cache, ...).

Languages: Swift icon
Screenshots:


-
[Diagnostics](https://github.com/macmade/Diagnostics) - Diagnostics is an application displaying the diagnostic reports from applications on macOS.

Languages: Swift icon
Screenshots:

-
[DisableMonitor](https://github.com/Eun/DisableMonitor) - Easily disable or enable a monitor on your Mac.

Languages: Objective-C icon

-
[Fanny](https://github.com/DanielStormApps/Fanny) - Monitor your Mac's fan speed and CPU temperature from your Notification Center.

Languages: Objective-C icon
Screenshots:

-
[HoRNDIS](https://github.com/jwise/HoRNDIS) - Android USB tethering driver for macOS.

Languages: C++ icon

-
[Juice](https://github.com/brianmichel/Juice) - Make your battery information a bit more interesting.

Languages: Swift icon
Screenshots:


-
[KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevents your Mac from going to sleep.

Languages: Objective-C icon
Screenshots:

-
[Latest](https://github.com/mangerlahn/Latest) - Small utility app for macOS that makes sure you know about all the latest updates to the apps you use.

Languages: Swift icon
Screenshots:

-
[Loading](https://github.com/BonzaiThePenguin/Loading) - Simple network activity monitor for macOS.

Languages: Objective-C icon
Screenshots:

-
[Overkill](https://github.com/KrauseFx/overkill-for-mac) - Stop iTunes from opening when you connect your iPhone.

Languages: Swift icon

-
[ProfileCreator](https://github.com/ProfileCreator/ProfileCreator) - macOS Application to create standard or customized configuration profiles.

Languages: Objective-C icon
Screenshots:

-
[SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs.

Languages: Swift icon
Screenshots:


-
[Sloth](https://github.com/sveinbjornt/Sloth) - Sloth is an macOS application that displays a list of all open files and sockets in use by all running applications on your system.

Languages: Objective-C icon
Screenshots:



-
[Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative.

Languages: TypeScript icon Swift icon

-
[Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar

Languages: Swift icon
Screenshots:

-
[Turbo Boost Switcher](https://github.com/rugarciap/Turbo-Boost-Switcher) - Turbo Boost Switcher is a little application for Mac computers that allows to enable and/or disable the Turbo Boost feature.

Languages: Objective-C icon

-
[VerticalBar](https://github.com/DeromirNeves/DockSeparator) - macOS application to add a vertical bar to Dock.

Languages: Swift icon
Screenshots:

-
[Wireshark](https://gitlab.com/wireshark/wireshark/-/tree/master) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions.

Languages: C icon c++
Website: https://www.wireshark.org/

-
[eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI.

Languages: Swift icon
Screenshots:

-
[macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper.

Languages: Shell icon
Screenshots:

-
[macOSLucidaGrande](https://github.com/LumingYin/macOSLucidaGrande) - A small utility to set Lucida Grande as your Mac's system UI font.

Languages: Objective-C icon
Website: https://github.com/LumingYin/macOSLucidaGrande/releases
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)

+- [Apple Juice](https://github.com/raphaelhanneken/apple-juice) - Advanced battery gauge for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+- [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

+- [Fanny](https://github.com/DanielStormApps/Fanny) - Monitor your Mac's fan speed and CPU temperature from your Notification Center. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [HoRNDIS](https://github.com/jwise/HoRNDIS) - Android USB tethering driver for macOS. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+- [Juice](https://github.com/brianmichel/Juice) - Make your battery information a bit more interesting. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevents your Mac from going to sleep. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Latest](https://github.com/mangerlahn/Latest) - Small utility app for macOS that makes sure you know about all the latest updates to the apps you use. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Loading](https://github.com/BonzaiThePenguin/Loading) - Simple network activity monitor for macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Overkill](https://github.com/KrauseFx/overkill-for-mac) - Stop iTunes from opening when you connect your iPhone. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [ProfileCreator](https://github.com/ProfileCreator/ProfileCreator) - macOS Application to create standard or customized configuration profiles. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Sloth](https://github.com/sveinbjornt/Sloth) - Sloth is an macOS application that displays a list of all open files and sockets in use by all running applications on your system. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



+- [Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative. +
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License

+- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Turbo Boost Switcher](https://github.com/rugarciap/Turbo-Boost-Switcher) - Turbo Boost Switcher is a little application for Mac computers that allows to enable and/or disable the Turbo Boost feature. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [VerticalBar](https://github.com/DeromirNeves/DockSeparator) - macOS application to add a vertical bar to Dock. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Wireshark](https://gitlab.com/wireshark/wireshark/-/tree/master) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions. +
More

Languages: C icon c++
Website: https://www.wireshark.org/

+- [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:

### 📺 Terminal (13) -
[Alacritty](https://github.com/alacritty/alacritty) - Cross-platform, GPU-accelerated terminal emulator.

Languages: Rust icon
Screenshots:

-
[Bifrost](https://github.com/ishuah/bifrost) - A tiny terminal emulator for serial port communication (macOS/Linux).

Languages: Go icon

-
[Console](https://github.com/macmade/Console) - macOS console application.

Languages: Swift icon
Screenshots:

-
[Finder Go](https://github.com/onmyway133/FinderGo) - macOS app and Finder Sync Extension to open Terminal, iTerm, Hyper from Finder.

Languages: Swift icon

-
[Hyper](https://github.com/vercel/hyper) - Terminal built on web technologies.

Languages: JavaScript icon CSS icon
Screenshots:

-
[Kitty](https://github.com/kovidgoyal/kitty) - Cross-platform, fast, feature full, GPU based terminal emulator.

Languages: Python icon C icon

-
[OpenInTerminal](https://github.com/Ji4n1ng/OpenInTerminal) - Finder Toolbar app for macOS to open the current directory in Terminal, iTerm, Hyper or Alacritty.

Languages: Swift icon
Screenshots:


-
[OpenTerminal](https://github.com/es-kumagai/OpenTerminal) - App for macOS that opens a new Finder window and changes the current directory to the folder launched by the app.

Languages: Swift icon

-
[cd to... ](https://github.com/jbtule/cdto) - Finder Toolbar app to open the current directory in the Terminal

Languages: Objective-C icon

-
[iTerm 2](https://github.com/gnachman/iTerm2) - Terminal emulator for macOS that does amazing things.

Languages: Objective-C icon

-
[macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper.

Languages: Shell icon
Screenshots:

-
[wallpapper](https://github.com/mczachurski/wallpapper) - wallpapper is a console application for creating dynamic wallpapers for Mojave.

Languages: Swift icon

-
[zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal.

Languages: Rust icon
Screenshots:

+- [Alacritty](https://github.com/alacritty/alacritty) - Cross-platform, GPU-accelerated terminal emulator. +
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Bifrost](https://github.com/ishuah/bifrost) - A tiny terminal emulator for serial port communication (macOS/Linux). +
More

Languages: Go icon
Links: Latest Release   GitHub stars   License

+- [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:

+- [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

+- [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:

### 📦 Touch Bar (6) -
[Muse](https://github.com/xzzz9097/Muse) - Spotify controller with TouchBar support.

Languages: Swift icon
Screenshots:

-
[MyTouchbarMyRules](https://github.com/toxblh/MTMR) - App to customize your Touch Bar as you want.

Languages: Swift icon

-
[Pock](https://github.com/pock/pock) - Display macOS Dock in Touch Bar.

Languages: Swift icon
Website: https://pock.app/
Screenshots:

-
[Touch Bar Preview](https://github.com/touchbar/Touch-Bar-Preview) - Small application to display your designs on the Touch Bar of the new MacBook Pro.

Languages: Swift icon

-
[Touch Bar Simulator](https://github.com/sindresorhus/touch-bar-simulator) - Use the Touch Bar on any Mac.

Languages: Swift icon

-
[Touch Emoji](https://github.com/ilyalesik/touch-emoji) - Emoji picker for MacBook Pro Touch Bar.

Languages: Swift icon
Screenshots:


+- [Muse](https://github.com/xzzz9097/Muse) - Spotify controller with TouchBar support. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [MyTouchbarMyRules](https://github.com/toxblh/MTMR) - App to customize your Touch Bar as you want. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Pock](https://github.com/pock/pock) - Display macOS Dock in Touch Bar. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://pock.app/
Screenshots:

+- [Touch Bar Preview](https://github.com/touchbar/Touch-Bar-Preview) - Small application to display your designs on the Touch Bar of the new MacBook Pro. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Touch Bar Simulator](https://github.com/sindresorhus/touch-bar-simulator) - Use the Touch Bar on any Mac. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Touch Emoji](https://github.com/ilyalesik/touch-emoji) - Emoji picker for MacBook Pro Touch Bar. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


### 🛠️ Utilities (80) -
[Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android

Languages: Swift icon
Screenshots:



(2 more screenshots available in the repository)

-
[ArchiveMounter](https://github.com/ivoronin/ArchiveMounter) - Mounts archives like disk images.

Languages: Swift icon

-
[Balena Etcher](https://github.com/balena-io/etcher) - Flash OS images to SD cards & USB drives, safely and easily.

Languages: TypeScript icon
Website: https://www.balena.io/etcher

-
[BeardedSpice](https://github.com/beardedspice/beardedspice) - Control web based media players with the media keys found on Mac keyboards.

Languages: Objective-C icon

-
[Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware.

Languages: JavaScript icon
Website: https://betaflight.com/
Screenshots:

-
[Bitwarden](https://github.com/bitwarden/desktop) - Cross-platform password management solutions for individuals, teams, and business organizations.

Languages: TypeScript icon
Website: https://bitwarden.com/
Screenshots:



-
[Bitwarden Menu](https://github.com/jnsdrtlf/bitwarden-menubar) - Bitwarden Password Manager in your menu bar

Languages: TypeScript icon Swift icon
Screenshots:

-
[Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers.

Languages: Swift icon JavaScript icon
Website: https://boop.okat.best
Screenshots:

-
[Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Secure password manager for mac and other platforms.

Languages: JavaScript icon
Screenshots:

-
[Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar.

Languages: Swift icon

-
[Catch](https://github.com/mipstian/catch/) - Catch: Broadcatching made easy.

Languages: Swift icon

-
[Clear Clipboard Text Format](https://github.com/LumingYin/ClipboardClear) - Easily clear the format of your clipboard text with Clear Clipboard Text Format.

Languages: Objective-C icon
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

Languages: Swift icon
Screenshots:

-
[CornerCal](https://github.com/ekreutz/CornerCal) - Simple, clean calendar and clock app for macOS.

Languages: Swift icon
Screenshots:

-
[Crypter](https://github.com/HR/Crypter) - Crypter is an innovative, convenient and secure cross-platform crypto app that simplifies secure password generation and management by requiring you to only remember one bit, the MasterPass.

Languages: JavaScript icon
Screenshots:



(1 more screenshots available in the repository)

-
[DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator...

Languages: Swift icon
Website: https://devutils.com
Screenshots:

-
[Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder.

Languages: Swift icon
Screenshots:

-
[ECheck](https://github.com/josejuanqm/ECheck) - Small tool to validate epub files for macOS.

Languages: Swift icon

-
[Flying Carpet](https://github.com/spieglt/flyingcarpet) - cross-platform file transfer over ad-hoc wifi, like AirDrop but for Mac/Windows/Linux.

Languages: Go icon
Website: https://adequate.systems/
Screenshots:

-
[Funky](https://github.com/thecatalinstan/Funky) - Easily toggle the function key on your Mac on a per app basis.

Languages: Objective-C icon

-
[Gray](https://github.com/zenangst/Gray) - Pick between the light appearance and the dark appearance on a per-app basis with the click of a button

Languages: Swift icon

-
[Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Manage grayscale mode from menu bar.

Languages: Swift icon
Screenshots:


-
[Kap](https://github.com/wulkano/kap) - Screen recorder application built with web technology.

Languages: JavaScript icon

-
[KeePassXC](https://github.com/keepassxreboot/keepassxc) - Cross-platform community-driven port of the Windows application "Keepass Password Safe"

Languages: C++ icon

-
[KeeWeb](https://github.com/keeweb/keeweb) - Cross-platform password manager compatible with KeePass.

Languages: JavaScript icon

-
[Keka](https://github.com/aonez/Keka) - Keka is a full featured file archiver, as easy as it can be.

Languages: Swift icon
Website: https://www.keka.io/en/
Screenshots:

-
[Kyapchar](https://github.com/vishaltelangre/Kyapchar) - Simple screen and microphone audio recorder for macOS.

Languages: Swift icon

-
[Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView.

Languages: Swift icon
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.

Languages: Swift icon

-
[MQTTX](https://github.com/emqx/MQTTX) - An elegant Cross-platform MQTT 5.0 desktop client.

Languages: JavaScript icon TypeScript icon
Screenshots:


-
[MacPacker](https://github.com/sarensw/MacPacker/) - Archive manager for macOS. Preview (nested) archives without extracting them. Extract single files.

Languages: Swift icon
Website: https://macpacker.app/ 
Screenshots:

-
[MacPass](https://github.com/MacPass/MacPass) - Native macOS KeePass client.

Languages: Objective-C icon
Screenshots:

-
[Maria](https://github.com/shincurry/Maria) - macOS native app/widget for aria2 download tool.

Languages: Swift icon

-
[MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings

Languages: Swift icon
Screenshots:

-
[Meme Maker](https://github.com/MemeMaker/Meme-Maker-Mac) - Meme Maker macOS application for meme creation.

Languages: Swift icon

-
[Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse

Languages: C icon
Screenshots:

-
[MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys.

Languages: Swift icon Objective-C icon
Screenshots:

-
[Monolingual](https://github.com/IngmarStein/Monolingual) - Remove unnecessary language resources from macOS

Languages: Swift icon
Screenshots:

-
[Mos](https://github.com/Caldis/Mos) - Smooth your mouse's scrolling and reverse the mouse scroll direction

Languages: Swift icon

-
[NVM](https://github.com/nvm-sh/nvm) - Node Version Manager.

Languages: Shell icon

-
[Nmap](https://github.com/nmap/nmap) - Nmap - the Network Mapper.

Languages: C++ icon
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.

Languages: Swift icon
Screenshots:

-
[NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar.

Languages: Swift icon

-
[Noti](https://github.com/jariz/Noti/) - Receive Android notifications on your mac (with PushBullet).

Languages: Swift icon

-
[OpenRocket](https://github.com/openrocket/openrocket) - OpenRocket is a cross-platform utility tool to model and simulate model rockets and their flight characteristics.

Languages: Java icon
Website: https://openrocket.info/

-
[PB for Desktop](https://github.com/sidneys/pb-for-desktop) - Receive native push notifications on macOS, Windows and Linux.

Languages: JavaScript icon
Screenshots:



(1 more screenshots available in the repository)

-
[Padlock](https://github.com/padloc/padloc) - A minimal, open source password manager for macOS.

Languages: JavaScript icon

-
[PercentCalculator](https://github.com/cemolcay/PercentCalculator) - A menu bar application that calculates percents.

Languages: Swift icon

-
[Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS.

Languages: Swift icon metal
Website: https://superhighfives.com/pika
Screenshots:

-
[Plain Pasta](https://github.com/hisaac/PlainPasta) - Plaintextify your clipboard

Languages: Swift icon
Screenshots:


-
[PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar.

Languages: Swift icon
Screenshots:

-
[PowerShell](https://github.com/powershell/powershell) - PowerShell is a cross-platform automation and configuration tool/framework that works well with your existing tools.

Languages: C# icon

-
[Rugby](https://github.com/swiftyfinch/Rugby) - 🏈 Cache CocoaPods for faster rebuild and indexing Xcode project.

Languages: Swift icon
Website: https://swiftyfinch.github.io/en/2021-03-09-rugby-story/
Screenshots:

-
[ScreenCat](https://github.com/maxogden/screencat) - ScreenCat is a screen sharing + remote collaboration application.

Languages: JavaScript icon CSS icon

-
[SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs.

Languages: Swift icon
Screenshots:


-
[SlowQuitApps](https://github.com/dteoh/SlowQuitApps) - Add a global delay to Command-Q to stop accidental app quits.

Languages: Objective-C icon

-
[Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative.

Languages: TypeScript icon Swift icon

-
[Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar

Languages: Swift icon
Screenshots:

-
[Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications.

Languages: Swift icon
Screenshots:


-
[Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration.

Languages: TypeScript icon JavaScript icon
Website: https://super-productivity.com
Screenshots:

-
[Telephone](https://github.com/64characters/Telephone) - SIP softphone for macOS.

Languages: Objective-C icon Swift icon

-
[The Blockstack Browser](https://github.com/stacks-network/blockstack-browser) - Blockstack is an internet for decentralized apps where users own their data. The Blockstack Browser allows you to explore the Blockstack internet.

Languages: JavaScript icon

-
[ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then'

Languages: Swift icon
Screenshots:

-
[ToTheTop](https://github.com/zenangst/ToTheTop) - Small macOS application to help you scroll to the top.

Languages: Swift icon

-
[Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari

Languages: Swift icon
Screenshots:

-
[Wireshark](https://github.com/wireshark/wireshark) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions.

Languages: C++ icon
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.

Languages: Objective-C icon
Screenshots:

-
[calibre](https://github.com/kovidgoyal/calibre) - cross platform e-book manager.

Languages: Python icon
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.

Languages: Objective-C icon
Website: https://dupeguru.voltaicideas.net/

-
[eul](https://github.com/gao-sun/eul) - macOS status monitoring app written in SwiftUI.

Languages: Swift icon
Screenshots:

-
[far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2

Languages: C icon C++ icon

-
[fselect](https://github.com/jhspetersson/fselect) - Command-line tool to search files with SQL syntax.

Languages: Rust icon

-
[homebrew-cask](https://github.com/Homebrew/homebrew-cask) - A CLI workflow for the administration of macOS applications distributed as binaries

Languages: Ruby icon
Website: https://brew.sh/
Screenshots:

-
[iOScanX](https://github.com/alessiomaffeis/iOScanX) - Cocoa application for semi-automated iOS app analysis and evaluation.

Languages: Objective-C icon C icon
Screenshots:


-
[mac-sound-fix](https://github.com/dragstor/mac-sound-fix) - Mac Sound Re-Enabler.

Languages: Swift icon
Screenshots:

-
[macOS GateKeeper Helper](https://github.com/wynioux/macOS-GateKeeper-Helper) - Simple macOS GateKeeper script. It helps you to control your GateKeeper.

Languages: Shell icon
Screenshots:

-
[nix-package-manager](https://github.com/NixOS/nix) - Nix is a reproducible package manager alternative to Homebrew, with over 80,000 packages.

Languages: c++ Shell icon nix
Website: https://nixos.org/explore.html

-
[wechsel](https://github.com/friedrichweise/wechsel) - manage bluetooth connections with your keyboard.

Languages: Swift icon
Website: https://wechsel.weise.io
Screenshots:

-
[zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal.

Languages: Rust icon
Screenshots:

-
[Übersicht](https://github.com/felixhageloh/uebersicht) - Keep an eye on what's happening on your machine and in the world.

Languages: Objective-C icon

+- [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(2 more screenshots available in the repository)

+- [ArchiveMounter](https://github.com/ivoronin/ArchiveMounter) - Mounts archives like disk images. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Balena Etcher](https://github.com/balena-io/etcher) - Flash OS images to SD cards & USB drives, safely and easily. +
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.balena.io/etcher

+- [BeardedSpice](https://github.com/beardedspice/beardedspice) - Control web based media players with the media keys found on Mac keyboards. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://betaflight.com/
Screenshots:

+- [Bitwarden](https://github.com/bitwarden/desktop) - Cross-platform password management solutions for individuals, teams, and business organizations. +
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://bitwarden.com/
Screenshots:



+- [Bitwarden Menu](https://github.com/jnsdrtlf/bitwarden-menubar) - Bitwarden Password Manager in your menu bar +
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers. +
More

Languages: Swift icon JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://boop.okat.best
Screenshots:

+- [Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Secure password manager for mac and other platforms. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [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:

+- [CoreLocationCLI](https://github.com/fulldecent/corelocationcli) - Get the physical location of your device and prints it to standard output +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [CornerCal](https://github.com/ekreutz/CornerCal) - Simple, clean calendar and clock app for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Crypter](https://github.com/HR/Crypter) - Crypter is an innovative, convenient and secure cross-platform crypto app that simplifies secure password generation and management by requiring you to only remember one bit, the MasterPass. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+- [DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator... +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://devutils.com
Screenshots:

+- [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

+- [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:

+- [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:


+- [Kap](https://github.com/wulkano/kap) - Screen recorder application built with web technology. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [KeePassXC](https://github.com/keepassxreboot/keepassxc) - Cross-platform community-driven port of the Windows application "Keepass Password Safe" +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+- [KeeWeb](https://github.com/keeweb/keeweb) - Cross-platform password manager compatible with KeePass. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [Keka](https://github.com/aonez/Keka) - Keka is a full featured file archiver, as easy as it can be. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.keka.io/en/
Screenshots:

+- [Kyapchar](https://github.com/vishaltelangre/Kyapchar) - Simple screen and microphone audio recorder for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. +
More

Languages: Swift icon
Links: App Store App Store   Latest Release   GitHub stars   License
Website: https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12
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:


+- [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. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Maria](https://github.com/shincurry/Maria) - macOS native app/widget for aria2 download tool. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [MeetingBar](https://github.com/leits/MeetingBar) - Menu bar app for your calendar meetings +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Meme Maker](https://github.com/MemeMaker/Meme-Maker-Mac) - Meme Maker macOS application for meme creation. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse +
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys. +
More

Languages: Swift icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Monolingual](https://github.com/IngmarStein/Monolingual) - Remove unnecessary language resources from macOS +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Mos](https://github.com/Caldis/Mos) - Smooth your mouse's scrolling and reverse the mouse scroll direction +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [NVM](https://github.com/nvm-sh/nvm) - Node Version Manager. +
More

Languages: Shell icon
Links: Latest Release   GitHub stars   License

+- [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. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Noti](https://github.com/jariz/Noti/) - Receive Android notifications on your mac (with PushBullet). +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [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

+- [PercentCalculator](https://github.com/cemolcay/PercentCalculator) - A menu bar application that calculates percents. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. +
More

Languages: Swift icon metal
Links: Latest Release   GitHub stars   License
Website: https://superhighfives.com/pika
Screenshots:

+- [Plain Pasta](https://github.com/hisaac/PlainPasta) - Plaintextify your clipboard +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [PowerShell](https://github.com/powershell/powershell) - PowerShell is a cross-platform automation and configuration tool/framework that works well with your existing tools. +
More

Languages: C# icon
Links: Latest Release   GitHub stars   License

+- [Rugby](https://github.com/swiftyfinch/Rugby) - 🏈 Cache CocoaPods for faster rebuild and indexing Xcode project. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://swiftyfinch.github.io/en/2021-03-09-rugby-story/
Screenshots:

+- [ScreenCat](https://github.com/maxogden/screencat) - ScreenCat is a screen sharing + remote collaboration application. +
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [SlowQuitApps](https://github.com/dteoh/SlowQuitApps) - Add a global delay to Command-Q to stop accidental app quits. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative. +
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License

+- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. +
More

Languages: TypeScript icon JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://super-productivity.com
Screenshots:

+- [Telephone](https://github.com/64characters/Telephone) - SIP softphone for macOS. +
More

Languages: Objective-C icon Swift icon
Links: Latest Release   GitHub stars   License

+- [The Blockstack Browser](https://github.com/stacks-network/blockstack-browser) - Blockstack is an internet for decentralized apps where users own their data. The Blockstack Browser allows you to explore the Blockstack internet. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [ToTheTop](https://github.com/zenangst/ToTheTop) - Small macOS application to help you scroll to the top. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [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:

+- [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. +
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Übersicht](https://github.com/felixhageloh/uebersicht) - Keep an eye on what's happening on your machine and in the world. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

### 🔐 VPN & Proxy (6) -
[ShadowsocksX-NG](https://github.com/shadowsocks/ShadowsocksX-NG) - Next Generation of ShadowsocksX.

Languages: Swift icon

-
[Specht](https://github.com/zhuhaow/Specht) - Rule-based proxy app built with Network Extension for macOS.

Languages: Swift icon
Screenshots:

-
[SpechtLite](https://github.com/zhuhaow/SpechtLite) - Rule-based proxy app for macOS.

Languages: Swift icon

-
[Tunnelblick](https://github.com/Tunnelblick/Tunnelblick) - Tunnelblick is a graphic user interface for OpenVPN on macOS.

Languages: Objective-C icon

-
[clashX](https://github.com/yichengchen/clashX) - A rule based custom proxy with GUI for Mac base on clash.

Languages: Swift icon

-
[rvc-mac](https://github.com/riboseinc/cryptode-mac) - Ribose VPN Client macOS Menu App.

Languages: Swift icon

+- [ShadowsocksX-NG](https://github.com/shadowsocks/ShadowsocksX-NG) - Next Generation of ShadowsocksX. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Specht](https://github.com/zhuhaow/Specht) - Rule-based proxy app built with Network Extension for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [SpechtLite](https://github.com/zhuhaow/SpechtLite) - Rule-based proxy app for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Tunnelblick](https://github.com/Tunnelblick/Tunnelblick) - Tunnelblick is a graphic user interface for OpenVPN on macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [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

### 🎬 Video (19) -
[Acid.Cam.v2.OSX](https://github.com/lostjared/Acid.Cam.v2.OSX) - Acid Cam v2 for macOS distorts video to create art.

Languages: C++ icon

-
[AppleEvents](https://github.com/insidegui/AppleEvents) - Unofficial Apple Events app for macOS.

Languages: Objective-C icon

-
[Conferences.digital](https://github.com/zagahr/Conferences.digital) - Best way to watch the latest and greatest videos from your favourite developer conferences for free on your Mac.

Languages: Swift icon
Screenshots:

-
[Datamosh](https://github.com/maelswarm/Datamosh) - Datamosh your videos on macOS.

Languages: Swift icon
Screenshots:

-
[Face Data](https://github.com/xiaohk/FaceData) - macOS application used to auto-annotate landmarks from a video.

Languages: Swift icon
Screenshots:


-
[GNU Gatekeeper](https://github.com/willamowius/gnugk) - Video conferencing server for H.323 terminals.

Languages: C++ icon
Website: https://www.gnugk.org

-
[Gifted](https://github.com/vdel26/gifted) - Turn any short video into an animated GIF quickly and easily.

Languages: Objective-C icon

-
[HandBrake](https://github.com/HandBrake/HandBrake) - HandBrake is a video transcoder available for Linux, Mac, and Windows.

Languages: C icon

-
[LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding.

Languages: JavaScript icon
Website: https://mifi.no/losslesscut/
Screenshots:

-
[MPV](https://github.com/mpv-player/mpv) - Lightweight, highly configurable media player.

Languages: C icon
Website: https://mpv.io
Screenshots:

-
[MenuTube](https://github.com/edanchenkov/MenuTube) - Catch YouTube into your macOS menu bar!

Languages: JavaScript icon

-
[OpenShot](https://github.com/OpenShot/openshot-qt) - Easy to use, quick to learn, and surprisingly powerful video editor.

Languages: Python icon

-
[Quick Caption](https://github.com/LumingYin/Caption) - Transcribe and generate caption files (SRT, ASS and FCPXML) without manually entering time codes.

Languages: Swift icon
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.

Languages: Objective-C icon

-
[Subler](https://bitbucket.org/galad87/subler/src) - Subler is an macOS app created to mux and tag mp4 files.

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

Languages: C icon
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.

Languages: Swift icon

-
[WebTorrent Desktop](https://github.com/webtorrent/webtorrent-desktop) - Streaming torrent app. For Mac, Windows, and Linux.

Languages: JavaScript icon
Screenshots:



-
[Yoda](https://github.com/whoisandy/yoda) - Nifty macOS application which enables you to browse and download videos from YouTube.

Languages: JavaScript icon

+- [Acid.Cam.v2.OSX](https://github.com/lostjared/Acid.Cam.v2.OSX) - Acid Cam v2 for macOS distorts video to create art. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+- [AppleEvents](https://github.com/insidegui/AppleEvents) - Unofficial Apple Events app for macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Conferences.digital](https://github.com/zagahr/Conferences.digital) - Best way to watch the latest and greatest videos from your favourite developer conferences for free on your Mac. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Datamosh](https://github.com/maelswarm/Datamosh) - Datamosh your videos on macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Face Data](https://github.com/xiaohk/FaceData) - macOS application used to auto-annotate landmarks from a video. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [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

+- [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

+- [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:

+- [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

+- [WebTorrent Desktop](https://github.com/webtorrent/webtorrent-desktop) - Streaming torrent app. For Mac, Windows, and Linux. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



+- [Yoda](https://github.com/whoisandy/yoda) - Nifty macOS application which enables you to browse and download videos from YouTube. +
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

### 🖥️ 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.

Languages: Swift icon

-
[ArtWall](https://github.com/JustinFincher/ASWP-for-macOS) - ArtStation set as wallpapers from artwork.rss

Languages: Objective-C icon

-
[Artify](https://github.com/NghiaTranUIT/artify-macos) - A macOS application for bringing dedicatedly 18th century Arts to everyone

Languages: Swift icon
Screenshots:



(1 more screenshots available in the repository)

-
[BingPaper](https://github.com/pengsrc/BingPaper) - Use Bing daily photo as your wallpaper on macOS.

Languages: Swift icon
Screenshots:


-
[Desktop Wallpaper Switcher](https://github.com/VioletGiraffe/desktop-wallpaper-switcher) - Win / Linux / macOS tool for managing and cycling desktop wallpapers.

Languages: C++ icon

-
[Muzei](https://github.com/naman14/Muzei-macOS) - Muzei wallpaper app for macOS.

Languages: Swift icon

-
[Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper.

Languages: Swift icon
Website: https://sindresorhus.com/plash
Screenshots:

-
[Satellite Eyes](https://github.com/tomtaylor/satellite-eyes) - macOS app to automatically set your desktop wallpaper to the satellite view overhead.

Languages: Objective-C icon
Screenshots:

-
[Sunscreen](https://github.com/davidcelis/Sunscreen) - Sunscreen is a fun, lightweight application that changes your desktop wallpaper based on sunrise and sunset.

Languages: Swift icon
Screenshots:

-
[WallpaperMenu](https://github.com/diogosantos/WallpaperMenu) - macOS menubar application for navigation through beautiful pictures on the web and set them up as your desktop image.

Languages: Ruby icon

-
[pyDailyChanger](https://github.com/IngoMeyer441/pyDailyChanger) - pyDailyChanger is a program that changes your wallpaper daily.

Languages: Python icon

+- [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)

+- [BingPaper](https://github.com/pengsrc/BingPaper) - Use Bing daily photo as your wallpaper on macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Desktop Wallpaper Switcher](https://github.com/VioletGiraffe/desktop-wallpaper-switcher) - Win / Linux / macOS tool for managing and cycling desktop wallpapers. +
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+- [Muzei](https://github.com/naman14/Muzei-macOS) - Muzei wallpaper app for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+- [Plash](https://github.com/sindresorhus/Plash) - Make any website your desktop wallpaper. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://sindresorhus.com/plash
Screenshots:

+- [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

### 🪟 Window Management (11) -
[AltTab](https://github.com/lwouis/alt-tab-macos) - AltTab brings the power of Windows alt-tab to macOS.

Languages: Swift icon Shell icon
Website: https://alt-tab-macos.netlify.app/
Screenshots:



-
[Amethyst](https://github.com/ianyh/Amethyst) - Automatic tiling window manager for macOS.

Languages: Swift icon
Screenshots:



-
[AppGrid](https://github.com/mjolnirapp/AppGrid) - Grid-based keyboard window manager for macOS.

Languages: Objective-C icon
Screenshots:


-
[Desktop Profiles](https://github.com/mamiksik/Desktop-Profiles) - An innovative desktop/window manager for macOS

Languages: Swift icon
Screenshots:


-
[Hammerspoon](https://github.com/Hammerspoon/hammerspoon) - Staggeringly powerful macOS desktop automation with Lua.

Languages: Lua icon Objective-C icon

-
[Phoenix](https://github.com/kasper/phoenix) - Lightweight macOS window and app manager scriptable with JavaScript.

Languages: Objective-C icon
Screenshots:

-
[Rectangle](https://github.com/rxhanson/Rectangle) - Rectangle is a window manager heavily based on Spectacle, written in Swift.

Languages: Swift icon
Website: https://rectangleapp.com

-
[ShiftIt](https://github.com/fikovnik/ShiftIt) - Managing windows size and position.

Languages: Objective-C icon
Screenshots:



-
[Slate](https://github.com/jigish/slate) - Slate is a window management application similar to Divvy and SizeUp

Languages: Objective-C icon

-
[Spectacle](https://github.com/eczarny/spectacle) - Spectacle allows you to organize your windows without using a mouse.

Languages: Objective-C icon

-
[Yabai](https://github.com/koekeishiya/yabai) - A tiling window manager for macOS based on binary space partitioning.

Languages: C icon Objective-C icon
Screenshots:

+- [AltTab](https://github.com/lwouis/alt-tab-macos) - AltTab brings the power of Windows alt-tab to macOS. +
More

Languages: Swift icon Shell icon
Links: Latest Release   GitHub stars   License
Website: https://alt-tab-macos.netlify.app/
Screenshots:



+- [Amethyst](https://github.com/ianyh/Amethyst) - Automatic tiling window manager for macOS. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+- [AppGrid](https://github.com/mjolnirapp/AppGrid) - Grid-based keyboard window manager for macOS. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Desktop Profiles](https://github.com/mamiksik/Desktop-Profiles) - An innovative desktop/window manager for macOS +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+- [Hammerspoon](https://github.com/Hammerspoon/hammerspoon) - Staggeringly powerful macOS desktop automation with Lua. +
More

Languages: Lua icon Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Phoenix](https://github.com/kasper/phoenix) - Lightweight macOS window and app manager scriptable with JavaScript. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+- [Rectangle](https://github.com/rxhanson/Rectangle) - Rectangle is a window manager heavily based on Spectacle, written in Swift. +
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://rectangleapp.com

+- [ShiftIt](https://github.com/fikovnik/ShiftIt) - Managing windows size and position. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



+- [Slate](https://github.com/jigish/slate) - Slate is a window management application similar to Divvy and SizeUp +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Spectacle](https://github.com/eczarny/spectacle) - Spectacle allows you to organize your windows without using a mouse. +
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+- [Yabai](https://github.com/koekeishiya/yabai) - A tiling window manager for macOS based on binary space partitioning. +
More

Languages: C icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

From dff040afbcf89a78b29e07a9f15094db6c9ff694 Mon Sep 17 00:00:00 2001 From: Serhii Londar Date: Sun, 14 Sep 2025 22:34:48 +0200 Subject: [PATCH 16/62] Update main.swift --- .github/main.swift | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/main.swift b/.github/main.swift index a85f94a..3ca8969 100644 --- a/.github/main.swift +++ b/.github/main.swift @@ -339,10 +339,11 @@ extension JSONApplication { // Header line with a standard Markdown link so it's always clickable markdownDescription.append("- [\(self.title)](\(self.repoURL)) - \(self.shortDescription)\n") - // Collapsible extra details (languages, links, screenshots) - markdownDescription.append("
") - markdownDescription.append("More") - markdownDescription.append("

") + // Collapsible extra details (languages, links, screenshots) indented to belong to the list item + let indent = " " + markdownDescription.append(indent + "

") + markdownDescription.append(indent + "More") + markdownDescription.append(indent + "

") // Add languages markdownDescription.append("Languages: \(languages)
") @@ -398,8 +399,8 @@ extension JSONApplication { } } - markdownDescription.append("

") - markdownDescription.append("
") + markdownDescription.append(indent + "

") + markdownDescription.append(indent + "
") return markdownDescription } From d7f4cb911a16dbcc3998283e5f0bb6dcfdf8024d Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Sun, 14 Sep 2025 20:35:03 +0000 Subject: [PATCH 17/62] Generate README --- README.md | 1392 ++++++++++++++++++++++++++--------------------------- 1 file changed, 696 insertions(+), 696 deletions(-) diff --git a/README.md b/README.md index 8c77032..966e091 100644 --- a/README.md +++ b/README.md @@ -112,1541 +112,1541 @@ You can see in which language an app is written. Currently there are following l ### 🎵 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:

+
More

Languages: Swift 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:

+
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Website: https://www.audacityteam.org/
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)

+
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. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://yoni.ninja/automute/
Screenshots:


+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://yoni.ninja/automute/
Screenshots:


- [Background Music](https://github.com/kyleneideck/BackgroundMusic) - Background Music, a macOS audio utility: automatically pause your music, set individual apps' volumes and record system audio. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [BlackHole](https://github.com/ExistentialAudio/BlackHole) - BlackHole is a modern macOS virtual audio driver that allows applications to pass audio to other applications with zero additional latency. -
More

Languages: C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C icon
Links: Latest Release   GitHub stars   License

- [CAM](https://github.com/hanayik/CAM) - macOS camera recording using ffmpeg -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

- [Clementine](https://github.com/clementine-player/Clementine) - Clementine is a modern music player and library organizer for Windows, Linux and macOS. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://www.clementine-player.org/
Screenshots:



(1 more screenshots available in the repository)

+
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/

+
More

Languages: Objective-C icon
Website: https://cogx.org/

- [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:

+
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. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://mifi.no/losslesscut/
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://mifi.no/losslesscut/
Screenshots:

- [Lyricism](https://github.com/lyc2345/Lyricism) - macOS app to show you lyric what currently iTunes or Spotify is playing. -
More

Languages: Objective-C icon Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+
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)

+
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:

+
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:

+
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)

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:



(2 more screenshots available in the repository)

- [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

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.plugformac.com/
Screenshots:

+
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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://billthefarmer.github.io/audiotools/
Screenshots:

- [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:

+
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:

+
More

Languages: Objective-C 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:

+
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

+
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:

+
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:

+
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:



+
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:



+
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:

+
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:


+
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:

+
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:

+
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)

+
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

+
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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 💾 Backup (5) - [BorgBase/Vorta](https://github.com/borgbase) - Simple and Secure Offsite Backups -
More

Languages: Python icon
Website: https://www.borgbase.com/

+
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

+
More

Languages: Python icon
Links: Latest Release   GitHub stars   License

- [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

+
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

+
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:

+
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 🌐 Browser (13) - [Beaker Browser](https://github.com/beakerbrowser/beaker) - Beaker is an experimental peer-to-peer Web browser. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
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

+
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/

+
More

Languages: JavaScript icon C++ icon C icon
Website: https://www.chromium.org/

- [Finicky](https://github.com/johnste/finicky) - Always opens the right browser. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Firefox](https://hg.mozilla.org/mozilla-central/) - Fast, privacy aware browser from a non-profit. Runs on Windows, macOS and Linux. -
More

Languages: JavaScript icon Rust icon C++ icon
Website: https://www.mozilla.org/en-US/firefox/browsers/

+
More

Languages: JavaScript icon Rust icon C++ icon
Website: https://www.mozilla.org/en-US/firefox/browsers/

- [Helium](https://github.com/JadenGeller/Helium) - Floating browser window for macOS. -
More

Languages: Objective-C icon Swift icon
Links: Latest Release   GitHub stars   License

+
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

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://minbrowser.org

- [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)

+
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:

+
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

+
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

+
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:

+
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

+
More

Languages: C icon
Links: Latest Release   GitHub stars   License

### 💬 Chat (19) - [Adium](https://github.com/adium/adium) - Instant messaging application that can connect to XMPP (Jabber), IRC and more. -
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Website: https://adium.im/
Screenshots:

+
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Website: https://adium.im/
Screenshots:

- [Beagle IM](https://github.com/tigase/beagle-im) - Powerful XMPP client with support for file transfer, VoIP and end-to-end encryption. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://beagle.im/
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://beagle.im/
Screenshots:

- [ChitChat](https://github.com/stonesam92/ChitChat) - Native Mac app wrapper for WhatsApp Web. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Electronic WeChat](https://github.com/geeeeeeeeek/electronic-wechat) - Better WeChat on macOS and Linux. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Element](https://github.com/vector-im/element-web) - Element is a collaboration app (currently Electron) for the [Matrix](https://matrix.org/) protocol. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [Franz](https://github.com/meetfranz/franz) - Franz is messaging application for services like WhatsApp, Slack, Messenger and many more. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Google Allo for Desktop](https://github.com/kelyvin/Google-Allo-For-Desktop) - Native macOS & Windows desktop app for Google Allo. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [GroupMe](https://github.com/dcrousso/GroupMe) - Unofficial GroupMe App. -
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [MessagesHistoryBrowser](https://github.com/glaurent/MessagesHistoryBrowser) - macOS application to comfortably browse and search through your Messages.app history. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [RocketChat](https://github.com/RocketChat/Rocket.Chat.Electron) - Free open source chat system for teams. An alternative to Slack that can also be self hosted. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.rocket.chat/

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.rocket.chat/

- [Seaglass](https://github.com/neilalexander/seaglass) - A truly native [Matrix](https://matrix.org/blog/home/) client for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Signal Desktop](https://github.com/signalapp/Signal-Desktop) - Electron app that links with your Signal Android or Signal iOS app. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [Telegram](https://github.com/overtake/TelegramSwift) - Source code of Telegram for macOS on Swift. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Telegram Desktop](https://github.com/telegramdesktop/tdesktop) - Telegram Desktop messaging app. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Textual](https://github.com/Codeux-Software/Textual) - Textual is an IRC client for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

- [Thunderbird](https://hg.mozilla.org/mozilla-central) - Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client. -
More

Languages: C++ icon JavaScript icon Rust icon
Website: https://www.thunderbird.net/en-US/
Screenshots:



+
More

Languages: C++ icon JavaScript icon Rust icon
Website: https://www.thunderbird.net/en-US/
Screenshots:



- [Torchat-Mac](https://github.com/javerous/TorChat-Mac) - TorChat for Mac is a macOS native and unofficial port of torchat. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [WhatsAppBar](https://github.com/aldychris/WhatsAppBar) - Send WhatsApp message from menu bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



- [Wire Desktop](https://github.com/wireapp/wire-desktop) - Standalone Electron app for the chatapp Wire. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

### 💰 Cryptocurrency (5) - [Balance Open](https://github.com/balance-io/balance-open) - App for all the world’s currencies. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [CoinBar](https://github.com/adamwaite/CoinBar) - macOS menu bar application for tracking crypto coin prices. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

- [Copay](https://github.com/bitpay/copay) - A secure bitcoin wallet platform for both desktop and mobile devices. -
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License

- [Crypto Bar](https://github.com/geraldoramos/crypto-bar) - macOS menu bar application built with Electron. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [Float coin](https://github.com/kaunteya/FloatCoin) - Native menu bar app with floating window and support for many Exchanges. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 🗄️ Database (18) - [Bdash](https://github.com/bdash-app/bdash) - Simple SQL Client for lightweight data analysis. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Beekeeper Studio](https://github.com/beekeeper-studio/beekeeper-studio) - SQL editor and manager with support for SQLite, MySQL, MariaDB, Postgres, CockroachDB, SQL Server, and Amazon Redshift. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.beekeeperstudio.io
Screenshots:


+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.beekeeperstudio.io
Screenshots:


- [DB Browser for SQLite](https://github.com/sqlitebrowser/sqlitebrowser) - SQLite database management GUI. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [DBeaver](https://github.com/dbeaver/dbeaver) - Universal database tool and SQL client. -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

- [DbGate](https://github.com/dbgate/dbgate) - Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application. -
More

Languages: JavaScript icon TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://dbgate.org
Screenshots:



(6 more screenshots available in the repository)

+
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:

+
More

Languages: JavaScript 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

+
More

Languages: Objective-C icon C icon
Links: Latest Release   GitHub stars   License

- [Postbird](https://github.com/Paxa/postbird) - PostgreSQL GUI client for macOS. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



- [Postgres.app](https://github.com/PostgresApp/PostgresApp) - The easiest way to get started with PostgreSQL on the Mac. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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:

+
More

Languages: C++ 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:

+
More

Languages: 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:

+
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/

+
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:


+
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:

+
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:

+
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:

+
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:

+
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://sqlectron.github.io/
Screenshots:

### 👨‍💻 Development (9) - [Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more. -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://netbeans.apache.org/
Screenshots:


+
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://netbeans.apache.org/
Screenshots:


- [Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://brackets.io/
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://brackets.io/
Screenshots:

- [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. -
More

Languages: Swift icon C# icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://imazing.com/colorset
Screenshots:

+
More

Languages: Swift icon C# icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://imazing.com/colorset
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/

+
More

Languages: C++ icon C icon
Links: Latest Release   GitHub stars   License
Website: https://gitahead.github.io/gitahead.com/

- [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/

+
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:

+
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. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [utmapp](https://github.com/utmapp/) - Virtualization for other operating systems. -
More

Languages: Swift icon Objective-C icon
Website: https://mac.getutm.app/
Screenshots:

+
More

Languages: Swift icon Objective-C icon
Website: https://mac.getutm.app/
Screenshots:

#### 📦 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

+
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

+
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:

+
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/

+
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

+
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:

+
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:

+
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)

+
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

+
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)

+
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:

+
More

Languages: Swift 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:

+
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

+
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:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.gitify.io/
Screenshots:

- [Streaker](https://github.com/jamieweavis/streaker) - GitHub contribution streak tracking menubar app. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [TeamStatus-for-GitHub](https://github.com/marcinreliga/TeamStatus-for-GitHub) - macOS status bar application for tracking code review process within the team. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Tempo](https://github.com/maoyama/Tempo) - Replace the Git CLI with a clear UI and AI assist. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Trailer](https://github.com/ptsochantaris/trailer) - Managing Pull Requests and Issues For GitHub & GitHub Enterprise. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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:

+
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

+
More

Languages: Shell icon applescript
Links: Latest Release   GitHub stars   License

#### 📦 JSON Parsing (4) - [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

+
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:

+
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:

+
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

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

#### 📦 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:

+
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:

+
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:


+
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

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [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)

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(5 more screenshots available in the repository)

#### 📦 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:

+
More

Languages: Objective-C 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:

+
More

Languages: Swift 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:



+
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:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [KubeSwitch](https://github.com/nsriram/KubeSwitch) - KubeSwitch lists the available kubernetes cluster contexts on the mac, in Mac's Menu bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Lantern](https://github.com/RoyalIcing/Lantern) - Dedicated Mac app for website auditing and crawling. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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

+
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

+
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:

+
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

+
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:

+
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

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

#### 📦 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

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [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:



+
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:

+
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:


+
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

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [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:



+
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

+
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:



+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



- [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:



+
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:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [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

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [CocoaRestClient](https://github.com/mmattozzi/cocoa-rest-client) - Native Apple macOS app for testing HTTP/REST endpoints. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



(2 more screenshots available in the repository)

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



(2 more screenshots available in the repository)

- [Corona Tracker](https://github.com/MhdHejazi/CoronaTracker) - Coronavirus tracker app for iOS & macOS with maps & charts. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://coronatracker.samabox.com/
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://coronatracker.samabox.com/
Screenshots:


- [FilterShop](https://github.com/KrisYu/FilterShop) - macOS App to explore CoreImage Filters. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [IconGenerator](https://github.com/onmyway133/IconGenerator) - macOS app to generate app icons. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Iconizer](https://github.com/raphaelhanneken/iconizer) - Create Xcode image catalogs (xcassets) on the fly. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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

+
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

+
More

Languages: Objective-C icon Swift 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:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [LayerX](https://github.com/yuhua-chen/LayerX) - Intuitive app to display transparent images on screen. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Localizable.strings](https://github.com/cristibaluta/Localizable.strings) - Mac app to localize your iOS and macOS projects. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Localization Editor](https://github.com/igorkulman/iOSLocalizationEditor) - Simple macOS editor app to help you manage iOS app localizations by allowing you to edit all the translations side by side. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Localizations](https://github.com/e7711bbear/Localizations) - Localizations is an macOS app that manages your Xcode project localization files (.strings). -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Menubar Colors](https://github.com/nvzqz/Menubar-Colors) - macOS app for convenient access to the system color panel. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Notarize](https://github.com/macmade/Notarize) - Notarization status monitoring tool for macOS, supporting multiple developer accounts -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [PodsUpdater](https://github.com/kizitonwose/PodsUpdater) - macOS app which helps you manage dependency releases in your Podfile. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [ProfilesManager](https://github.com/shaojiankui/ProfilesManager) - Apple iOS/macOS Provisioning Profiles management,.provisionprofile, .mobileprovision files manager tool for mac. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [PushNotifications](https://github.com/onmyway133/PushNotifications) - macOS app to test push notifications on iOS and Android. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(6 more screenshots available in the repository)

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(6 more screenshots available in the repository)

- [ResignTool](https://github.com/InjoyDeng/ResignTool) - This is an app for macOS that can (re)sign apps and bundle them into ipa files that are ready to be installed on an iOS device. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Resizr](https://github.com/onurgenes/Resizr) - MacOS application for creating AppIcon for iOS and Android apps. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [SmartPush](https://github.com/shaojiankui/SmartPush) - iOS Push Notification Debug App. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [TransporterPad](https://github.com/iseebi/TransporterPad) - iOS/Android app deployment tool for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [WWDC](https://github.com/insidegui/WWDC) - Unofficial WWDC app for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [WWDC.srt](https://github.com/ssamadgh/WWDCsrt) - Powerful app for downloading subtitle for each WWDC session video since 2013 in (srt) format. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(2 more screenshots available in the repository)

+
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:

+
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)

+
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:


+
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

+
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

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

### ⬇️ Downloader (7) - [App Downloader](https://github.com/yep/app-downloader) - Easily search and download macOS apps from the huge `homebrew cask` app catalog. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Extream Download Manager](https://github.com/subhra74/xdm) - a powerful tool to increase download speeds up to 500% -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://subhra74.github.io/xdm/

+
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://subhra74.github.io/xdm/

- [Get It](https://github.com/Kevin-De-Koninck/Get-It) - Native macOS video/audio downloader. Think of it as a youtube downloader that works on many sites. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Motrix](https://github.com/agalwood/Motrix) - A full-featured download manager. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://motrix.app/
Screenshots:



(1 more screenshots available in the repository)

+
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:


+
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:

+
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

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

### 📝 Editors (4) - [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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://auroraeditor.com
Screenshots:

- [Chime](https://github.com/ChimeHQ/Chime) - An editor for macOS -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.chimehq.com/
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.chimehq.com/
Screenshots:

- [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.codeedit.app/
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.codeedit.app/
Screenshots:

- [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. -
More

Languages: C icon c++
Links: Latest Release   GitHub stars   License
Website: https://www.geany.org/
Screenshots:

+
More

Languages: C icon c++
Links: Latest Release   GitHub stars   License
Website: https://www.geany.org/
Screenshots:

#### 📦 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

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

#### 📦 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:

+
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:


+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


#### 📦 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:

+
More

Languages: Elm icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [MacDown](https://github.com/MacDownApp/macdown) - Markdown editor for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [Mark Text](https://github.com/marktext/marktext/) - Realtime preview markdown editor for macOS Windows and Linux. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [MarkEdit](https://github.com/MarkEdit-app/MarkEdit) - MarkEdit is a free and open-source Markdown editor, for macOS. It's just like TextEdit on Mac but dedicated to Markdown. -
More

Languages: Swift icon TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://markedit.app/
Screenshots:



+
More

Languages: Swift icon TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://markedit.app/
Screenshots:



- [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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://notenik.app
Screenshots:

- [Obsidian plugins & themes](https://github.com/obsidianmd/obsidian-releases) - Community plugins list, theme list, and releases of Obsidian. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://obsidian.md/
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://obsidian.md/
Screenshots:

- [Pine](https://github.com/lukakerr/Pine) - A modern MacOS markdown editor. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+
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:

+
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:

+
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:


+
More

Languages: JavaScript icon vue CSS icon
Links: Latest Release   GitHub stars   License
Website: https://uselinked.com
Screenshots:


#### 📦 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:



+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



#### 📦 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:

+
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. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. -
More

Languages: C icon c++
Links: Latest Release   GitHub stars   License
Website: https://www.geany.org/
Screenshots:

+
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

+
More

Languages: C icon
Links: Latest Release   GitHub stars   License

- [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:


+
More

Languages: 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:


+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [TextMate](https://github.com/textmate/textmate) - TextMate is a graphical text editor for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Tincta](https://github.com/CodingFriends/Tincta) - One-window text editor with syntax highlighting. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://codingfriends.github.io/Tincta/

+
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

+
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)

+
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:

+
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 🧩 Extensions (13) - [AdGuard for Safari](https://github.com/adguardteam/adguardforsafari) - The most advanced ad blocking extension for Safari -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://adguard.com/en/welcome.html
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://adguard.com/en/welcome.html
Screenshots:

- [BetterPiP](https://github.com/Capevace/BetterPiP) - Use native picture-in-picture with browsers such as Google Chrome for HTML5 videos. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Is It Private?](https://github.com/ffittschen/IsItPrivate) - A Safari Extension providing a toolbar icon that changes its visual appearance if Private Browsing is enabled. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://florian.codes/projects/is-it-private/
Screenshots:

+
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:

+
More

Languages: C icon
Links: Latest Release   GitHub stars   License
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:

+
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

+
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:



+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



- [Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Swimat](https://github.com/Jintin/Swimat) - Swimat is an Xcode plug-in to format your Swift code. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://jintin.github.io/Swimat/
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://jintin.github.io/Swimat/
Screenshots:

- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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:

+
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:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://nef.bow-swift.io/
Screenshots:


### 🔍 Finder (11) - [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:


+
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

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

- [Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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:


+
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

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [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:

+
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:


+
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)

+
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

+
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/

+
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:

+
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 🎮 Games (11) - [0 A.D.](https://svn.wildfiregames.com/public/ps/trunk/) - Real-time strategy game of ancient warfare -
More

Languages: C++ icon
Website: https://play0ad.com
Screenshots:


+
More

Languages: C++ icon
Website: https://play0ad.com
Screenshots:


- [Battle for Wesnoth](https://github.com/wesnoth/wesnoth) - Turn-based tactical strategy game, featuring both single-player and online multiplayer combat. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

- [Boxer](https://github.com/alunbestor/Boxer) - The DOS game emulator that’s fit for your Mac. -
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

- [Chess](https://opensource.apple.com/source/Chess/Chess-410.4.1/) - The chess app that comes with macOS. -
More

Languages: objective-c
Website: https://www.apple.com/
Screenshots:

+
More

Languages: objective-c
Website: https://www.apple.com/
Screenshots:

- [Dolphin](https://github.com/dolphin-emu/dolphin) - Powerful emulator for Nintendo GameCube and Wii games. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

- [Dynamic Dark Mode](https://github.com/ApolloZhu/Dynamic-Dark-Mode) - Dynamic Dark Mode is the app you are looking for to power up Dark Mode on macOS Mojave and beyond. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://apollozhu.github.io/Dynamic-Dark-Mode/
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://apollozhu.github.io/Dynamic-Dark-Mode/
Screenshots:

- [OpenEmu](https://github.com/OpenEmu/OpenEmu) - Retro video game emulation for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [OpenRCT2](https://github.com/OpenRCT2/OpenRCT2) - Re-implementation of RollerCoaster Tycoon 2. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Screentendo](https://github.com/AaronRandall/Screentendo) - Turn your screen into a playable level of Mario. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Stockfish](https://github.com/daylen/stockfish-mac) - Beautiful, powerful chess application. -
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

- [Widelands](https://github.com/widelands/widelands) - Widelands is a free, open source real-time strategy game with singleplayer campaigns and a multiplayer mode. The game was inspired by Settlers II™ (© Bluebyte) but has significantly more variety and depth to it. -
More

Languages: c++ Python icon Lua icon JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.widelands.org
Screenshots:

+
More

Languages: c++ Python icon Lua icon JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.widelands.org
Screenshots:

### 🎨 Graphics (15) - [Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux). -
More

Languages: C++ icon C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C++ icon C icon
Links: Latest Release   GitHub stars   License

- [Blender](https://projects.blender.org/) - Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline: modeling, rigging, animation, simulation, rendering, compositing, motion tracking, and video editing. -
More

Languages: C icon C++ icon Python icon
Website: https://www.blender.org
Screenshots:



(3 more screenshots available in the repository)

+
More

Languages: C icon C++ icon Python icon
Website: https://www.blender.org
Screenshots:



(3 more screenshots available in the repository)

- [CaptuocrToy](https://github.com/sfragrance/CaptuocrToy) - Tool to capture screenshot and recognize text by online ocr apis. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. -
More

Languages: Swift icon C# icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://imazing.com/colorset
Screenshots:

+
More

Languages: Swift icon C# icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://imazing.com/colorset
Screenshots:

- [FreeCAD](https://github.com/FreeCAD/FreeCAD) - FreeCAD is an open-source 3D parametric modeler -
More

Languages: c++ Python icon
Links: Latest Release   GitHub stars   License
Website: https://www.freecad.org/
Screenshots:

+
More

Languages: c++ Python icon
Links: Latest Release   GitHub stars   License
Website: https://www.freecad.org/
Screenshots:

- [Gaphor](https://github.com/gaphor/gaphor) - Gaphor is the simple modeling tool for UML and SysML. -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Website: https://gaphor.org

+
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Website: https://gaphor.org

- [GifCapture](https://github.com/onmyway133/GifCapture) - Gif capture app for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

- [Gifcurry](https://github.com/lettier/gifcurry) - Video to GIF maker with a graphical interface capable of cropping, adding text, seeking, and trimming. -
More

Languages: Haskell icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Haskell icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Gifski](https://github.com/sindresorhus/Gifski) - Convert videos to high-quality GIFs. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

- [InfiniteCanvas](https://github.com/CleanCocoa/InfiniteCanvas) - Proof of concept Mac drawing application. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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:

+
More

Languages: C++ icon Python icon C icon
Website: https://krita.org/en/
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:

+
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

+
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:

+
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:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 💻 IDE (12) - [Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more. -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://netbeans.apache.org/
Screenshots:


+
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://netbeans.apache.org/
Screenshots:


- [Atom](https://github.com/atom/atom) - The hackable text editor. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://auroraeditor.com
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://auroraeditor.com
Screenshots:

- [Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://brackets.io/
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://brackets.io/
Screenshots:

- [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.codeedit.app/
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.codeedit.app/
Screenshots:

- [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. -
More

Languages: C icon c++
Links: Latest Release   GitHub stars   License
Website: https://www.geany.org/
Screenshots:

+
More

Languages: C icon c++
Links: Latest Release   GitHub stars   License
Website: https://www.geany.org/
Screenshots:

- [IntelliJ IDEA Community Edition](https://github.com/JetBrains/intellij-community) - IntelliJ IDEA is an integrated development environment written in Java for developing computer software -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://www.jetbrains.com/idea/
Screenshots:

+
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://www.jetbrains.com/idea/
Screenshots:

- [LiveCode](https://github.com/livecode/livecode) - Cross-platform development IDE. -
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Website: https://livecode.org/

+
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Website: https://livecode.org/

- [Oni](https://github.com/onivim/oni) - Oni is a modern take on modal editing code editor focused on developer productivity. -
More

Languages: JavaScript icon TypeScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon TypeScript icon
Links: Latest Release   GitHub stars   License

- [Vim](https://github.com/vim/vim) - ubiquitous text editor -
More

Languages: C icon Vim script
Links: Latest Release   GitHub stars   License
Website: https://www.vim.org/
Screenshots:

+
More

Languages: C icon Vim script
Links: Latest Release   GitHub stars   License
Website: https://www.vim.org/
Screenshots:

- [Visual Studio Code](https://github.com/Microsoft/vscode) - Code editor developed by Microsoft. -
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [ZeroBraneStudio](https://github.com/pkulchenko/ZeroBraneStudio) - ZeroBrane Studio is a lightweight cross-platform Lua IDE with code completion, syntax highlighting, remote debugger, code analyzer, live coding, and debugging support for various Lua engines. -
More

Languages: Lua icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Lua icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 🖼️ Images (17) - [APNGb](https://github.com/shgodoroja/APNGb) - macOS app which assembles and disassembles animated png files. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Crunch](https://github.com/chrissimpkins/Crunch) - Insane(ly slow but wicked good) PNG image optimization. -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Python icon
Links: Latest Release   GitHub stars   License

- [ExifCleaner](https://github.com/szTheory/exifcleaner) - Remove image metadata with drag and drop, multi-core batch processing, and dark mode. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://exifcleaner.com
Screenshots:



+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://exifcleaner.com
Screenshots:



- [Flameshot](https://github.com/flameshot-org/flameshot) - Powerful yet simple to use screenshot software. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://flameshot.org
Screenshots:

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://flameshot.org
Screenshots:

- [Freehand](https://github.com/wddwycc/Freehand) - macOS Status Bar App for quick sketch. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Gimp](https://github.com/GNOME/gimp) - Gimp is GNU Image Manipulation Program. -
More

Languages: C icon
Links: Latest Release   GitHub stars   License

+
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:

+
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

+
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:



+
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:

+
More

Languages: c++
Website: https://inkscape.org/
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

+
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

- [Krita](https://invent.kde.org/graphics/krita) - Krita is a cross-platform application for creating digital art files from scratch like illustrations, concept art, matte painting, textures, comics and animations. -
More

Languages: C++ icon Python icon C icon
Website: https://krita.org/en/
Screenshots:

+
More

Languages: C++ icon Python icon C icon
Website: https://krita.org/en/
Screenshots:

- [PhotoMiner](https://github.com/gergelysanta/photominer) - macOS app for finding and lost forgotten photos on your disks. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(3 more screenshots available in the repository)

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(3 more screenshots available in the repository)

- [Screenbar](https://github.com/crilleengvall/Screenbar) - macOS menubar app for automating screenshots. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Seashore](https://github.com/robaho/seashore) - Easy to use macOS image editing application for the rest of us. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [WebPonize](https://github.com/1000ch/WebPonize) - WebPonize is a macOS App for converting PNG, JPEG, animated (or not) GIF images into WebP. -
More

Languages: Swift icon C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon C icon
Links: Latest Release   GitHub stars   License

### ⌨️ Keyboard (9) - [AnnePro-mac](https://github.com/msvisser/AnnePro-mac) - macOS application for controlling AnnePro keyboard over bluetooth. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Fluor](https://github.com/Pyroh/Fluor) - Handy tool for macOS allowing you to switch Fn keys' mode based on active application. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [GokuRakuJoudo](https://github.com/yqrashawn/GokuRakuJoudo) - Karabiner-Elements configuration manager, rescue to bloated karabiner.json -
More

Languages: Clojure icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Clojure icon
Links: Latest Release   GitHub stars   License

- [Karabiner](https://github.com/tekezo/Karabiner) - Karabiner (KeyRemap4MacBook) is a powerful utility for keyboard customization. -
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

- [Karabiner-Elements](https://github.com/pqrs-org/Karabiner-Elements) - Karabiner-Elements is a powerful utility for keyboard customization on macOS Sierra (10.12) or later. -
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

- [Kawa](https://github.com/hatashiro/kawa) - Better input source switcher for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Keycastr](https://github.com/keycastr/keycastr) - Keystroke visualizer. -
More

Languages: Objective-C
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C
Links: Latest Release   GitHub stars   License
Screenshots:

- [Thor](https://github.com/gbammc/Thor) - Switch the right application ASAP. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Unshaky](https://github.com/aahung/Unshaky) - A software attempt to address the "double key press" issue on Apple's butterfly keyboard -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://unshaky.nestederror.com/
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://unshaky.nestederror.com/
Screenshots:


### 📧 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

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [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:


+
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Mailspring](https://github.com/Foundry376/Mailspring) - 💌 A beautiful, fast and maintained fork of @nylas Mail by one of the original authors -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://getmailspring.com/

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://getmailspring.com/

- [Rambox](https://github.com/ramboxapp/community-edition) - Cross Platform messaging and emailing app that combines common web applications into one. -
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

- [SimpleLogin](https://github.com/simple-login/mac-app) - Email Alias solution: protect your real email address. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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:



+
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:

+
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 📦 Medical (1) - [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Screenshots:



+
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Screenshots:



### 📊 Menubar (39) - [Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [Akku](https://github.com/jariz/Akku) - The missing macOS bluetooth headset battery indicator app. -
More

Languages: Swift icon Python icon Ruby icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [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:

+
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. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [DatWeatherDoe](https://github.com/inderdhir/DatWeatherDoe) - Simple menu bar weather app for macOS written in Swift. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [DisplayMenu](https://github.com/Kwpolska/DisplayMenu) - Simple (bare-bones) macOS menubar extra to apply display presets. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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:

+
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:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://www.mowglii.com/itsycal/
Screenshots:

+
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. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [LinkLiar](https://github.com/halo/LinkLiar) - Keep your MAC address random for privacy (intuitive GUI for ifconfig) -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://halo.github.io/LinkLiar/
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://halo.github.io/LinkLiar/
Screenshots:

- [Market Bar](https://github.com/mnndnl/market-bar ) - Tiny stocks watcher for the menu bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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:

+
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

+
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

+
More

Languages: JavaScript 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:

+
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. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Night Shift Control](https://github.com/isaiasmatewos/night-shift-control) - Night Shift Control is a simple macOS menubar app for controlling Night Shift. It's aim is to bring features from f.lux which are missing from Night Shift such as disabling Night Shift for certain apps. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Nocturnal](https://github.com/joshjon/nocturnal) - Menu bar app featuring darker than dark dimming, Night Shift fine tuning, and the ability to turn off TouchBar on MacBook Pro. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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

+
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

+
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:

+
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. -
More

Languages: Swift icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. -
More

Languages: Swift icon metal
Links: Latest Release   GitHub stars   License
Website: https://superhighfives.com/pika
Screenshots:

+
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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [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:

+
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. -
More

Languages: Objective-C icon C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon C icon
Links: Latest Release   GitHub stars   License

- [Shifty](https://github.com/thompsonate/Shifty) - macOS menu bar app that gives you more control over Night Shift. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [SwiftBar](https://github.com/swiftbar/SwiftBar) - Powerful macOS menu bar customization tool. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://swiftbar.app

+
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)

+
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:

+
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:

+
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

+
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

+
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

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

### 🎧 Music (15) - [Carol](https://github.com/AnaghSharma/Carol) - A minimal and beautiful lyrics app that stays in the menu bar of macOS. -
More

Languages: C# icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C# icon
Links: Latest Release   GitHub stars   License

- [ChordDetector](https://github.com/cemolcay/ChordDetector) - Tiny menu bar app that listens iTunes and Spotify to detect chords of songs! -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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

+
More

Languages: CoffeeScript icon
Links: Latest Release   GitHub stars   License

- [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:

+
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:

+
More

Languages: JavaScript 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:

+
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

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.plugformac.com/
Screenshots:

+
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:


+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
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:

+
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)

+
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:


+
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:


+
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:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://spicetify.app/
Screenshots:

### 📰 News (6) - [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:

+
More

Languages: Swift 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

+
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

+
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)

+
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:

+
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:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 📔 Notes (16) - [Boostnote](https://github.com/BoostIO/BoostNote-Legacy) - Note-taking application made for programmers just like you. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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:

+
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:


+
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

+
More

Languages: JavaScript icon CSS 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

+
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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [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:

+
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

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [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:

+
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:

+
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

+
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

+
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

+
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:


+
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)

+
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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 📦 Other (22) - [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://betaflight.com/
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://betaflight.com/
Screenshots:

- [Cakebrew](https://github.com/brunophilipe/Cakebrew) - Manage your Homebrew formulas with style using Cakebrew. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [ChipMunk](https://github.com/esrlabs/chipmunk) - Log analysis tool. -
More

Languages: TypeScript icon Rust icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: TypeScript icon Rust icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [DevDocs for macOS](https://github.com/dteoh/devdocs-macos) - An unofficial DevDocs API documentation viewer. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Gas Mask](https://github.com/2ndalpha/gasmask) - Hosts file manager for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [Hosts](https://github.com/specialunderwear/Hosts.prefpane) - Cocoa GUI for /etc/hosts. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [ImageOptim](https://github.com/ImageOptim/ImageOptim) - GUI image optimizer for Mac. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [Keyframes Player](https://github.com/insidegui/KeyframesPlayer) - Simple macOS app to preview animations created with Facebook's keyframes framework. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Lepton](https://github.com/hackjutsu/Lepton) - Democratizing Code Snippets Management (macOS/Win/Linux). -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
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)

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

- [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

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [QorumLogs](https://github.com/Esqarrouth/QorumLogs) - Swift Logging Utility for Xcode & Google Docs. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [React Native Debugger](https://github.com/jhen0409/react-native-debugger) - Desktop app for inspecting your React Native projects. macOS, Linux, and Windows. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Reactotron](https://github.com/infinitered/reactotron) - Desktop app for inspecting your React JS and React Native projects. macOS, Linux, and Windows. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [RktMachine](https://github.com/woofwoofinc/rktmachine) - Menu bar macOS app for running rkt in a macOS hypervisor CoreOS VM. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Ruby.app](https://github.com/gosu/ruby-app) - macOS app that contains a full Ruby installation (for use with Ruby/Gosu). -
More

Languages: Ruby icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Ruby icon
Links: Latest Release   GitHub stars   License

- [Shuttle](https://github.com/fitztrev/shuttle) - Simple SSH shortcut menu for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [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

+
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:

+
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

+
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:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 📦 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

+
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:

+
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

+
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:

+
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:


+
More

Languages: Haskell icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.plugformac.com/
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.plugformac.com/
Screenshots:

### 📦 Podcast (7) - [Cumulonimbus](https://github.com/z-------------/CPod) - Simple, beautiful podcast app. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [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

+
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:

+
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)

+
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:

+
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

+
More

Languages: Python icon
Links: Latest Release   GitHub stars   License

### ⏱️ Productivity (55) - [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app. -
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

- [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Cerebro](https://github.com/cerebroapp/cerebro) - Cross-platform launcher app. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [ClipMenu](https://github.com/naotaka/ClipMenu) - Clipboard manager for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Clocker](https://github.com/n0shake/Clocker) - macOS app to plan and organize through timezones. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [Condution](https://github.com/Shabang-Systems/Condution) - Create tasks, manage due dates, and filter with powerful perspectives. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.condution.com
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.condution.com
Screenshots:

- [ControlPlane](https://github.com/dustinrue/ControlPlane) - Automate running tasks based on where you are or what you do. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator... -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://devutils.com
Screenshots:

+
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:


+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Flycut](https://github.com/TermiT/flycut) - Clean and simple clipboard manager for developers. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
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. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://www.mowglii.com/itsycal/
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://www.mowglii.com/itsycal/
Screenshots:

- [KeyHolder](https://github.com/Clipy/KeyHolder) - Record shortcuts in macOS, like Alfred.app. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Kiwix](https://github.com/kiwix/apple) - Kiwix for iOS and macOS, build on Swift. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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 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:

+
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:


+
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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Manta](https://github.com/hql287/Manta) - Flexible invoicing desktop app with beautiful & customizable templates. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
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:

+
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:

+
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

+
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:


+
More

Languages: JavaScript 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)

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

- [Pomodoro Cycle](https://github.com/ziulev/pomodoro-cycle-app) - Pomodoro Cycle for macOS -
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://github.com/ziulev/pomodoro-cycle-app/releases
Screenshots:

+
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://github.com/ziulev/pomodoro-cycle-app/releases
Screenshots:

- [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://www.qownnotes.org/
Screenshots:

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://www.qownnotes.org/
Screenshots:

- [Quicksilver](https://github.com/quicksilver/Quicksilver) - Quicksilver is a fast macOS productivity application that gives you the power to control your Mac quickly and elegantly. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
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:

+
More

Languages: JavaScript icon CSS 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

+
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:

+
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

+
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License

- [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:

+
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:


+
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://khrykin.github.io/StrategrDesktop/
Screenshots:


- [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. -
More

Languages: TypeScript icon JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://super-productivity.com
Screenshots:

+
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' -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Thyme](https://github.com/joaomoreno/thyme) - The task timer for OS X. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
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:


+
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)

+
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:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [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

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

- [TomatoBar](https://github.com/ivoronin/TomatoBar) - Pomodoro Technique Timer for macOS with Touch Bar support. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [TrelloApp](https://github.com/jlong/TrelloApp) - Unofficial wrapper application for Trello.com written in Swift. This is almost a "Hello World" for a site specific browser. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Ueli](https://github.com/oliverschwendener/ueli) - A keystroke launcher for macOS (and Windows) like Spotlight or Alfred. -
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://ueli.app/
Screenshots:

+
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://ueli.app/
Screenshots:

- [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Watson](https://github.com/TailorDev/Watson) - A CLI application for time tracking. -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Whale](https://github.com/1000ch/whale) - Unofficial Trello app. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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

+
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:

+
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

+
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:


+
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

+
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:

+
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:

+
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:

+
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

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

### 📦 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)

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(3 more screenshots available in the repository)

- [Brooklyn](https://github.com/pedrommcarrasco/Brooklyn) - Screensaver inspired by Apple's Event on October 30, 2018. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Epoch Flip Clock Screensaver](https://github.com/chrstphrknwtn/epoch-flip-clock-screensaver) - Unix epoch timestamp flip clock screensaver. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Image-As-Wallpaper](https://github.com/ved62/Image-As-Wallpaper) - Utility application helps with selection of images for using as desktop wallpaper or in screensaver on Mac computers. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Irvue](https://github.com/leonspok/Irvue-Screensaver) - Screensaver for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



- [Life Saver](https://github.com/amiantos/lifesaver) - An abstract screensaver based on Conway's Game of Life implemented with SpriteKit -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



- [MinimalClock](https://github.com/mattiarossini/MinimalClock) - Simple and elegant screensaver that displays the time. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://mattiarossini.github.io/MinimalClock/
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://mattiarossini.github.io/MinimalClock/
Screenshots:

- [MusaicFM](https://github.com/obrhoff/MusaicFM) - iTunes Screensaver Clone for Spotify and Last.fm -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Predator](https://github.com/vpeschenkov/Predator) - A predator-inspired clock screensaver for macOS -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [The GitHub Matrix Screensaver](https://github.com/winterbe/github-matrix-screensaver) - The GitHub Matrix Screensaver for macOS. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


### 🔒 Security (9) - [Cloaker](https://github.com/spieglt/cloaker) - simple drag-and-drop, password-based file encryption. -
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License
Website: https://adequate.systems/
Screenshots:

+
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License
Website: https://adequate.systems/
Screenshots:

- [Cryptomator](https://github.com/cryptomator/cryptomator) - Multi-platform transparent client-side encryption of your files in the cloud. -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://cryptomator.org/

+
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

+
More

Languages: Objective-C 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:

+
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

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [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:


+
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

+
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:

+
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:


+
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Screenshots:


### 📤 Sharing Files (9) - [Cyberduck](https://github.com/iterate-ch/cyberduck) - Cyberduck is a libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure & OneDrive, Google Drive and Dropbox. -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://cyberduck.io
Screenshots:


+
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

+
More

Languages: Python 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

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://nitroshare.net

- [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

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [Soduto](https://github.com/soduto/Soduto) - Soduto is a KDEConnect compatible application for macOS. It gives AirDrop like integration and allows file and clipboard sharing between your phones, desktops and tablets. -
More

Languages: Swift icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://soduto.com/

+
More

Languages: Swift icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://soduto.com/

- [Transmission](https://github.com/transmission/transmission) - Official Transmission BitTorrent client repository. -
More

Languages: Objective-C icon C icon
Links: Latest Release   GitHub stars   License

+
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

+
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

+
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

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

### 👥 Social Networking (9) - [Caprine](https://github.com/sindresorhus/caprine#features) - Elegant Facebook Messenger desktop app. -
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

- [Goofy](https://github.com/danielbuechele/goofy) - Unofficial Facebook Messenger client. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [Leviathan](https://github.com/Swiftodon/Leviathan) - Leviathan is a iOS and macOS client application for the Mastodon social network. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Messenger](https://github.com/rsms/fb-mac-messenger) - macOS app wrapping Facebook's Messenger for desktop. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Product Hunt](https://github.com/producthunt/producthunt-osx) - share and discover your favorite new products and applications. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Quail](https://github.com/1000ch/quail) - Unofficial [esa](https://esa.io) app. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram Desktop App. -
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

- [RedditOS](https://github.com/Dimillian/RedditOS) - A SwiftUI Reddit client for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Simpo](https://github.com/KeliCheng/Simpo) - macOS menubar app to post status quickly. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


### 📦 Streaming (3) - [Galeri](https://github.com/michealparks/galeri) - Perpetual artwork streaming app. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [OBS Studio](https://github.com/obsproject/obs-studio) - Free and open source software for live streaming and screen recording. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://obsproject.com/

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://obsproject.com/

- [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.plugformac.com/
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.plugformac.com/
Screenshots:

### ⚙️ 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)

+
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:



+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



- [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:


+
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:

+
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

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [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:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [HoRNDIS](https://github.com/jwise/HoRNDIS) - Android USB tethering driver for macOS. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

- [Juice](https://github.com/brianmichel/Juice) - Make your battery information a bit more interesting. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevents your Mac from going to sleep. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Latest](https://github.com/mangerlahn/Latest) - Small utility app for macOS that makes sure you know about all the latest updates to the apps you use. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
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

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [ProfileCreator](https://github.com/ProfileCreator/ProfileCreator) - macOS Application to create standard or customized configuration profiles. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Sloth](https://github.com/sveinbjornt/Sloth) - Sloth is an macOS application that displays a list of all open files and sockets in use by all running applications on your system. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



- [Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative. -
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License

- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Turbo Boost Switcher](https://github.com/rugarciap/Turbo-Boost-Switcher) - Turbo Boost Switcher is a little application for Mac computers that allows to enable and/or disable the Turbo Boost feature. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [VerticalBar](https://github.com/DeromirNeves/DockSeparator) - macOS application to add a vertical bar to Dock. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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/

+
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:

+
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:

+
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:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://github.com/LumingYin/macOSLucidaGrande/releases
Screenshots:

### 📺 Terminal (13) - [Alacritty](https://github.com/alacritty/alacritty) - Cross-platform, GPU-accelerated terminal emulator. -
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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

+
More

Languages: Go 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:

+
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

+
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:

+
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [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

+
More

Languages: Python icon C icon
Links: Latest Release   GitHub stars   License

- [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:


+
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

+
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

+
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

+
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:

+
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

+
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:

+
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License
Screenshots:

### 📦 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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [MyTouchbarMyRules](https://github.com/toxblh/MTMR) - App to customize your Touch Bar as you want. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Pock](https://github.com/pock/pock) - Display macOS Dock in Touch Bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://pock.app/
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://pock.app/
Screenshots:

- [Touch Bar Preview](https://github.com/touchbar/Touch-Bar-Preview) - Small application to display your designs on the Touch Bar of the new MacBook Pro. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Touch Bar Simulator](https://github.com/sindresorhus/touch-bar-simulator) - Use the Touch Bar on any Mac. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Touch Emoji](https://github.com/ilyalesik/touch-emoji) - Emoji picker for MacBook Pro Touch Bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


### 🛠️ Utilities (80) - [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(2 more screenshots available in the repository)

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(2 more screenshots available in the repository)

- [ArchiveMounter](https://github.com/ivoronin/ArchiveMounter) - Mounts archives like disk images. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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

+
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.balena.io/etcher

- [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

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://betaflight.com/
Screenshots:

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://betaflight.com/
Screenshots:

- [Bitwarden](https://github.com/bitwarden/desktop) - Cross-platform password management solutions for individuals, teams, and business organizations. -
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://bitwarden.com/
Screenshots:



+
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://bitwarden.com/
Screenshots:



- [Bitwarden Menu](https://github.com/jnsdrtlf/bitwarden-menubar) - Bitwarden Password Manager in your menu bar -
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers. -
More

Languages: Swift icon JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://boop.okat.best
Screenshots:

+
More

Languages: Swift icon JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://boop.okat.best
Screenshots:

- [Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Secure password manager for mac and other platforms. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Catch](https://github.com/mipstian/catch/) - Catch: Broadcatching made easy. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [CornerCal](https://github.com/ekreutz/CornerCal) - Simple, clean calendar and clock app for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Crypter](https://github.com/HR/Crypter) - Crypter is an innovative, convenient and secure cross-platform crypto app that simplifies secure password generation and management by requiring you to only remember one bit, the MasterPass. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+
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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://devutils.com
Screenshots:

- [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:

+
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

+
More

Languages: Swift 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:

+
More

Languages: Go icon
Links: Latest Release   GitHub stars   License
Website: https://adequate.systems/
Screenshots:

- [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

+
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

+
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:


+
More

Languages: Swift 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

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [KeePassXC](https://github.com/keepassxreboot/keepassxc) - Cross-platform community-driven port of the Windows application "Keepass Password Safe" -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

- [KeeWeb](https://github.com/keeweb/keeweb) - Cross-platform password manager compatible with KeePass. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [Keka](https://github.com/aonez/Keka) - Keka is a full featured file archiver, as easy as it can be. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.keka.io/en/
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.keka.io/en/
Screenshots:

- [Kyapchar](https://github.com/vishaltelangre/Kyapchar) - Simple screen and microphone audio recorder for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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

+
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:


+
More

Languages: JavaScript icon TypeScript 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:

+
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. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Maria](https://github.com/shincurry/Maria) - macOS native app/widget for aria2 download tool. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Meme Maker](https://github.com/MemeMaker/Meme-Maker-Mac) - Meme Maker macOS application for meme creation. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse -
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys. -
More

Languages: Swift icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Monolingual](https://github.com/IngmarStein/Monolingual) - Remove unnecessary language resources from macOS -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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

+
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

+
More

Languages: Shell icon
Links: Latest Release   GitHub stars   License

- [Nmap](https://github.com/nmap/nmap) - Nmap - the Network Mapper. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://nmap.org

+
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. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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

+
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

+
More

Languages: Swift 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/

+
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)

+
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

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [PercentCalculator](https://github.com/cemolcay/PercentCalculator) - A menu bar application that calculates percents. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. -
More

Languages: Swift icon metal
Links: Latest Release   GitHub stars   License
Website: https://superhighfives.com/pika
Screenshots:

+
More

Languages: Swift icon metal
Links: Latest Release   GitHub stars   License
Website: https://superhighfives.com/pika
Screenshots:

- [Plain Pasta](https://github.com/hisaac/PlainPasta) - Plaintextify your clipboard -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [PowerShell](https://github.com/powershell/powershell) - PowerShell is a cross-platform automation and configuration tool/framework that works well with your existing tools. -
More

Languages: C# icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C# icon
Links: Latest Release   GitHub stars   License

- [Rugby](https://github.com/swiftyfinch/Rugby) - 🏈 Cache CocoaPods for faster rebuild and indexing Xcode project. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://swiftyfinch.github.io/en/2021-03-09-rugby-story/
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://swiftyfinch.github.io/en/2021-03-09-rugby-story/
Screenshots:

- [ScreenCat](https://github.com/maxogden/screencat) - ScreenCat is a screen sharing + remote collaboration application. -
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

- [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [SlowQuitApps](https://github.com/dteoh/SlowQuitApps) - Add a global delay to Command-Q to stop accidental app quits. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative. -
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License

- [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. -
More

Languages: TypeScript icon JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://super-productivity.com
Screenshots:

+
More

Languages: TypeScript icon JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://super-productivity.com
Screenshots:

- [Telephone](https://github.com/64characters/Telephone) - SIP softphone for macOS. -
More

Languages: Objective-C icon Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon Swift icon
Links: Latest Release   GitHub stars   License

- [The Blockstack Browser](https://github.com/stacks-network/blockstack-browser) - Blockstack is an internet for decentralized apps where users own their data. The Blockstack Browser allows you to explore the Blockstack internet. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [ToTheTop](https://github.com/zenangst/ToTheTop) - Small macOS application to help you scroll to the top. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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:

+
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

+
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:

+
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

+
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/

+
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:

+
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

+
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

+
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:

+
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:


+
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:

+
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:

+
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

+
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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://wechsel.weise.io
Screenshots:

- [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:

+
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Übersicht](https://github.com/felixhageloh/uebersicht) - Keep an eye on what's happening on your machine and in the world. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

### 🔐 VPN & Proxy (6) - [ShadowsocksX-NG](https://github.com/shadowsocks/ShadowsocksX-NG) - Next Generation of ShadowsocksX. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [Specht](https://github.com/zhuhaow/Specht) - Rule-based proxy app built with Network Extension for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [SpechtLite](https://github.com/zhuhaow/SpechtLite) - Rule-based proxy app for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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

+
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

+
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

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

### 🎬 Video (19) - [Acid.Cam.v2.OSX](https://github.com/lostjared/Acid.Cam.v2.OSX) - Acid Cam v2 for macOS distorts video to create art. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

- [AppleEvents](https://github.com/insidegui/AppleEvents) - Unofficial Apple Events app for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [Conferences.digital](https://github.com/zagahr/Conferences.digital) - Best way to watch the latest and greatest videos from your favourite developer conferences for free on your Mac. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Datamosh](https://github.com/maelswarm/Datamosh) - Datamosh your videos on macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
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:


+
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

+
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

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [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

+
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:

+
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:

+
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

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

- [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

+
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

+
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

+
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/

+
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

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

- [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:



+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



- [Yoda](https://github.com/whoisandy/yoda) - Nifty macOS application which enables you to browse and download videos from YouTube. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

### 🖥️ 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

+
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

+
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)

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

- [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:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Desktop Wallpaper Switcher](https://github.com/VioletGiraffe/desktop-wallpaper-switcher) - Win / Linux / macOS tool for managing and cycling desktop wallpapers. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

- [Muzei](https://github.com/naman14/Muzei-macOS) - Muzei wallpaper app for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+
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:

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://sindresorhus.com/plash
Screenshots:

- [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:

+
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:

+
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

+
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

+
More

Languages: Python icon
Links: Latest Release   GitHub stars   License

### 🪟 Window Management (11) - [AltTab](https://github.com/lwouis/alt-tab-macos) - AltTab brings the power of Windows alt-tab to macOS. -
More

Languages: Swift icon Shell icon
Links: Latest Release   GitHub stars   License
Website: https://alt-tab-macos.netlify.app/
Screenshots:



+
More

Languages: Swift icon Shell icon
Links: Latest Release   GitHub stars   License
Website: https://alt-tab-macos.netlify.app/
Screenshots:



- [Amethyst](https://github.com/ianyh/Amethyst) - Automatic tiling window manager for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



- [AppGrid](https://github.com/mjolnirapp/AppGrid) - Grid-based keyboard window manager for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Desktop Profiles](https://github.com/mamiksik/Desktop-Profiles) - An innovative desktop/window manager for macOS -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


- [Hammerspoon](https://github.com/Hammerspoon/hammerspoon) - Staggeringly powerful macOS desktop automation with Lua. -
More

Languages: Lua icon Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Lua icon Objective-C icon
Links: Latest Release   GitHub stars   License

- [Phoenix](https://github.com/kasper/phoenix) - Lightweight macOS window and app manager scriptable with JavaScript. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

- [Rectangle](https://github.com/rxhanson/Rectangle) - Rectangle is a window manager heavily based on Spectacle, written in Swift. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://rectangleapp.com

+
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://rectangleapp.com

- [ShiftIt](https://github.com/fikovnik/ShiftIt) - Managing windows size and position. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



- [Slate](https://github.com/jigish/slate) - Slate is a window management application similar to Divvy and SizeUp -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [Spectacle](https://github.com/eczarny/spectacle) - Spectacle allows you to organize your windows without using a mouse. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

- [Yabai](https://github.com/koekeishiya/yabai) - A tiling window manager for macOS based on binary space partitioning. -
More

Languages: C icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+
More

Languages: C icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

From 1f96ec57c880b40721ce5de2a1c5aeac07e68818 Mon Sep 17 00:00:00 2001 From: Serhii Londar Date: Thu, 4 Dec 2025 16:47:39 +0100 Subject: [PATCH 18/62] 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 """

@@ -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:

@@ -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:

### 🌐 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

@@ -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:

@@ -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

-#### 📦 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

-#### 📦 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)

-#### 📦 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:

-#### 📦 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

@@ -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:

### 📝 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:

-#### 📦 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

-#### 📦 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:


-#### 📦 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:


-#### 📦 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:



-#### 📦 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:

### 🧩 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:


### 🔍 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:

@@ -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:

### 💻 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:

-### 📦 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:



@@ -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

@@ -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:

### 📰 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:

### 📔 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

### 📦 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:

-### 📦 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:

-### 📦 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

### ⏱️ 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

-### 📦 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:


### 📤 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

### 👥 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:


-### 📦 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 ### ⚙️ 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:

### 📺 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:

-### 📦 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 ### 🔐 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

### 🎬 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

### 🪟 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 From 8b3183d98993e1a7d14c290e8accb39437407ac7 Mon Sep 17 00:00:00 2001 From: Serhii Londar Date: Thu, 4 Dec 2025 17:12:52 +0100 Subject: [PATCH 19/62] Update generated_at timestamp in api.json to reflect the latest data retrieval --- .github/main.swift | 81 +- README.md | 11662 ++++++++++++++++++++++++++++++++++++++++--- api.json | 2 +- 3 files changed, 10999 insertions(+), 746 deletions(-) diff --git a/.github/main.swift b/.github/main.swift index 0183a68..efdce65 100644 --- a/.github/main.swift +++ b/.github/main.swift @@ -73,24 +73,27 @@ Hey friend! Help me out for a couple of :beers:! | +| C++ | C++ | +| C# | C# | +| Clojure | Clojure | +| CoffeeScript | CoffeeScript | +| CSS | CSS | +| Elm | Elm | +| Go | Go | +| Haskell | Haskell | +| Java | Java | +| JavaScript | JavaScript | +| Lua | Lua | +| Objective-C | Objective-C | +| Python | Python | +| Ruby | Ruby | +| Rust | Rust | +| Shell | Shell | +| Swift | Swift | +| TypeScript | TypeScript | ## Contents @@ -334,7 +337,10 @@ class ReadmeGenerator { 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) + // Add explicit anchor for TOC linking + let anchorId = generateAnchorId(category.title) + readmeString.append(String.enter + "" + String.enter) + readmeString.append(String.section + String.space + categoryEmoji + String.space + category.title + String.space + "(\(categoryCount))" + String.enter) var categoryApplications = categoryApps categoryApplications = categoryApplications.sorted(by: { $0.title.lowercased() < $1.title.lowercased() }) @@ -355,7 +361,10 @@ class ReadmeGenerator { 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) + // Add explicit anchor for TOC linking + let subAnchorId = generateAnchorId(subcategory.title) + readmeString.append(String.enter + "" + String.enter) + readmeString.append(String.subsection + String.space + subcategoryEmoji + String.space + subcategory.title + String.space + "(\(subcategoryCount))" + String.enter) var categoryApplications = subcategoryApps categoryApplications = categoryApplications.sorted(by: { $0.title.lowercased() < $1.title.lowercased() }) @@ -408,6 +417,16 @@ func normalizeLanguageName(_ lang: String) -> String { } } +// Helper function to generate GitHub-compatible anchor IDs from titles +func generateAnchorId(_ title: String) -> String { + return title.lowercased() + .replacingOccurrences(of: " / ", with: "--") // Handle " / " like GitHub does + .replacingOccurrences(of: "/", with: "-") + .replacingOccurrences(of: " & ", with: "--") // Handle " & " like GitHub does + .replacingOccurrences(of: "&", with: "-") + .replacingOccurrences(of: " ", with: "-") +} + extension String { static let empty = "" static let space = " " @@ -433,12 +452,12 @@ extension JSONApplication { // Collapsible extra details (languages, links, screenshots) indented to belong to the list item let indent = " " - markdownDescription.append(indent + "
") - markdownDescription.append(indent + "More") - markdownDescription.append(indent + "

") + markdownDescription.append("\n" + indent + "

\n") + markdownDescription.append(indent + "More\n") + markdownDescription.append(indent + "

\n\n") // Add languages - markdownDescription.append("Languages: \(languages)
") + markdownDescription.append(" **Languages:** \(languages)\n\n") // Add download/badge section let ownerRepo = githubOwnerRepo(from: self.repoURL) @@ -470,33 +489,33 @@ extension JSONApplication { badges.append(brewBadge) } if badges.isEmpty == false { - markdownDescription.append("Links: \(badges.joined(separator: "   "))
") + markdownDescription.append(" **Links:** \(badges.joined(separator: "   "))\n\n") } // Add official site if available if !self.officialSite.isEmpty { - markdownDescription.append("Website: \(self.officialSite)
") + markdownDescription.append(" **Website:** [\(self.officialSite)](\(self.officialSite))\n\n") } // Add screenshots with lazy loading to improve page load performance if self.screenshots.count > 0 { - markdownDescription.append("Screenshots:
") + markdownDescription.append(" **Screenshots:**\n\n") // Limit to first 3 screenshots to reduce load time let limitedScreenshots = self.screenshots.count > 3 ? Array(self.screenshots.prefix(3)) : self.screenshots limitedScreenshots.forEach({ - markdownDescription.append("
") + markdownDescription.append(" \n\n") }) // Add a note if there are more screenshots if self.screenshots.count > 3 { - markdownDescription.append("(\(self.screenshots.count - 3) more screenshots available in the repository)
") + markdownDescription.append(" *(\(self.screenshots.count - 3) more screenshots available in the repository)*\n\n") } } - markdownDescription.append(indent + "

") - markdownDescription.append(indent + "
") + markdownDescription.append(indent + "

\n") + markdownDescription.append(indent + "
\n") return markdownDescription } diff --git a/README.md b/README.md index 233c1cd..9ecfce8 100644 --- a/README.md +++ b/README.md @@ -52,24 +52,27 @@ Hey friend! Help me out for a couple of :beers:! | +| C++ | C++ | +| C# | C# | +| Clojure | Clojure | +| CoffeeScript | CoffeeScript | +| CSS | CSS | +| Elm | Elm | +| Go | Go | +| Haskell | Haskell | +| Java | Java | +| JavaScript | JavaScript | +| Lua | Lua | +| Objective-C | Objective-C | +| Python | Python | +| Ruby | Ruby | +| Rust | Rust | +| Shell | Shell | +| Swift | Swift | +| TypeScript | TypeScript | ## Contents @@ -123,1543 +126,11774 @@ You can see in which language an app is written. Currently there are following l ## Applications + ### 🎵 Audio (36) - [[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:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.audacityteam.org/](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:

+ +
+ 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)

+ +
+ 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. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://yoni.ninja/automute/
Screenshots:


+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://yoni.ninja/automute/](https://yoni.ninja/automute/) + + **Screenshots:** + + + + + +

+
+ - [Background Music](https://github.com/kyleneideck/BackgroundMusic) - Background Music, a macOS audio utility: automatically pause your music, set individual apps' volumes and record system audio. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [BlackHole](https://github.com/ExistentialAudio/BlackHole) - BlackHole is a modern macOS virtual audio driver that allows applications to pass audio to other applications with zero additional latency. -
More

Languages: C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [CAM](https://github.com/hanayik/CAM) - macOS camera recording using ffmpeg -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ - [Clementine](https://github.com/clementine-player/Clementine) - Clementine is a modern music player and library organizer for Windows, Linux and macOS. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://www.clementine-player.org/
Screenshots:



(1 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.clementine-player.org/](https://www.clementine-player.org/) + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ - [Cog](https://bitbucket.org/losnoco/cog/src) - Cog is an open source audio player for macOS. The basic layout is a single-paned playlist interface with two retractable drawers, one for navigating the user's music folders and another for viewing audio file properties, like bitrate. -
More

Languages: Objective-C icon
Website: https://cogx.org/

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Website:** [https://cogx.org/](https://cogx.org/) + +

+
+ - [eqMac2](https://github.com/bitgapp/eqMac) - System-Wide Equalizer for the Mac. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ 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:

+ +
+ 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:

+ +
+ 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)

+ +
+ 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:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.karaoke-eternal.com/](https://www.karaoke-eternal.com/) + + **Screenshots:** + + + +

+
+ - [LocalRadio](https://github.com/dsward2/LocalRadio) - LocalRadio is software for listening to "Software-Defined Radio" on your Mac and mobile devices. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [LosslessCut](https://github.com/mifi/lossless-cut) - The swiss army knife of lossless video/audio editing without re-encoding. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://mifi.no/losslesscut/
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mifi.no/losslesscut/](https://mifi.no/losslesscut/) + + **Screenshots:** + + + +

+
+ - [Lyricism](https://github.com/lyc2345/Lyricism) - macOS app to show you lyric what currently iTunes or Spotify is playing. -
More

Languages: Objective-C icon Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ 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)

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ - [MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys. -
More

Languages: Swift icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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)

+ +
+ 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:

+ +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mpv.io](https://mpv.io) + + **Screenshots:** + + + +

+
+ - [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.plugformac.com/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.plugformac.com/](https://www.plugformac.com/) + + **Screenshots:** + + + +

+
+ - [Scope](https://github.com/billthefarmer/audiotools/tree/master/Scope/swift) - Audio Oscilloscope -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://billthefarmer.github.io/audiotools/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://billthefarmer.github.io/audiotools/](https://billthefarmer.github.io/audiotools/) + + **Screenshots:** + + + +

+
+ - [shairport-sync](https://github.com/mikebrady/shairport-sync) - macOS/Linux/FreeBSD/OpenBSD Airplay audio receiver. -
More

Languages: C icon C++ icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ 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:

+ +
+ 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:

+ +
+ 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:

+ +
+ 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

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Suohai](https://github.com/Sunnyyoung/Suohai) - Audio input/output source lock for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:



+ +
+ 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:



+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://billthefarmer.github.io/ctuner/ ](https://billthefarmer.github.io/ctuner/ ) + + **Screenshots:** + + + + + + + +

+
+ - [waveSDR](https://github.com/getoffmyhack/waveSDR) - macOS native desktop Software Defined Radio application using the RTL-SDR USB device. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ + ### 💾 Backup (5) - [BorgBase/Vorta](https://github.com/borgbase) - Simple and Secure Offsite Backups -
More

Languages: Python icon
Website: https://www.borgbase.com/

+ +
+ More +

+ + **Languages:** Python icon + + **Website:** [https://www.borgbase.com/](https://www.borgbase.com/) + +

+
+ - [Mackup](https://github.com/lra/mackup) - Keep your application settings in sync (macOS/Linux). -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ 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

+ +
+ 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

+ +
+ More +

+ + **Languages:** C++ icon C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### 🌐 Browser (13) - [Beaker Browser](https://github.com/beakerbrowser/beaker) - Beaker is an experimental peer-to-peer Web browser. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ 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

+ +
+ 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

+ +
+ 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/

+ +
+ More +

+ + **Languages:** JavaScript icon C++ icon C icon + + **Website:** [https://www.chromium.org/](https://www.chromium.org/) + +

+
+ - [Finicky](https://github.com/johnste/finicky) - Always opens the right browser. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Firefox](https://hg.mozilla.org/mozilla-central/) - Fast, privacy aware browser from a non-profit. Runs on Windows, macOS and Linux. -
More

Languages: JavaScript icon Rust icon C++ icon
Website: https://www.mozilla.org/en-US/firefox/browsers/

+ +
+ More +

+ + **Languages:** JavaScript icon Rust icon C++ icon + + **Website:** [https://www.mozilla.org/en-US/firefox/browsers/](https://www.mozilla.org/en-US/firefox/browsers/) + +

+
+ - [Helium](https://github.com/JadenGeller/Helium) - Floating browser window for macOS. -
More

Languages: Objective-C icon Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://minbrowser.org](https://minbrowser.org) + +

+
+ - [otter-browser](https://github.com/OtterBrowser/otter-browser) - Otter Browser aims to recreate the best aspects of the classic Opera (12.x) UI using Qt5. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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)

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://sindresorhus.com/plash](https://sindresorhus.com/plash) + + **Screenshots:** + + + +

+
+ - [Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [seb-mac](https://github.com/SafeExamBrowser/seb-mac) - Safe Exam Browser for macOS and iOS. -
More

Languages: C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### 💬 Chat (19) - [Adium](https://github.com/adium/adium) - Instant messaging application that can connect to XMPP (Jabber), IRC and more. -
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Website: https://adium.im/
Screenshots:

+ +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://adium.im/](https://adium.im/) + + **Screenshots:** + + + +

+
+ - [Beagle IM](https://github.com/tigase/beagle-im) - Powerful XMPP client with support for file transfer, VoIP and end-to-end encryption. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://beagle.im/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://beagle.im/](https://beagle.im/) + + **Screenshots:** + + + +

+
+ - [ChitChat](https://github.com/stonesam92/ChitChat) - Native Mac app wrapper for WhatsApp Web. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Electronic WeChat](https://github.com/geeeeeeeeek/electronic-wechat) - Better WeChat on macOS and Linux. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Element](https://github.com/vector-im/element-web) - Element is a collaboration app (currently Electron) for the [Matrix](https://matrix.org/) protocol. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Franz](https://github.com/meetfranz/franz) - Franz is messaging application for services like WhatsApp, Slack, Messenger and many more. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Google Allo for Desktop](https://github.com/kelyvin/Google-Allo-For-Desktop) - Native macOS & Windows desktop app for Google Allo. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [GroupMe](https://github.com/dcrousso/GroupMe) - Unofficial GroupMe App. -
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [MessagesHistoryBrowser](https://github.com/glaurent/MessagesHistoryBrowser) - macOS application to comfortably browse and search through your Messages.app history. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [RocketChat](https://github.com/RocketChat/Rocket.Chat.Electron) - Free open source chat system for teams. An alternative to Slack that can also be self hosted. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.rocket.chat/

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.rocket.chat/](https://www.rocket.chat/) + +

+
+ - [Seaglass](https://github.com/neilalexander/seaglass) - A truly native [Matrix](https://matrix.org/blog/home/) client for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Signal Desktop](https://github.com/signalapp/Signal-Desktop) - Electron app that links with your Signal Android or Signal iOS app. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Telegram](https://github.com/overtake/TelegramSwift) - Source code of Telegram for macOS on Swift. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Telegram Desktop](https://github.com/telegramdesktop/tdesktop) - Telegram Desktop messaging app. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Textual](https://github.com/Codeux-Software/Textual) - Textual is an IRC client for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ - [Thunderbird](https://hg.mozilla.org/mozilla-central) - Backed by Mozilla, Thunderbird is an extensible email, newsfeed, chat, and calendaring client. -
More

Languages: C++ icon JavaScript icon Rust icon
Website: https://www.thunderbird.net/en-US/
Screenshots:



+ +
+ More +

+ + **Languages:** C++ icon JavaScript icon Rust icon + + **Website:** [https://www.thunderbird.net/en-US/](https://www.thunderbird.net/en-US/) + + **Screenshots:** + + + + + + + +

+
+ - [Torchat-Mac](https://github.com/javerous/TorChat-Mac) - TorChat for Mac is a macOS native and unofficial port of torchat. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [WhatsAppBar](https://github.com/aldychris/WhatsAppBar) - Send WhatsApp message from menu bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ - [Wire Desktop](https://github.com/wireapp/wire-desktop) - Standalone Electron app for the chatapp Wire. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### 💰 Cryptocurrency (5) - [Balance Open](https://github.com/balance-io/balance-open) - App for all the world’s currencies. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [CoinBar](https://github.com/adamwaite/CoinBar) - macOS menu bar application for tracking crypto coin prices. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ - [Copay](https://github.com/bitpay/copay) - A secure bitcoin wallet platform for both desktop and mobile devices. -
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Crypto Bar](https://github.com/geraldoramos/crypto-bar) - macOS menu bar application built with Electron. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Float coin](https://github.com/kaunteya/FloatCoin) - Native menu bar app with floating window and support for many Exchanges. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ + ### 🗄️ Database (18) - [Bdash](https://github.com/bdash-app/bdash) - Simple SQL Client for lightweight data analysis. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Beekeeper Studio](https://github.com/beekeeper-studio/beekeeper-studio) - SQL editor and manager with support for SQLite, MySQL, MariaDB, Postgres, CockroachDB, SQL Server, and Amazon Redshift. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.beekeeperstudio.io
Screenshots:


+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.beekeeperstudio.io](https://www.beekeeperstudio.io) + + **Screenshots:** + + + + + +

+
+ - [DB Browser for SQLite](https://github.com/sqlitebrowser/sqlitebrowser) - SQLite database management GUI. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [DBeaver](https://github.com/dbeaver/dbeaver) - Universal database tool and SQL client. -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ - [DbGate](https://github.com/dbgate/dbgate) - Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application. -
More

Languages: JavaScript icon TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://dbgate.org
Screenshots:



(6 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://dbgate.org](https://dbgate.org) + + **Screenshots:** + + + + + + + + *(6 more screenshots available in the repository)* + +

+
+ - [Medis](https://github.com/luin/medis) - 💻 Medis is a beautiful, easy-to-use Mac database management application for Redis. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:

+ +
+ 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

+ +
+ More +

+ + **Languages:** Objective-C icon C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Postbird](https://github.com/Paxa/postbird) - PostgreSQL GUI client for macOS. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ - [Postgres.app](https://github.com/PostgresApp/PostgresApp) - The easiest way to get started with PostgreSQL on the Mac. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ 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:

+ +
+ 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:

+ +
+ 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:

+ +
+ 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:

+ +
+ 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/

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://sequel-ace.com/](https://sequel-ace.com/) + +

+
+ - [Sequel Pro](https://github.com/sequelpro/sequelpro) - MySQL/MariaDB database management for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [sqlectron](https://github.com/sqlectron/sqlectron-gui) - A simple and lightweight SQL client desktop/terminal with cross database and platform support. -
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://sqlectron.github.io/
Screenshots:

+ +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://sqlectron.github.io/](https://sqlectron.github.io/) + + **Screenshots:** + + + +

+
+ + ### 👨‍💻 Development (9) - [Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more. -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://netbeans.apache.org/
Screenshots:


+ +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://netbeans.apache.org/](https://netbeans.apache.org/) + + **Screenshots:** + + + + + +

+
+ - [Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://brackets.io/
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://brackets.io/](https://brackets.io/) + + **Screenshots:** + + + +

+
+ - [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. -
More

Languages: Swift icon C# icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://imazing.com/colorset
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon C# icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://imazing.com/colorset](https://imazing.com/colorset) + + **Screenshots:** + + + +

+
+ - [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/

+ +
+ More +

+ + **Languages:** C++ icon C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gitahead.github.io/gitahead.com/](https://gitahead.github.io/gitahead.com/) + +

+
+ - [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/

+ +
+ More +

+ + **Languages:** C++ icon C icon + + **Website:** [https://www.kicad.org/](https://www.kicad.org/) + +

+
+ - [Layout Designer for UICollectionView](https://github.com/amirdew/CollectionViewPagingLayout) - A simple but powerful tool that helps you make complex layouts for UICollectionView. -
More

Languages: Swift icon
Links: App Store App Store   Latest Release   GitHub stars   License
Website: https://apps.apple.com/nl/app/layout-designer/id1507238011?l=en&mt=12
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](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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://sindresorhus.com/pasteboard-viewer](https://sindresorhus.com/pasteboard-viewer) + + **Screenshots:** + + + +

+
+ - [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [utmapp](https://github.com/utmapp/) - Virtualization for other operating systems. -
More

Languages: Swift icon Objective-C icon
Website: https://mac.getutm.app/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon Objective-C icon + + **Website:** [https://mac.getutm.app/](https://mac.getutm.app/) + + **Screenshots:** + + + +

+
+ + #### 📦 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

+ +
+ More +

+ + **Languages:** Objective-C icon C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Git Interactive Rebase Tool](https://github.com/MitMaro/git-interactive-rebase-tool) - Full feature terminal based sequence editor for interactive rebase. -
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License
Website: https://gitrebasetool.mitmaro.ca/
Screenshots:

+ +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gitrebasetool.mitmaro.ca/](https://gitrebasetool.mitmaro.ca/) + + **Screenshots:** + + + +

+
+ - [GitAhead](https://github.com/gitahead/gitahead/) - A graphical Git client designed to help you understand and manage your source code history. -
More

Languages: C++ icon C icon
Links: Latest Release   GitHub stars   License
Website: https://gitahead.github.io/gitahead.com/

+ +
+ More +

+ + **Languages:** C++ icon C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gitahead.github.io/gitahead.com/](https://gitahead.github.io/gitahead.com/) + +

+
+ - [GitBlamePR](https://github.com/maoyama/GitBlamePR) - Mac app that shows pull request last modified each line of a file -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Gitee](https://github.com/Nightonke/Gitee) - Gitee, macOS status bar application for Github. -
More

Languages: Objective-C icon Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(11 more screenshots available in the repository)

+ +
+ 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:

+ +
+ 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:

+ +
+ 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:

+ +
+ 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

+ +
+ 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:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.gitify.io/](https://www.gitify.io/) + + **Screenshots:** + + + +

+
+ - [GitSync](https://github.com/eonist/GitSync) - Minimalistic Git client for Mac. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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)

+ +
+ 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

+ +
+ 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

+ +
+ 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

+ +
+ 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:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [TeamStatus-for-GitHub](https://github.com/marcinreliga/TeamStatus-for-GitHub) - macOS status bar application for tracking code review process within the team. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Tempo](https://github.com/maoyama/Tempo) - Replace the Git CLI with a clear UI and AI assist. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Trailer](https://github.com/ptsochantaris/trailer) - Managing Pull Requests and Issues For GitHub & GitHub Enterprise. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ + #### 🔄 JSON Parsing (4) - [j2s](https://github.com/zadr/j2s) - macOS app to convert JSON objects into Swift structs (currently targets Swift 4 and Codable). -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ 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:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ + #### 🔧 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:

+ +
+ More +

+ + **Languages:** Swift icon JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://boop.okat.best](https://boop.okat.best) + + **Screenshots:** + + + +

+
+ - [ChefInspector](https://github.com/Yasumoto/ChefInspector) - Node and Attribute viewer for Chef -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [macho-browser](https://github.com/dcsch/macho-browser) - Browser for macOS Mach-O binaries. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:


+ +
+ 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)

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(5 more screenshots available in the repository)* + +

+
+ + #### 🌍 Web Development (14) - [aws-s3-uploader](https://github.com/RafalWilinski/s3-uploader) - Simple macOS app for uploading files to Amazon Web Services. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:

+ +
+ 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:

+ +
+ 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:



+ +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://httptoolkit.com/](https://httptoolkit.com/) + + **Screenshots:** + + + + + + + +

+
+ - [Insomnia](https://github.com/Kong/insomnia) - Insomnia is a cross-platform REST client, built on top of Electron. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [KubeSwitch](https://github.com/nsriram/KubeSwitch) - KubeSwitch lists the available kubernetes cluster contexts on the mac, in Mac's Menu bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Lantern](https://github.com/RoyalIcing/Lantern) - Dedicated Mac app for website auditing and crawling. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ 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:

+ +
+ 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

+ +
+ 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

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://simplelocalize.io](https://simplelocalize.io) + +

+
+ - [stts](https://github.com/inket/stts) - macOS app for monitoring the status of cloud services. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ + #### 📱 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:



+ +
+ 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:

+ +
+ 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

+ +
+ 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:


+ +
+ 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:



+ +
+ 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

+ +
+ 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:



+ +
+ 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

+ +
+ 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:



+ +
+ 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:


+ +
+ 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)

+ +
+ 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

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [CocoaRestClient](https://github.com/mmattozzi/cocoa-rest-client) - Native Apple macOS app for testing HTTP/REST endpoints. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



(2 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ - [Corona Tracker](https://github.com/MhdHejazi/CoronaTracker) - Coronavirus tracker app for iOS & macOS with maps & charts. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://coronatracker.samabox.com/
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://coronatracker.samabox.com/](https://coronatracker.samabox.com/) + + **Screenshots:** + + + + + +

+
+ - [FilterShop](https://github.com/KrisYu/FilterShop) - macOS App to explore CoreImage Filters. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [IconGenerator](https://github.com/onmyway133/IconGenerator) - macOS app to generate app icons. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Iconizer](https://github.com/raphaelhanneken/iconizer) - Create Xcode image catalogs (xcassets) on the fly. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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](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

+ +
+ 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

+ +
+ 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:


+ +
+ 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

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [LayerX](https://github.com/yuhua-chen/LayerX) - Intuitive app to display transparent images on screen. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Localizable.strings](https://github.com/cristibaluta/Localizable.strings) - Mac app to localize your iOS and macOS projects. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Localization Editor](https://github.com/igorkulman/iOSLocalizationEditor) - Simple macOS editor app to help you manage iOS app localizations by allowing you to edit all the translations side by side. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Localizations](https://github.com/e7711bbear/Localizations) - Localizations is an macOS app that manages your Xcode project localization files (.strings). -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Menubar Colors](https://github.com/nvzqz/Menubar-Colors) - macOS app for convenient access to the system color panel. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Notarize](https://github.com/macmade/Notarize) - Notarization status monitoring tool for macOS, supporting multiple developer accounts -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [PodsUpdater](https://github.com/kizitonwose/PodsUpdater) - macOS app which helps you manage dependency releases in your Podfile. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [ProfilesManager](https://github.com/shaojiankui/ProfilesManager) - Apple iOS/macOS Provisioning Profiles management,.provisionprofile, .mobileprovision files manager tool for mac. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [PushNotifications](https://github.com/onmyway133/PushNotifications) - macOS app to test push notifications on iOS and Android. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(6 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(6 more screenshots available in the repository)* + +

+
+ - [ResignTool](https://github.com/InjoyDeng/ResignTool) - This is an app for macOS that can (re)sign apps and bundle them into ipa files that are ready to be installed on an iOS device. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Resizr](https://github.com/onurgenes/Resizr) - MacOS application for creating AppIcon for iOS and Android apps. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [SmartPush](https://github.com/shaojiankui/SmartPush) - iOS Push Notification Debug App. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [TransporterPad](https://github.com/iseebi/TransporterPad) - iOS/Android app deployment tool for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [WWDC](https://github.com/insidegui/WWDC) - Unofficial WWDC app for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [WWDC.srt](https://github.com/ssamadgh/WWDCsrt) - Powerful app for downloading subtitle for each WWDC session video since 2013 in (srt) format. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(2 more screenshots available in the repository)

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [xib2Storyboard](https://github.com/novemberfiveco/xib2Storyboard) - Tool to convert Xcode .xib to .storyboard files. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### ⬇️ Downloader (7) - [App Downloader](https://github.com/yep/app-downloader) - Easily search and download macOS apps from the huge `homebrew cask` app catalog. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Extream Download Manager](https://github.com/subhra74/xdm) - a powerful tool to increase download speeds up to 500% -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://subhra74.github.io/xdm/

+ +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://subhra74.github.io/xdm/](https://subhra74.github.io/xdm/) + +

+
+ - [Get It](https://github.com/Kevin-De-Koninck/Get-It) - Native macOS video/audio downloader. Think of it as a youtube downloader that works on many sites. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Motrix](https://github.com/agalwood/Motrix) - A full-featured download manager. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://motrix.app/
Screenshots:



(1 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://motrix.app/](https://motrix.app/) + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ - [Pillager](https://github.com/Pjirlip/Pillager) - macOS Video Downloader written in Swift and Objective-C. -
More

Languages: Objective-C icon Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Objective-C icon Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [udemy-downloader-gui](https://github.com/FaisalUmair/udemy-downloader-gui) - desktop application for downloading Udemy Courses. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ + ### 📝 Editors (4) - [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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://auroraeditor.com](https://auroraeditor.com) + + **Screenshots:** + + + +

+
+ - [Chime](https://github.com/ChimeHQ/Chime) - An editor for macOS -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.chimehq.com/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.chimehq.com/](https://www.chimehq.com/) + + **Screenshots:** + + + +

+
+ - [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.codeedit.app/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.codeedit.app/](https://www.codeedit.app/) + + **Screenshots:** + + + +

+
+ - [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. -
More

Languages: C icon c++
Links: Latest Release   GitHub stars   License
Website: https://www.geany.org/
Screenshots:

+ +
+ More +

+ + **Languages:** C icon c++ + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.geany.org/](https://www.geany.org/) + + **Screenshots:** + + + +

+
+ + #### 📊 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

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + #### 📋 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:

+ +
+ 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:


+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ + #### 📝 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:

+ +
+ 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:


+ +
+ More +

+ + **Languages:** JavaScript icon vue CSS icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://uselinked.com](https://uselinked.com) + + **Screenshots:** + + + + + +

+
+ - [MacDown](https://github.com/MacDownApp/macdown) - Markdown editor for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Mark Text](https://github.com/marktext/marktext/) - Realtime preview markdown editor for macOS Windows and Linux. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [MarkEdit](https://github.com/MarkEdit-app/MarkEdit) - MarkEdit is a free and open-source Markdown editor, for macOS. It's just like TextEdit on Mac but dedicated to Markdown. -
More

Languages: Swift icon TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://markedit.app/
Screenshots:



+ +
+ More +

+ + **Languages:** Swift icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://markedit.app/](https://markedit.app/) + + **Screenshots:** + + + + + + + +

+
+ - [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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://notenik.app](https://notenik.app) + + **Screenshots:** + + + +

+
+ - [Obsidian plugins & themes](https://github.com/obsidianmd/obsidian-releases) - Community plugins list, theme list, and releases of Obsidian. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://obsidian.md/
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://obsidian.md/](https://obsidian.md/) + + **Screenshots:** + + + +

+
+ - [Pine](https://github.com/lukakerr/Pine) - A modern MacOS markdown editor. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ 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:

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.qownnotes.org/](https://www.qownnotes.org/) + + **Screenshots:** + + + +

+
+ - [Zettlr](https://github.com/Zettlr/Zettlr) - A Markdown Editor for the 21st century. -
More

Languages: JavaScript icon TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.zettlr.com/
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.zettlr.com/](https://www.zettlr.com/) + + **Screenshots:** + + + +

+
+ + #### 📐 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:



+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ + #### ✏️ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://auroraeditor.com](https://auroraeditor.com) + + **Screenshots:** + + + +

+
+ - [CotEditor](https://github.com/coteditor/CotEditor) - Lightweight Plain-Text Editor for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. -
More

Languages: C icon c++
Links: Latest Release   GitHub stars   License
Website: https://www.geany.org/
Screenshots:

+ +
+ More +

+ + **Languages:** C icon c++ + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.geany.org/](https://www.geany.org/) + + **Screenshots:** + + + +

+
+ - [MacVim](https://github.com/macvim-dev/macvim) - Text editor for macOS. -
More

Languages: C icon
Links: Latest Release   GitHub stars   License

+ +
+ 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)

+ +
+ More +

+ + **Languages:** Go icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://micro-editor.github.io](https://micro-editor.github.io) + + **Screenshots:** + + + + + + + + *(8 more screenshots available in the repository)* + +

+
+ - [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:


+ +
+ 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:

+ +
+ 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:


+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [TextMate](https://github.com/textmate/textmate) - TextMate is a graphical text editor for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Tincta](https://github.com/CodingFriends/Tincta) - One-window text editor with syntax highlighting. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://codingfriends.github.io/Tincta/

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://codingfriends.github.io/Tincta/](https://codingfriends.github.io/Tincta/) + +

+
+ - [VimR](https://github.com/qvacua/vimr) - Refined Neovim experience for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### 🧩 Extensions (13) - [AdGuard for Safari](https://github.com/adguardteam/adguardforsafari) - The most advanced ad blocking extension for Safari -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://adguard.com/en/welcome.html
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://adguard.com/en/welcome.html](https://adguard.com/en/welcome.html) + + **Screenshots:** + + + +

+
+ - [BetterPiP](https://github.com/Capevace/BetterPiP) - Use native picture-in-picture with browsers such as Google Chrome for HTML5 videos. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Is It Private?](https://github.com/ffittschen/IsItPrivate) - A Safari Extension providing a toolbar icon that changes its visual appearance if Private Browsing is enabled. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://florian.codes/projects/is-it-private/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://florian.codes/projects/is-it-private/](https://florian.codes/projects/is-it-private/) + + **Screenshots:** + + + +

+
+ - [Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse -
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://nef.bow-swift.io/](https://nef.bow-swift.io/) + + **Screenshots:** + + + + + +

+
+ - [PageExtender](https://github.com/fphilipe/PageExtender.app) - Extend pages with your own CSS and JS files. -
More

Languages: Swift icon JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [PiPifier](https://github.com/arnoappenzeller/PiPifier) - PiPifier is a native macOS 10.12 Safari extension that lets you use every HTML5 video in Picture in Picture mode. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ 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

+ +
+ 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

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Sessions](https://github.com/AlexPerathoner/Sessions) - Safari extension to save your working sessions -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Swimat](https://github.com/Jintin/Swimat) - Swimat is an Xcode plug-in to format your Swift code. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://jintin.github.io/Swimat/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://jintin.github.io/Swimat/](https://jintin.github.io/Swimat/) + + **Screenshots:** + + + +

+
+ - [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ + ### 🔍 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

+ +
+ 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:


+ +
+ 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

+ +
+ 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/

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://dupeguru.voltaicideas.net/](https://dupeguru.voltaicideas.net/) + +

+
+ - [Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ 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:


+ +
+ 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:

+ +
+ 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:


+ +
+ 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)

+ +
+ More +

+ + **Languages:** Objective-C icon C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(5 more screenshots available in the repository)* + +

+
+ - [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal. -
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ + ### 🎮 Games (11) - [0 A.D.](https://svn.wildfiregames.com/public/ps/trunk/) - Real-time strategy game of ancient warfare -
More

Languages: C++ icon
Website: https://play0ad.com
Screenshots:


+ +
+ More +

+ + **Languages:** C++ icon + + **Website:** [https://play0ad.com](https://play0ad.com) + + **Screenshots:** + + + + + +

+
+ - [Battle for Wesnoth](https://github.com/wesnoth/wesnoth) - Turn-based tactical strategy game, featuring both single-player and online multiplayer combat. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Boxer](https://github.com/alunbestor/Boxer) - The DOS game emulator that’s fit for your Mac. -
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C++ icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Chess](https://opensource.apple.com/source/Chess/Chess-410.4.1/) - The chess app that comes with macOS. -
More

Languages: objective-c
Website: https://www.apple.com/
Screenshots:

+ +
+ More +

+ + **Languages:** objective-c + + **Website:** [https://www.apple.com/](https://www.apple.com/) + + **Screenshots:** + + + +

+
+ - [Dolphin](https://github.com/dolphin-emu/dolphin) - Powerful emulator for Nintendo GameCube and Wii games. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Dynamic Dark Mode](https://github.com/ApolloZhu/Dynamic-Dark-Mode) - Dynamic Dark Mode is the app you are looking for to power up Dark Mode on macOS Mojave and beyond. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://apollozhu.github.io/Dynamic-Dark-Mode/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://apollozhu.github.io/Dynamic-Dark-Mode/](https://apollozhu.github.io/Dynamic-Dark-Mode/) + + **Screenshots:** + + + +

+
+ - [OpenEmu](https://github.com/OpenEmu/OpenEmu) - Retro video game emulation for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [OpenRCT2](https://github.com/OpenRCT2/OpenRCT2) - Re-implementation of RollerCoaster Tycoon 2. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Screentendo](https://github.com/AaronRandall/Screentendo) - Turn your screen into a playable level of Mario. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Stockfish](https://github.com/daylen/stockfish-mac) - Beautiful, powerful chess application. -
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C++ icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Widelands](https://github.com/widelands/widelands) - Widelands is a free, open source real-time strategy game with singleplayer campaigns and a multiplayer mode. The game was inspired by Settlers II™ (© Bluebyte) but has significantly more variety and depth to it. -
More

Languages: c++ Python icon Lua icon JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.widelands.org
Screenshots:

+ +
+ More +

+ + **Languages:** c++ Python icon Lua icon JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.widelands.org](https://www.widelands.org) + + **Screenshots:** + + + +

+
+ + ### 🎨 Graphics (15) - [Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux). -
More

Languages: C++ icon C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C++ icon C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Blender](https://projects.blender.org/) - Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline: modeling, rigging, animation, simulation, rendering, compositing, motion tracking, and video editing. -
More

Languages: C icon C++ icon Python icon
Website: https://www.blender.org
Screenshots:



(3 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** C icon C++ icon Python icon + + **Website:** [https://www.blender.org](https://www.blender.org) + + **Screenshots:** + + + + + + + + *(3 more screenshots available in the repository)* + +

+
+ - [CaptuocrToy](https://github.com/sfragrance/CaptuocrToy) - Tool to capture screenshot and recognize text by online ocr apis. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [ColorSet](https://github.com/DigiDNA/ColorSet) - ColorSet is a macOS utility and framework allowing developers to manage custom interface colors with ease. -
More

Languages: Swift icon C# icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://imazing.com/colorset
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon C# icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://imazing.com/colorset](https://imazing.com/colorset) + + **Screenshots:** + + + +

+
+ - [FreeCAD](https://github.com/FreeCAD/FreeCAD) - FreeCAD is an open-source 3D parametric modeler -
More

Languages: c++ Python icon
Links: Latest Release   GitHub stars   License
Website: https://www.freecad.org/
Screenshots:

+ +
+ More +

+ + **Languages:** c++ Python icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.freecad.org/](https://www.freecad.org/) + + **Screenshots:** + + + +

+
+ - [Gaphor](https://github.com/gaphor/gaphor) - Gaphor is the simple modeling tool for UML and SysML. -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Website: https://gaphor.org

+ +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gaphor.org](https://gaphor.org) + +

+
+ - [GifCapture](https://github.com/onmyway133/GifCapture) - Gif capture app for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ - [Gifcurry](https://github.com/lettier/gifcurry) - Video to GIF maker with a graphical interface capable of cropping, adding text, seeking, and trimming. -
More

Languages: Haskell icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Haskell icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Gifski](https://github.com/sindresorhus/Gifski) - Convert videos to high-quality GIFs. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ - [InfiniteCanvas](https://github.com/CleanCocoa/InfiniteCanvas) - Proof of concept Mac drawing application. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** C++ icon Python icon C icon + + **Website:** [https://krita.org/en/](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:

+ +
+ 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:

+ +
+ 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

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Objective-C icon CSS icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ + ### 💻 IDE (12) - [Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more. -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://netbeans.apache.org/
Screenshots:


+ +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://netbeans.apache.org/](https://netbeans.apache.org/) + + **Screenshots:** + + + + + +

+
+ - [Atom](https://github.com/atom/atom) - The hackable text editor. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://auroraeditor.com
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://auroraeditor.com](https://auroraeditor.com) + + **Screenshots:** + + + +

+
+ - [Brackets](https://github.com/brackets-cont/brackets) - Modern open-source code editor for HTML, CSS and JavaScript that's built in HTML, CSS and JavaScript. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://brackets.io/
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://brackets.io/](https://brackets.io/) + + **Screenshots:** + + + +

+
+ - [CodeEdit](https://github.com/CodeEditApp/CodeEdit) - CodeEdit App for macOS – Elevate your code editing experience. Open source, free forever. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.codeedit.app/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.codeedit.app/](https://www.codeedit.app/) + + **Screenshots:** + + + +

+
+ - [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. -
More

Languages: C icon c++
Links: Latest Release   GitHub stars   License
Website: https://www.geany.org/
Screenshots:

+ +
+ More +

+ + **Languages:** C icon c++ + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.geany.org/](https://www.geany.org/) + + **Screenshots:** + + + +

+
+ - [IntelliJ IDEA Community Edition](https://github.com/JetBrains/intellij-community) - IntelliJ IDEA is an integrated development environment written in Java for developing computer software -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://www.jetbrains.com/idea/
Screenshots:

+ +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.jetbrains.com/idea/](https://www.jetbrains.com/idea/) + + **Screenshots:** + + + +

+
+ - [LiveCode](https://github.com/livecode/livecode) - Cross-platform development IDE. -
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Website: https://livecode.org/

+ +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://livecode.org/](https://livecode.org/) + +

+
+ - [Oni](https://github.com/onivim/oni) - Oni is a modern take on modal editing code editor focused on developer productivity. -
More

Languages: JavaScript icon TypeScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Vim](https://github.com/vim/vim) - ubiquitous text editor -
More

Languages: C icon Vim script
Links: Latest Release   GitHub stars   License
Website: https://www.vim.org/
Screenshots:

+ +
+ More +

+ + **Languages:** C icon Vim script + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.vim.org/](https://www.vim.org/) + + **Screenshots:** + + + +

+
+ - [Visual Studio Code](https://github.com/Microsoft/vscode) - Code editor developed by Microsoft. -
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [ZeroBraneStudio](https://github.com/pkulchenko/ZeroBraneStudio) - ZeroBrane Studio is a lightweight cross-platform Lua IDE with code completion, syntax highlighting, remote debugger, code analyzer, live coding, and debugging support for various Lua engines. -
More

Languages: Lua icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Lua icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ + ### 🖼️ Images (17) - [APNGb](https://github.com/shgodoroja/APNGb) - macOS app which assembles and disassembles animated png files. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Crunch](https://github.com/chrissimpkins/Crunch) - Insane(ly slow but wicked good) PNG image optimization. -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [ExifCleaner](https://github.com/szTheory/exifcleaner) - Remove image metadata with drag and drop, multi-core batch processing, and dark mode. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://exifcleaner.com
Screenshots:



+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://exifcleaner.com](https://exifcleaner.com) + + **Screenshots:** + + + + + + + +

+
+ - [Flameshot](https://github.com/flameshot-org/flameshot) - Powerful yet simple to use screenshot software. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://flameshot.org
Screenshots:

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://flameshot.org](https://flameshot.org) + + **Screenshots:** + + + +

+
+ - [Freehand](https://github.com/wddwycc/Freehand) - macOS Status Bar App for quick sketch. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Gimp](https://github.com/GNOME/gimp) - Gimp is GNU Image Manipulation Program. -
More

Languages: C icon
Links: Latest Release   GitHub stars   License

+ +
+ 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](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:

+ +
+ 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

+ +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Inkscape](https://gitlab.com/inkscape/inkscape) - Inkscape is a Free and open source vector graphics editor. -
More

Languages: c++
Website: https://inkscape.org/
Screenshots:

+ +
+ More +

+ + **Languages:** c++ + + **Website:** [https://inkscape.org/](https://inkscape.org/) + + **Screenshots:** + + + +

+
+ - [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ 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

+ +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Krita](https://invent.kde.org/graphics/krita) - Krita is a cross-platform application for creating digital art files from scratch like illustrations, concept art, matte painting, textures, comics and animations. -
More

Languages: C++ icon Python icon C icon
Website: https://krita.org/en/
Screenshots:

+ +
+ More +

+ + **Languages:** C++ icon Python icon C icon + + **Website:** [https://krita.org/en/](https://krita.org/en/) + + **Screenshots:** + + + +

+
+ - [PhotoMiner](https://github.com/gergelysanta/photominer) - macOS app for finding and lost forgotten photos on your disks. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(3 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(3 more screenshots available in the repository)* + +

+
+ - [Screenbar](https://github.com/crilleengvall/Screenbar) - macOS menubar app for automating screenshots. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Seashore](https://github.com/robaho/seashore) - Easy to use macOS image editing application for the rest of us. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [WebPonize](https://github.com/1000ch/WebPonize) - WebPonize is a macOS App for converting PNG, JPEG, animated (or not) GIF images into WebP. -
More

Languages: Swift icon C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### ⌨️ Keyboard (9) - [AnnePro-mac](https://github.com/msvisser/AnnePro-mac) - macOS application for controlling AnnePro keyboard over bluetooth. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Fluor](https://github.com/Pyroh/Fluor) - Handy tool for macOS allowing you to switch Fn keys' mode based on active application. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [GokuRakuJoudo](https://github.com/yqrashawn/GokuRakuJoudo) - Karabiner-Elements configuration manager, rescue to bloated karabiner.json -
More

Languages: Clojure icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Clojure icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Karabiner](https://github.com/tekezo/Karabiner) - Karabiner (KeyRemap4MacBook) is a powerful utility for keyboard customization. -
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C++ icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Karabiner-Elements](https://github.com/pqrs-org/Karabiner-Elements) - Karabiner-Elements is a powerful utility for keyboard customization on macOS Sierra (10.12) or later. -
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C++ icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Kawa](https://github.com/hatashiro/kawa) - Better input source switcher for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Keycastr](https://github.com/keycastr/keycastr) - Keystroke visualizer. -
More

Languages: Objective-C
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Thor](https://github.com/gbammc/Thor) - Switch the right application ASAP. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Unshaky](https://github.com/aahung/Unshaky) - A software attempt to address the "double key press" issue on Apple's butterfly keyboard -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://unshaky.nestederror.com/
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://unshaky.nestederror.com/](https://unshaky.nestederror.com/) + + **Screenshots:** + + + + + +

+
+ + ### 📧 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

+ +
+ 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:

+ +
+ 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:


+ +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Mailspring](https://github.com/Foundry376/Mailspring) - 💌 A beautiful, fast and maintained fork of @nylas Mail by one of the original authors -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://getmailspring.com/

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://getmailspring.com/](https://getmailspring.com/) + +

+
+ - [Rambox](https://github.com/ramboxapp/community-edition) - Cross Platform messaging and emailing app that combines common web applications into one. -
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [SimpleLogin](https://github.com/simple-login/mac-app) - Email Alias solution: protect your real email address. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:



+ +
+ More +

+ + **Languages:** C++ icon JavaScript icon Rust icon + + **Website:** [https://www.thunderbird.net/en-US/](https://www.thunderbird.net/en-US/) + + **Screenshots:** + + + + + + + +

+
+ + ### 🏥 Medical (1) - [InVesalius](https://github.com/invesalius/invesalius3/) - 3D medical imaging reconstruction software -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ + ### 📊 Menubar (39) - [Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Akku](https://github.com/jariz/Akku) - The missing macOS bluetooth headset battery indicator app. -
More

Languages: Swift icon Python icon Ruby icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ 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:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://thijmendam.github.io/BarTranslate/](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. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [DatWeatherDoe](https://github.com/inderdhir/DatWeatherDoe) - Simple menu bar weather app for macOS written in Swift. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [DisplayMenu](https://github.com/Kwpolska/DisplayMenu) - Simple (bare-bones) macOS menubar extra to apply display presets. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ 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:

+ +
+ 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:


+ +
+ 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

+ +
+ 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:

+ +
+ 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

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.mowglii.com/itsycal/](https://www.mowglii.com/itsycal/) + + **Screenshots:** + + + +

+
+ - [KubeContext](https://github.com/turkenh/KubeContext) - import, manage and switch between your Kubernetes contexts on Mac. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [LinkLiar](https://github.com/halo/LinkLiar) - Keep your MAC address random for privacy (intuitive GUI for ifconfig) -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://halo.github.io/LinkLiar/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://halo.github.io/LinkLiar/](https://halo.github.io/LinkLiar/) + + **Screenshots:** + + + +

+
+ - [Market Bar](https://github.com/mnndnl/market-bar ) - Tiny stocks watcher for the menu bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Menubar Brightness](https://github.com/lucasbento/menubar-brightness) - macOS app to change the screen brightness on the menubar. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.minisim.app/](https://www.minisim.app/) + + **Screenshots:** + + + +

+
+ - [Monitor Bar](https://github.com/tidiemme/monitorbar) - Monitor Bar app supports three modes, compact, normal, extra. It monitors battery, Disk, Memory, CPU, Network bandwidth, Wi-Fi. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Night Shift Control](https://github.com/isaiasmatewos/night-shift-control) - Night Shift Control is a simple macOS menubar app for controlling Night Shift. It's aim is to bring features from f.lux which are missing from Night Shift such as disabling Night Shift for certain apps. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Nocturnal](https://github.com/joshjon/nocturnal) - Menu bar app featuring darker than dark dimming, Night Shift fine tuning, and the ability to turn off TouchBar on MacBook Pro. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://paretosecurity.com/](https://paretosecurity.com/) + + **Screenshots:** + + + +

+
+ - [Pi Stats](https://github.com/Bunn/PiStats) - macOS app to visualize Pi-hole information. -
More

Languages: Swift icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. -
More

Languages: Swift icon metal
Links: Latest Release   GitHub stars   License
Website: https://superhighfives.com/pika
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon metal + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://superhighfives.com/pika](https://superhighfives.com/pika) + + **Screenshots:** + + + +

+
+ - [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ 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:

+ +
+ 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. -
More

Languages: Objective-C icon C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Shifty](https://github.com/thompsonate/Shifty) - macOS menu bar app that gives you more control over Night Shift. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [SwiftBar](https://github.com/swiftbar/SwiftBar) - Powerful macOS menu bar customization tool. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://swiftbar.app

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://swiftbar.app](https://swiftbar.app) + +

+
+ - [TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording. -
More

Languages: CSS icon JavaScript icon TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://timescribe.app
Screenshots:



(2 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** CSS icon JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://timescribe.app](https://timescribe.app) + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ - [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

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### 🎧 Music (15) - [Carol](https://github.com/AnaghSharma/Carol) - A minimal and beautiful lyrics app that stays in the menu bar of macOS. -
More

Languages: C# icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C# icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [ChordDetector](https://github.com/cemolcay/ChordDetector) - Tiny menu bar app that listens iTunes and Spotify to detect chords of songs! -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ 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:


+ +
+ 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:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.karaoke-eternal.com/](https://www.karaoke-eternal.com/) + + **Screenshots:** + + + +

+
+ - [Lilypond UI](https://github.com/doches/lilypond-ui) - Create beautiful musical scores with LilyPond. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:


+ +
+ 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:

+ +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mpv.io](https://mpv.io) + + **Screenshots:** + + + +

+
+ - [NoiseBuddy](https://github.com/insidegui/NoiseBuddy) - Control the listening mode on your AirPods Pro in the Touch Bar or Menu Bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.plugformac.com/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.plugformac.com/](https://www.plugformac.com/) + + **Screenshots:** + + + +

+
+ - [SoundCleod](https://github.com/salomvary/soundcleod) - SoundCloud for macOS and Windows. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ 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:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://spicetify.app/](https://spicetify.app/) + + **Screenshots:** + + + +

+
+ - [Spotify-Cli-Mac](https://github.com/ersel/spotify-cli-mac) - Control Spotify without leaving your terminal. :notes: -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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)

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ + ### 📰 News (6) - [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:

+ +
+ 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:

+ +
+ 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

+ +
+ 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

+ +
+ 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)

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://getstream.io/winds/](https://getstream.io/winds/) + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ + ### 📔 Notes (16) - [Boostnote](https://github.com/BoostIO/BoostNote-Legacy) - Note-taking application made for programmers just like you. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Go icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.getdnote.com/](https://www.getdnote.com/) + + **Screenshots:** + + + +

+
+ - [FromScratch](https://github.com/Kilian/fromscratch) - Little app that you can use as a quick note taking or todo app. -
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:


+ +
+ 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

+ +
+ 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

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [linked](https://github.com/lostdesign/linked) - 🧾 Your daily journal app, diary or anything else to unclutter your mind. Let linked help you get focused by writing down what is in your mind on a daily basis. -
More

Languages: JavaScript icon vue CSS icon
Links: Latest Release   GitHub stars   License
Website: https://uselinked.com
Screenshots:


+ +
+ More +

+ + **Languages:** JavaScript icon vue CSS icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://uselinked.com](https://uselinked.com) + + **Screenshots:** + + + + + +

+
+ - [notable](https://github.com/jmcfarlane/notable) - Simple note taking application. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(4 more screenshots available in the repository)

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://notenik.app](https://notenik.app) + + **Screenshots:** + + + +

+
+ - [Notes](https://github.com/SauvageP/Notes) - Notes is a macOS application built to create notes, using text amongst other formats: images, videos, contacts, and etc. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.qownnotes.org/](https://www.qownnotes.org/) + + **Screenshots:** + + + +

+
+ - [Simplenote](https://github.com/Automattic/simplenote-macos) - Simplest way to keep notes. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [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:

+ +
+ 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

+ +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### 📦 Other (22) - [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://betaflight.com/
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://betaflight.com/](https://betaflight.com/) + + **Screenshots:** + + + +

+
+ - [Cakebrew](https://github.com/brunophilipe/Cakebrew) - Manage your Homebrew formulas with style using Cakebrew. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [ChipMunk](https://github.com/esrlabs/chipmunk) - Log analysis tool. -
More

Languages: TypeScript icon Rust icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** TypeScript icon Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [DevDocs for macOS](https://github.com/dteoh/devdocs-macos) - An unofficial DevDocs API documentation viewer. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Gas Mask](https://github.com/2ndalpha/gasmask) - Hosts file manager for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Hosts](https://github.com/specialunderwear/Hosts.prefpane) - Cocoa GUI for /etc/hosts. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [ImageOptim](https://github.com/ImageOptim/ImageOptim) - GUI image optimizer for Mac. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Keyframes Player](https://github.com/insidegui/KeyframesPlayer) - Simple macOS app to preview animations created with Facebook's keyframes framework. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Lepton](https://github.com/hackjutsu/Lepton) - Democratizing Code Snippets Management (macOS/Win/Linux). -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ 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)

+ +
+ 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

+ +
+ 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

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [QorumLogs](https://github.com/Esqarrouth/QorumLogs) - Swift Logging Utility for Xcode & Google Docs. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [React Native Debugger](https://github.com/jhen0409/react-native-debugger) - Desktop app for inspecting your React Native projects. macOS, Linux, and Windows. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Reactotron](https://github.com/infinitered/reactotron) - Desktop app for inspecting your React JS and React Native projects. macOS, Linux, and Windows. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [RktMachine](https://github.com/woofwoofinc/rktmachine) - Menu bar macOS app for running rkt in a macOS hypervisor CoreOS VM. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Ruby.app](https://github.com/gosu/ruby-app) - macOS app that contains a full Ruby installation (for use with Ruby/Gosu). -
More

Languages: Ruby icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Ruby icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Shuttle](https://github.com/fitztrev/shuttle) - Simple SSH shortcut menu for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ 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:

+ +
+ 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

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ + ### ▶️ 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

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://iina.io](https://iina.io) + +

+
+ - [MacMorpheus](https://github.com/emoRaivis/MacMorpheus) - 3D 180/360 video player for macOS for PSVR with head tracking. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:


+ +
+ 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

+ +
+ 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:

+ +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mpv.io](https://mpv.io) + + **Screenshots:** + + + +

+
+ - [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.plugformac.com/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.plugformac.com/](https://www.plugformac.com/) + + **Screenshots:** + + + +

+
+ + ### 🎙️ Podcast (7) - [Cumulonimbus](https://github.com/z-------------/CPod) - Simple, beautiful podcast app. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gpodder.github.io/](https://gpodder.github.io/) + + **Screenshots:** + + + +

+
+ - [mkchromecast](https://github.com/muammar/mkchromecast) - Cast macOS and Linux Audio/Video to your Google Cast and Sonos Devices. -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ 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:

+ +
+ 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)

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://getstream.io/winds/](https://getstream.io/winds/) + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ + ### ⏱️ Productivity (55) - [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app. -
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Cerebro](https://github.com/cerebroapp/cerebro) - Cross-platform launcher app. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [ClipMenu](https://github.com/naotaka/ClipMenu) - Clipboard manager for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Clocker](https://github.com/n0shake/Clocker) - macOS app to plan and organize through timezones. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Condution](https://github.com/Shabang-Systems/Condution) - Create tasks, manage due dates, and filter with powerful perspectives. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://www.condution.com
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.condution.com](https://www.condution.com) + + **Screenshots:** + + + +

+
+ - [ControlPlane](https://github.com/dustinrue/ControlPlane) - Automate running tasks based on where you are or what you do. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [DevUtils.app](https://github.com/DevUtilsApp/DevUtils-app) - Developer Utilities for macOS, helps you with your tiny daily tasks with just a single click! i.e., JSON Formatter, UUID Generator... -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://devutils.com
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://devutils.com](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:


+ +
+ 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:

+ +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://espanso.org](https://espanso.org) + + **Screenshots:** + + + +

+
+ - [far2l](https://github.com/elfmz/far2l) - Linux/Mac fork of FAR Manager v2 -
More

Languages: C icon C++ icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ 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. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://www.mowglii.com/itsycal/
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.mowglii.com/itsycal/](https://www.mowglii.com/itsycal/) + + **Screenshots:** + + + +

+
+ - [KeyHolder](https://github.com/Clipy/KeyHolder) - Record shortcuts in macOS, like Alfred.app. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Kiwix](https://github.com/kiwix/apple) - Kiwix for iOS and macOS, build on Swift. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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](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:


+ +
+ More +

+ + **Languages:** JavaScript icon vue CSS icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://uselinked.com](https://uselinked.com) + + **Screenshots:** + + + + + +

+
+ - [Linked Ideas](https://github.com/fespinoza/LinkedIdeas) - macOS application to write down and connect ideas. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:


+ +
+ 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:

+ +
+ 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

+ +
+ 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

+ +
+ 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:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Paperless Desktop](https://github.com/thomasbrueggemann/paperless-desktop) - Desktop app that uses the paperless API to manage your document scans. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ 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

+ +
+ 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)

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ - [Pomodoro Cycle](https://github.com/ziulev/pomodoro-cycle-app) - Pomodoro Cycle for macOS -
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://github.com/ziulev/pomodoro-cycle-app/releases
Screenshots:

+ +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/ziulev/pomodoro-cycle-app/releases](https://github.com/ziulev/pomodoro-cycle-app/releases) + + **Screenshots:** + + + +

+
+ - [QOwnNotes](https://github.com/pbek/QOwnNotes) - Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://www.qownnotes.org/
Screenshots:

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.qownnotes.org/](https://www.qownnotes.org/) + + **Screenshots:** + + + +

+
+ - [Quicksilver](https://github.com/quicksilver/Quicksilver) - Quicksilver is a fast macOS productivity application that gives you the power to control your Mac quickly and elegantly. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ 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:

+ +
+ 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

+ +
+ 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:

+ +
+ 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](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

+ +
+ 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:

+ +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://sqlectron.github.io/](https://sqlectron.github.io/) + + **Screenshots:** + + + +

+
+ - [status-bar-todo](https://github.com/Onix-Systems/osx-status-bar-todo) - Simple macOS app to keep TODO-list in status bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/LumingYin/StickyNotes/releases](https://github.com/LumingYin/StickyNotes/releases) + + **Screenshots:** + + + +

+
+ - [Strategr](https://github.com/khrykin/StrategrDesktop) - No-fuss time management. -
More

Languages: C++ icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://khrykin.github.io/StrategrDesktop/
Screenshots:


+ +
+ More +

+ + **Languages:** C++ icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://khrykin.github.io/StrategrDesktop/](https://khrykin.github.io/StrategrDesktop/) + + **Screenshots:** + + + + + +

+
+ - [stretchly](https://github.com/hovancik/stretchly) - Cross-platform electron app that reminds you to take breaks when working with computer. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ More +

+ + **Languages:** TypeScript icon JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://super-productivity.com](https://super-productivity.com) + + **Screenshots:** + + + +

+
+ - [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Thyme](https://github.com/joaomoreno/thyme) - The task timer for OS X. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:


+ +
+ More +

+ + **Languages:** JavaScript icon CSS icon html + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://timetoleave.app/](https://timetoleave.app/) + + **Screenshots:** + + + + + +

+
+ - [Timer](https://github.com/michaelvillar/timer-app) - Simple Timer app for Mac. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ 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)

+ +
+ More +

+ + **Languages:** CSS icon JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://timescribe.app](https://timescribe.app) + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ - [Toggl Desktop](https://github.com/toggl-open-source/toggldesktop) - Toggl Desktop app for Windows, Mac and Linux. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [TomatoBar](https://github.com/ivoronin/TomatoBar) - Pomodoro Technique Timer for macOS with Touch Bar support. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [TrelloApp](https://github.com/jlong/TrelloApp) - Unofficial wrapper application for Trello.com written in Swift. This is almost a "Hello World" for a site specific browser. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Ueli](https://github.com/oliverschwendener/ueli) - A keystroke launcher for macOS (and Windows) like Spotlight or Alfred. -
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://ueli.app/
Screenshots:

+ +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://ueli.app/](https://ueli.app/) + + **Screenshots:** + + + +

+
+ - [Ultra TabSaver](https://github.com/Swift-open-source/UltraTabSaver) - Ultra TabSaver is an open-source Tab Manager for Safari -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Watson](https://github.com/TailorDev/Watson) - A CLI application for time tracking. -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Whale](https://github.com/1000ch/whale) - Unofficial Trello app. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### 🌙 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)

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(3 more screenshots available in the repository)* + +

+
+ - [Brooklyn](https://github.com/pedrommcarrasco/Brooklyn) - Screensaver inspired by Apple's Event on October 30, 2018. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Epoch Flip Clock Screensaver](https://github.com/chrstphrknwtn/epoch-flip-clock-screensaver) - Unix epoch timestamp flip clock screensaver. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Image-As-Wallpaper](https://github.com/ved62/Image-As-Wallpaper) - Utility application helps with selection of images for using as desktop wallpaper or in screensaver on Mac computers. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Irvue](https://github.com/leonspok/Irvue-Screensaver) - Screensaver for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ - [Life Saver](https://github.com/amiantos/lifesaver) - An abstract screensaver based on Conway's Game of Life implemented with SpriteKit -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ - [MinimalClock](https://github.com/mattiarossini/MinimalClock) - Simple and elegant screensaver that displays the time. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://mattiarossini.github.io/MinimalClock/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mattiarossini.github.io/MinimalClock/](https://mattiarossini.github.io/MinimalClock/) + + **Screenshots:** + + + +

+
+ - [MusaicFM](https://github.com/obrhoff/MusaicFM) - iTunes Screensaver Clone for Spotify and Last.fm -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Predator](https://github.com/vpeschenkov/Predator) - A predator-inspired clock screensaver for macOS -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [The GitHub Matrix Screensaver](https://github.com/winterbe/github-matrix-screensaver) - The GitHub Matrix Screensaver for macOS. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ + ### 🔒 Security (9) - [Cloaker](https://github.com/spieglt/cloaker) - simple drag-and-drop, password-based file encryption. -
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License
Website: https://adequate.systems/
Screenshots:

+ +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://adequate.systems/](https://adequate.systems/) + + **Screenshots:** + + + +

+
+ - [Cryptomator](https://github.com/cryptomator/cryptomator) - Multi-platform transparent client-side encryption of your files in the cloud. -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://cryptomator.org/

+ +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://cryptomator.org/](https://cryptomator.org/) + +

+
+ - [LuLu](https://github.com/objective-see/LuLu) - LuLu is macOS firewall application that aims to block unauthorized (outgoing) network traffic. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://paretosecurity.com/](https://paretosecurity.com/) + + **Screenshots:** + + + +

+
+ - [Privacy Redirect for Safari](https://github.com/smmr-software/privacy-redirect-safari) - Redirect Twitter, YouTube, Reddit, Google Maps, Google Search, and Google Translate to privacy friendly alternatives. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:


+ +
+ 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:


+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://getswifty.pro](https://getswifty.pro) + + **Screenshots:** + + + + + +

+
+ - [VeraCrypt](https://github.com/veracrypt/VeraCrypt) - Disk encryption with strong security based on TrueCrypt. -
More

Languages: C icon C++ icon
Links: Latest Release   GitHub stars   License
Website: https://www.veracrypt.fr

+ +
+ More +

+ + **Languages:** C icon C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.veracrypt.fr](https://www.veracrypt.fr) + +

+
+ + ### 📤 Sharing Files (9) - [Cyberduck](https://github.com/iterate-ch/cyberduck) - Cyberduck is a libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure & OneDrive, Google Drive and Dropbox. -
More

Languages: Java icon
Links: Latest Release   GitHub stars   License
Website: https://cyberduck.io
Screenshots:


+ +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://cyberduck.io](https://cyberduck.io) + + **Screenshots:** + + + + + +

+
+ - [Deluge](https://github.com/deluge-torrent/deluge) - Lightweight cross-platform BitTorrent client. -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ 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

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://nitroshare.net](https://nitroshare.net) + +

+
+ - [qBittorrent](https://github.com/qbittorrent/qBittorrent) - BitTorrent client in Qt. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Soduto](https://github.com/soduto/Soduto) - Soduto is a KDEConnect compatible application for macOS. It gives AirDrop like integration and allows file and clipboard sharing between your phones, desktops and tablets. -
More

Languages: Swift icon Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://soduto.com/

+ +
+ More +

+ + **Languages:** Swift icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://soduto.com/](https://soduto.com/) + +

+
+ - [Transmission](https://github.com/transmission/transmission) - Official Transmission BitTorrent client repository. -
More

Languages: Objective-C icon C icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### 👥 Social Networking (9) - [Caprine](https://github.com/sindresorhus/caprine#features) - Elegant Facebook Messenger desktop app. -
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Goofy](https://github.com/danielbuechele/goofy) - Unofficial Facebook Messenger client. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Leviathan](https://github.com/Swiftodon/Leviathan) - Leviathan is a iOS and macOS client application for the Mastodon social network. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Messenger](https://github.com/rsms/fb-mac-messenger) - macOS app wrapping Facebook's Messenger for desktop. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Product Hunt](https://github.com/producthunt/producthunt-osx) - share and discover your favorite new products and applications. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Quail](https://github.com/1000ch/quail) - Unofficial [esa](https://esa.io) app. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram Desktop App. -
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [RedditOS](https://github.com/Dimillian/RedditOS) - A SwiftUI Reddit client for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Simpo](https://github.com/KeliCheng/Simpo) - macOS menubar app to post status quickly. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ + ### 📡 Streaming (3) - [Galeri](https://github.com/michealparks/galeri) - Perpetual artwork streaming app. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [OBS Studio](https://github.com/obsproject/obs-studio) - Free and open source software for live streaming and screen recording. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://obsproject.com/

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://obsproject.com/](https://obsproject.com/) + +

+
+ - [Plug](https://github.com/wulkano/Plug) - Discover and listen to music from Hype Machine. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.plugformac.com/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.plugformac.com/](https://www.plugformac.com/) + + **Screenshots:** + + + +

+
+ + ### ⚙️ System (23) - [Apple Juice](https://github.com/raphaelhanneken/apple-juice) - Advanced battery gauge for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ 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)

+ +
+ 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:


+ +
+ 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:

+ +
+ 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

+ +
+ 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:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [HoRNDIS](https://github.com/jwise/HoRNDIS) - Android USB tethering driver for macOS. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Juice](https://github.com/brianmichel/Juice) - Make your battery information a bit more interesting. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevents your Mac from going to sleep. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Latest](https://github.com/mangerlahn/Latest) - Small utility app for macOS that makes sure you know about all the latest updates to the apps you use. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:

+ +
+ 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:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/LumingYin/macOSLucidaGrande/releases](https://github.com/LumingYin/macOSLucidaGrande/releases) + + **Screenshots:** + + + +

+
+ - [Overkill](https://github.com/KrauseFx/overkill-for-mac) - Stop iTunes from opening when you connect your iPhone. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [ProfileCreator](https://github.com/ProfileCreator/ProfileCreator) - macOS Application to create standard or customized configuration profiles. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Sloth](https://github.com/sveinbjornt/Sloth) - Sloth is an macOS application that displays a list of all open files and sockets in use by all running applications on your system. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ - [Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative. -
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** TypeScript icon Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Turbo Boost Switcher](https://github.com/rugarciap/Turbo-Boost-Switcher) - Turbo Boost Switcher is a little application for Mac computers that allows to enable and/or disable the Turbo Boost feature. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [VerticalBar](https://github.com/DeromirNeves/DockSeparator) - macOS application to add a vertical bar to Dock. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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/

+ +
+ More +

+ + **Languages:** C icon c++ + + **Website:** [https://www.wireshark.org/](https://www.wireshark.org/) + +

+
+ + ### 📺 Terminal (13) - [Alacritty](https://github.com/alacritty/alacritty) - Cross-platform, GPU-accelerated terminal emulator. -
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ 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

+ +
+ 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:

+ +
+ 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

+ +
+ 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:

+ +
+ 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

+ +
+ 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

+ +
+ 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:

+ +
+ 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:


+ +
+ 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

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [wallpapper](https://github.com/mczachurski/wallpapper) - wallpapper is a console application for creating dynamic wallpapers for Mojave. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ + ### 🎚️ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [MyTouchbarMyRules](https://github.com/toxblh/MTMR) - App to customize your Touch Bar as you want. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Pock](https://github.com/pock/pock) - Display macOS Dock in Touch Bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://pock.app/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://pock.app/](https://pock.app/) + + **Screenshots:** + + + +

+
+ - [Touch Bar Preview](https://github.com/touchbar/Touch-Bar-Preview) - Small application to display your designs on the Touch Bar of the new MacBook Pro. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Touch Bar Simulator](https://github.com/sindresorhus/touch-bar-simulator) - Use the Touch Bar on any Mac. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Touch Emoji](https://github.com/ilyalesik/touch-emoji) - Emoji picker for MacBook Pro Touch Bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ + ### 🛠️ Utilities (80) - [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(2 more screenshots available in the repository)

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ - [ArchiveMounter](https://github.com/ivoronin/ArchiveMounter) - Mounts archives like disk images. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.balena.io/etcher](https://www.balena.io/etcher) + +

+
+ - [baRSS – Menu Bar RSS Reader](https://github.com/relikd/barss) - RSS & Atom feed reader that lives in the system status bar. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Betaflight Configurator](https://github.com/betaflight/betaflight-configurator) - Cross platform configuration tool for the Betaflight firmware. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://betaflight.com/
Screenshots:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://betaflight.com/](https://betaflight.com/) + + **Screenshots:** + + + +

+
+ - [Bitwarden](https://github.com/bitwarden/desktop) - Cross-platform password management solutions for individuals, teams, and business organizations. -
More

Languages: TypeScript icon
Links: Latest Release   GitHub stars   License
Website: https://bitwarden.com/
Screenshots:



+ +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://bitwarden.com/](https://bitwarden.com/) + + **Screenshots:** + + + + + + + +

+
+ - [Bitwarden Menu](https://github.com/jnsdrtlf/bitwarden-menubar) - Bitwarden Password Manager in your menu bar -
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** TypeScript icon Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Boop](https://github.com/IvanMathy/Boop) - A scriptable scratchpad for developers. -
More

Languages: Swift icon JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://boop.okat.best
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://boop.okat.best](https://boop.okat.best) + + **Screenshots:** + + + +

+
+ - [Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Secure password manager for mac and other platforms. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ 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

+ +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://calibre-ebook.com](https://calibre-ebook.com) + +

+
+ - [Catch](https://github.com/mipstian/catch/) - Catch: Broadcatching made easy. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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](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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [CornerCal](https://github.com/ekreutz/CornerCal) - Simple, clean calendar and clock app for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Crypter](https://github.com/HR/Crypter) - Crypter is an innovative, convenient and secure cross-platform crypto app that simplifies secure password generation and management by requiring you to only remember one bit, the MasterPass. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://devutils.com](https://devutils.com) + + **Screenshots:** + + + +

+
+ - [dupeGuru](https://github.com/arsenetar/dupeguru/) - dupeGuru is a tool to find duplicate files on your computer. It can scan using file names and file contents. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Website: https://dupeguru.voltaicideas.net/

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://dupeguru.voltaicideas.net/](https://dupeguru.voltaicideas.net/) + +

+
+ - [Duplicate Finder](https://github.com/powerwolf543/DuplicateFinder) - It's a useful tool that would help you to find all duplicate files which have the same names in the specific folder. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ 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:

+ +
+ 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

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Go icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://adequate.systems/](https://adequate.systems/) + + **Screenshots:** + + + +

+
+ - [fselect](https://github.com/jhspetersson/fselect) - Command-line tool to search files with SQL syntax. -
More

Languages: Rust icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ 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

+ +
+ 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:


+ +
+ 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:

+ +
+ More +

+ + **Languages:** Ruby icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://brew.sh/](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:


+ +
+ 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

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [KeePassXC](https://github.com/keepassxreboot/keepassxc) - Cross-platform community-driven port of the Windows application "Keepass Password Safe" -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [KeeWeb](https://github.com/keeweb/keeweb) - Cross-platform password manager compatible with KeePass. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Keka](https://github.com/aonez/Keka) - Keka is a full featured file archiver, as easy as it can be. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://www.keka.io/en/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.keka.io/en/](https://www.keka.io/en/) + + **Screenshots:** + + + +

+
+ - [Kyapchar](https://github.com/vishaltelangre/Kyapchar) - Simple screen and microphone audio recorder for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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](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

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [mac-sound-fix](https://github.com/dragstor/mac-sound-fix) - Mac Sound Re-Enabler. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://macpacker.app/ ](https://macpacker.app/ ) + + **Screenshots:** + + + +

+
+ - [MacPass](https://github.com/MacPass/MacPass) - Native macOS KeePass client. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Maria](https://github.com/shincurry/Maria) - macOS native app/widget for aria2 download tool. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Meme Maker](https://github.com/MemeMaker/Meme-Maker-Mac) - Meme Maker macOS application for meme creation. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Middleclick](https://github.com/artginzburg/MiddleClick-Ventura) - Emulate a scroll wheel click with three finger Click or Tap on MacBook trackpad and Magic Mouse -
More

Languages: C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys. -
More

Languages: Swift icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Monolingual](https://github.com/IngmarStein/Monolingual) - Remove unnecessary language resources from macOS -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ 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:


+ +
+ 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

+ +
+ More +

+ + **Languages:** c++ Shell icon nix + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://nixos.org/explore.html](https://nixos.org/explore.html) + +

+
+ - [Nmap](https://github.com/nmap/nmap) - Nmap - the Network Mapper. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://nmap.org

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://nmap.org](https://nmap.org) + +

+
+ - [Nocturnal](https://github.com/joshjon/nocturnal) - Menu bar app featuring darker than dark dimming, Night Shift fine tuning, and the ability to turn off TouchBar on MacBook Pro. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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

+ +
+ 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

+ +
+ 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

+ +
+ 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/

+ +
+ More +

+ + **Languages:** Java icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://openrocket.info/](https://openrocket.info/) + +

+
+ - [Padlock](https://github.com/padloc/padloc) - A minimal, open source password manager for macOS. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ 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)

+ +
+ 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

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Pika](https://github.com/superhighfives/pika) - Is an easy to use, open-source, native colour picker for macOS. -
More

Languages: Swift icon metal
Links: Latest Release   GitHub stars   License
Website: https://superhighfives.com/pika
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon metal + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://superhighfives.com/pika](https://superhighfives.com/pika) + + **Screenshots:** + + + +

+
+ - [Plain Pasta](https://github.com/hisaac/PlainPasta) - Plaintextify your clipboard -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [PlayStatus](https://github.com/nbolar/PlayStatus) - PlayStatus is a macOS app that allows the control of Spotify and iTunes music playback from the menu bar. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [PowerShell](https://github.com/powershell/powershell) - PowerShell is a cross-platform automation and configuration tool/framework that works well with your existing tools. -
More

Languages: C# icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C# icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Rugby](https://github.com/swiftyfinch/Rugby) - 🏈 Cache CocoaPods for faster rebuild and indexing Xcode project. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://swiftyfinch.github.io/en/2021-03-09-rugby-story/
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://swiftyfinch.github.io/en/2021-03-09-rugby-story/](https://swiftyfinch.github.io/en/2021-03-09-rugby-story/) + + **Screenshots:** + + + +

+
+ - [ScreenCat](https://github.com/maxogden/screencat) - ScreenCat is a screen sharing + remote collaboration application. -
More

Languages: JavaScript icon CSS icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon CSS icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [SlowQuitApps](https://github.com/dteoh/SlowQuitApps) - Add a global delay to Command-Q to stop accidental app quits. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Spotter](https://github.com/spotter-application/spotter) - Productivity tool, the main function is to search and launch external application actions and applications themselves, so you can stay focused on your current task. Kind of spotlight or alfred alternative. -
More

Languages: TypeScript icon Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** TypeScript icon Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Stats](https://github.com/exelban/stats) - macOS system monitor in your menu bar -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Super Productivity](https://github.com/johannesjo/super-productivity) - Free to do list & time tracker for programmers & designers with Jira integration. -
More

Languages: TypeScript icon JavaScript icon
Links: Latest Release   GitHub stars   License
Website: https://super-productivity.com
Screenshots:

+ +
+ More +

+ + **Languages:** TypeScript icon JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://super-productivity.com](https://super-productivity.com) + + **Screenshots:** + + + +

+
+ - [Telephone](https://github.com/64characters/Telephone) - SIP softphone for macOS. -
More

Languages: Objective-C icon Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [The Blockstack Browser](https://github.com/stacks-network/blockstack-browser) - Blockstack is an internet for decentralized apps where users own their data. The Blockstack Browser allows you to explore the Blockstack internet. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [ThenGenerator](https://github.com/87kangsw/ThenGenerator) - Xcode Source Editor Extension for 'Then' -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [ToTheTop](https://github.com/zenangst/ToTheTop) - Small macOS application to help you scroll to the top. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [wechsel](https://github.com/friedrichweise/wechsel) - manage bluetooth connections with your keyboard. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://wechsel.weise.io
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://wechsel.weise.io](https://wechsel.weise.io) + + **Screenshots:** + + + +

+
+ - [Wireshark](https://github.com/wireshark/wireshark) - Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License
Website: https://www.wireshark.org

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.wireshark.org](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:

+ +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Übersicht](https://github.com/felixhageloh/uebersicht) - Keep an eye on what's happening on your machine and in the world. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### 🔐 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

+ +
+ 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

+ +
+ 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

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Specht](https://github.com/zhuhaow/Specht) - Rule-based proxy app built with Network Extension for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [SpechtLite](https://github.com/zhuhaow/SpechtLite) - Rule-based proxy app for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### 🎬 Video (19) - [Acid.Cam.v2.OSX](https://github.com/lostjared/Acid.Cam.v2.OSX) - Acid Cam v2 for macOS distorts video to create art. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [AppleEvents](https://github.com/insidegui/AppleEvents) - Unofficial Apple Events app for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Conferences.digital](https://github.com/zagahr/Conferences.digital) - Best way to watch the latest and greatest videos from your favourite developer conferences for free on your Mac. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Datamosh](https://github.com/maelswarm/Datamosh) - Datamosh your videos on macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ 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:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Gifted](https://github.com/vdel26/gifted) - Turn any short video into an animated GIF quickly and easily. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ 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

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.gnugk.org](https://www.gnugk.org) + +

+
+ - [HandBrake](https://github.com/HandBrake/HandBrake) - HandBrake is a video transcoder available for Linux, Mac, and Windows. -
More

Languages: C icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mifi.no/losslesscut/](https://mifi.no/losslesscut/) + + **Screenshots:** + + + +

+
+ - [MenuTube](https://github.com/edanchenkov/MenuTube) - Catch YouTube into your macOS menu bar! -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://mpv.io](https://mpv.io) + + **Screenshots:** + + + +

+
+ - [OpenShot](https://github.com/OpenShot/openshot-qt) - Easy to use, quick to learn, and surprisingly powerful video editor. -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License

+ +
+ 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](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

+ +
+ 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

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Website:** [https://subler.org](https://subler.org) + +

+
+ - [Vid Quiz Creator](https://github.com/sahil-a/vidquizcreator) - macOS application to insert quizzes within video playback and play those videos to receiving devices using the LISNR API. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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/

+ +
+ More +

+ + **Languages:** C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://www.videolan.org/vlc/](https://www.videolan.org/vlc/) + +

+
+ - [WebTorrent Desktop](https://github.com/webtorrent/webtorrent-desktop) - Streaming torrent app. For Mac, Windows, and Linux. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ - [Yoda](https://github.com/whoisandy/yoda) - Nifty macOS application which enables you to browse and download videos from YouTube. -
More

Languages: JavaScript icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### 🖥️ 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

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Artify](https://github.com/NghiaTranUIT/artify-macos) - A macOS application for bringing dedicatedly 18th century Arts to everyone -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



(1 more screenshots available in the repository)

+ +
+ 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

+ +
+ 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:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Desktop Wallpaper Switcher](https://github.com/VioletGiraffe/desktop-wallpaper-switcher) - Win / Linux / macOS tool for managing and cycling desktop wallpapers. -
More

Languages: C++ icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** C++ icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Muzei](https://github.com/naman14/Muzei-macOS) - Muzei wallpaper app for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://sindresorhus.com/plash](https://sindresorhus.com/plash) + + **Screenshots:** + + + +

+
+ - [pyDailyChanger](https://github.com/IngoMeyer441/pyDailyChanger) - pyDailyChanger is a program that changes your wallpaper daily. -
More

Languages: Python icon
Links: Latest Release   GitHub stars   License

+ +
+ 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:

+ +
+ 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:

+ +
+ 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

+ +
+ More +

+ + **Languages:** Ruby icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ + ### 🪟 Window Management (11) - [AltTab](https://github.com/lwouis/alt-tab-macos) - AltTab brings the power of Windows alt-tab to macOS. -
More

Languages: Swift icon Shell icon
Links: Latest Release   GitHub stars   License
Website: https://alt-tab-macos.netlify.app/
Screenshots:



+ +
+ More +

+ + **Languages:** Swift icon Shell icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://alt-tab-macos.netlify.app/](https://alt-tab-macos.netlify.app/) + + **Screenshots:** + + + + + + + +

+
+ - [Amethyst](https://github.com/ianyh/Amethyst) - Automatic tiling window manager for macOS. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ - [AppGrid](https://github.com/mjolnirapp/AppGrid) - Grid-based keyboard window manager for macOS. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Desktop Profiles](https://github.com/mamiksik/Desktop-Profiles) - An innovative desktop/window manager for macOS -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Screenshots:


+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Hammerspoon](https://github.com/Hammerspoon/hammerspoon) - Staggeringly powerful macOS desktop automation with Lua. -
More

Languages: Lua icon Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Lua icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Phoenix](https://github.com/kasper/phoenix) - Lightweight macOS window and app manager scriptable with JavaScript. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Rectangle](https://github.com/rxhanson/Rectangle) - Rectangle is a window manager heavily based on Spectacle, written in Swift. -
More

Languages: Swift icon
Links: Latest Release   GitHub stars   License
Website: https://rectangleapp.com

+ +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://rectangleapp.com](https://rectangleapp.com) + +

+
+ - [ShiftIt](https://github.com/fikovnik/ShiftIt) - Managing windows size and position. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:



+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ - [Slate](https://github.com/jigish/slate) - Slate is a window management application similar to Divvy and SizeUp -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Spectacle](https://github.com/eczarny/spectacle) - Spectacle allows you to organize your windows without using a mouse. -
More

Languages: Objective-C icon
Links: Latest Release   GitHub stars   License

+ +
+ More +

+ + **Languages:** Objective-C icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Yabai](https://github.com/koekeishiya/yabai) - A tiling window manager for macOS based on binary space partitioning. -
More

Languages: C icon Objective-C icon
Links: Latest Release   GitHub stars   License
Screenshots:

+ +
+ More +

+ + **Languages:** C icon Objective-C icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ diff --git a/api.json b/api.json index f60724d..d40696d 100644 --- a/api.json +++ b/api.json @@ -52,7 +52,7 @@ "web-development" : 14, "window-management" : 11 }, - "generated_at" : "2025-12-03T23:14:13Z", + "generated_at" : "2025-12-04T16:11:30Z", "total_apps" : 613, "total_categories" : 49 } \ No newline at end of file From 6eae4e0b91b50c532808dae7805f4e5f7ee99151 Mon Sep 17 00:00:00 2001 From: Dinesh Thakur Date: Thu, 4 Dec 2025 21:50:23 +0530 Subject: [PATCH 20/62] Add Requestly to applications.json (#986) --- applications.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/applications.json b/applications.json index 8f4b916..016499b 100644 --- a/applications.json +++ b/applications.json @@ -2340,6 +2340,23 @@ "typescript" ] }, + { + "short_description": "A lightweight open-source API Development, Testing & Mocking platform", + "categories": [ + "web-development" + ], + "repo_url": "https://github.com/requestly/requestly", + "title": "Requestly", + "icon_url": "https://raw.githubusercontent.com/requestly/requestly/master/app/public/favicon.png", + "screenshots": [ + "https://github.com/user-attachments/assets/a962b213-8744-4ffc-bd04-fcf891f48914", + "https://github.com/user-attachments/assets/7bc00c7e-c280-40eb-9a2a-c070ecdea662" + ], + "official_site": "https://requestly.com", + "languages": [ + "javascript" + ] + }, { "short_description": "Insomnia is a cross-platform REST client, built on top of Electron. ", "categories": [ From f353110c6ba535f1f5883e5b1e193c4a664b770d Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Thu, 4 Dec 2025 16:20:42 +0000 Subject: [PATCH 21/62] Generate README --- README.md | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9ecfce8..d95a98b 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Telegram Channel

- Total Apps + Total Apps Categories Last Updated

@@ -44,9 +44,9 @@ Hey friend! Help me out for a couple of :beers:! ⬆️ Back to Top -#### 🌍 Web Development (14) +#### 🌍 Web Development (15) - [aws-s3-uploader](https://github.com/RafalWilinski/s3-uploader) - Simple macOS app for uploading files to Amazon Web Services.
@@ -2656,6 +2656,27 @@ You can see in which language an app is written. Currently there are following l

+- [Requestly](https://github.com/requestly/requestly) - A lightweight open-source API Development, Testing & Mocking platform + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://requestly.com](https://requestly.com) + + **Screenshots:** + + + + + +

+
+ - [SimpleLocalize CLI](https://github.com/simplelocalize/simplelocalize-cli) - Open source tool for managing i18n keys in software projects.
From eff263d3e60030b54c83a152a5f0528ccf822408 Mon Sep 17 00:00:00 2001 From: Karan Mohindroo <96403086+NullPointerDepressiveDisorder@users.noreply.github.com> Date: Sat, 6 Dec 2025 13:33:58 -0800 Subject: [PATCH 22/62] Add MiddleDrag application to the list with details and resources (#987) --- applications.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/applications.json b/applications.json index 016499b..07bd111 100644 --- a/applications.json +++ b/applications.json @@ -1,5 +1,21 @@ { "applications": [ + { + "short_description": "Three-finger trackpad gestures for middle-click and middle-drag.", + "categories": [ + "utilities" + ], + "repo_url": "https://github.com/NullPointerDepressiveDisorder/MiddleDrag", + "title": "MiddleDrag", + "icon_url": "https://raw.githubusercontent.com/NullPointerDepressiveDisorder/MiddleDrag/main/Assets.xcassets/AppIcon.appiconset/Icon-256.png", + "screenshots": [ + "https://raw.githubusercontent.com/NullPointerDepressiveDisorder/MiddleDrag/main/Screenshots/MiddleDrag-Demo.gif" + ], + "official_site": "", + "languages": [ + "swift" + ] + }, { "short_description": "A handy menu bar translator app that supports DeepL and Google Translate.", "categories": [ From 3ad1b4c6f9438943a9500d68ac7834286f958e2d Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Sat, 6 Dec 2025 21:34:11 +0000 Subject: [PATCH 23/62] Generate README --- README.md | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d95a98b..7bfe44e 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,9 @@ Telegram Channel

- Total Apps + Total Apps Categories - Last Updated + Last Updated

@@ -44,9 +44,9 @@ Hey friend! Help me out for a couple of :beers:! ⬆️ Back to Top -### 🛠️ Utilities (80) +### 🛠️ Utilities (81) - [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android
@@ -10609,6 +10609,23 @@ You can see in which language an app is written. Currently there are following l

+- [MiddleDrag](https://github.com/NullPointerDepressiveDisorder/MiddleDrag) - Three-finger trackpad gestures for middle-click and middle-drag. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [MonitorControl](https://github.com/MonitorControl/MonitorControl) - Control your external monitor brightness, contrast or volume directly from a menulet or with keyboard native keys.
From af18199766dd4a0f4b8a8a36a4e88c4c4e961f8a Mon Sep 17 00:00:00 2001 From: Abdul Muzeer <54951751+designsbymuzeer@users.noreply.github.com> Date: Mon, 8 Dec 2025 02:20:47 +0530 Subject: [PATCH 24/62] Add new app 'Bye-AppQuit' to applications.json (#985) A minimal native macOS app to quickly view and bulk kill running processes. --- applications.json | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/applications.json b/applications.json index 07bd111..d4aeb43 100644 --- a/applications.json +++ b/applications.json @@ -31,7 +31,26 @@ "languages": [ "typescript" ] - }, + }, + { + "short_description": "A minimal native macOS app to quickly view and Bulk kill running processes.", + "categories": [ + "menubar", + "utilities", + "productivity" + ], + "repo_url": "https://github.com/designsbymuzeer/Bye-Mac-App", + "title": "Bye-AppQuit", + "icon_url": "https://github.com/user-attachments/assets/33bfcf78-0bd0-42b1-999b-a5b09b729526", + "screenshots": [ + "https://github.com/user-attachments/assets/63dade24-d967-4946-89e5-f8ae44097b31" + + ], + "official_site": "https://github.com/designsbymuzeer/Bye-Mac-App", + "languages": [ + "swift" + ] + }, { "short_description": "Keka is a full featured file archiver, as easy as it can be.", "categories": [ From 112a5a16fd6d59ddc2c57482d25eb46194466fbe Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Sun, 7 Dec 2025 20:51:02 +0000 Subject: [PATCH 25/62] Generate README --- README.md | 71 +++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 64 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7bfe44e..68310f3 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,9 @@ Telegram Channel

- Total Apps + Total Apps Categories - Last Updated + Last Updated

@@ -44,9 +44,9 @@ Hey friend! Help me out for a couple of :beers:! ⬆️ Back to Top -### 📊 Menubar (39) +### 📊 Menubar (40) - [Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks.
@@ -5829,6 +5829,25 @@ You can see in which language an app is written. Currently there are following l

+- [Bye-AppQuit](https://github.com/designsbymuzeer/Bye-Mac-App) - A minimal native macOS app to quickly view and Bulk kill running processes. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/designsbymuzeer/Bye-Mac-App](https://github.com/designsbymuzeer/Bye-Mac-App) + + **Screenshots:** + + + +

+
+ - [CloudyTabs](https://github.com/josh-/CloudyTabs) - Simple menu bar macOS application for displaying lists of your iCloud Tabs and Reading List.
@@ -7598,7 +7617,7 @@ You can see in which language an app is written. Currently there are following l -### ⏱️ Productivity (55) +### ⏱️ Productivity (56) - [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app.
@@ -7612,6 +7631,25 @@ You can see in which language an app is written. Currently there are following l

+- [Bye-AppQuit](https://github.com/designsbymuzeer/Bye-Mac-App) - A minimal native macOS app to quickly view and Bulk kill running processes. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/designsbymuzeer/Bye-Mac-App](https://github.com/designsbymuzeer/Bye-Mac-App) + + **Screenshots:** + + + +

+
+ - [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar.
@@ -9873,7 +9911,7 @@ You can see in which language an app is written. Currently there are following l -### 🛠️ Utilities (81) +### 🛠️ Utilities (82) - [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android
@@ -10050,6 +10088,25 @@ You can see in which language an app is written. Currently there are following l

+- [Bye-AppQuit](https://github.com/designsbymuzeer/Bye-Mac-App) - A minimal native macOS app to quickly view and Bulk kill running processes. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/designsbymuzeer/Bye-Mac-App](https://github.com/designsbymuzeer/Bye-Mac-App) + + **Screenshots:** + + + +

+
+ - [Calculeta](https://github.com/varol/Calculeta) - Calculator for macOS which working on statusbar.
From f8c4dd39ca88d1d2d5ebfb7f8c632b7c6ef92c8e Mon Sep 17 00:00:00 2001 From: k-a-rthik Date: Sun, 7 Dec 2025 13:32:19 -0800 Subject: [PATCH 26/62] Added Ice, a menu bar customization tool I use for quick shortcuts to my productivity apps. Updated applications.json. (#982) Also fixes json formatting issues with prior entries (tabbing, and spurious whitespace). These are cosmetic but affect readability. --- applications.json | 38 +++++++++++++++++++++++++++++--------- 1 file changed, 29 insertions(+), 9 deletions(-) diff --git a/applications.json b/applications.json index d4aeb43..0a1c442 100644 --- a/applications.json +++ b/applications.json @@ -9780,30 +9780,30 @@ "swift" ] }, - { + { "short_description": "Simple and free working time recording.", "categories": [ "menubar", - "productivity" + "productivity" ], "repo_url": "https://github.com/WINBIGFOX/timescribe", "title": "TimeScribe", "icon_url": "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/public/icon.png", "screenshots": [ - "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/menubar_light.png", + "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/menubar_light.png", "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/dayview_en_light.webp", "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/app_activity_en_light.webp", - "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/absences_en_light.webp", - "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/start_break_en_light.webp" + "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/absences_en_light.webp", + "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/start_break_en_light.webp" ], "official_site": "https://timescribe.app", "languages": [ "css", - "javascript", - "typescript", + "javascript", + "typescript" ] }, - { + { "short_description": "Archive manager for macOS. Preview (nested) archives without extracting them. Extract single files.", "categories": [ "utilities" @@ -9814,10 +9814,30 @@ "screenshots": [ "https://macpacker.app/main.png" ], - "official_site": "https://macpacker.app/ ", + "official_site": "https://macpacker.app/", + "languages": [ + "swift" + ] + }, + { + "short_description": "Ice is a versatile menu bar manager that goes beyond hiding and showing items to offer a rich set of productivity features.", + "categories": [ + "productivity", + "utilities", + "window-management" + ], + "repo_url": "https://github.com/jordanbaird/Ice", + "title": "Ice", + "icon_url": "https://icemenubar.app/gallery/Ice%20Cube.png?ts=1737648866", + "screenshots": [ + "https://icemenubar.app/gallery/ice-bar.png", + "https://icemenubar.app/gallery/menu-bar-item-search.png" + ], + "official_site": "https://icemenubar.app/", "languages": [ "swift" ] } + ] } From f001235d28676931fb8287189683dbfa6a61dcf1 Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Sun, 7 Dec 2025 21:32:35 +0000 Subject: [PATCH 27/62] Generate README --- README.md | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 70 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 68310f3..034c5a9 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Telegram Channel

- Total Apps + Total Apps Categories Last Updated

@@ -44,9 +44,9 @@ Hey friend! Help me out for a couple of :beers:! ⬆️ Back to Top -### ⏱️ Productivity (56) +### ⏱️ Productivity (57) - [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app.
@@ -7821,6 +7821,27 @@ You can see in which language an app is written. Currently there are following l

+- [Ice](https://github.com/jordanbaird/Ice) - Ice is a versatile menu bar manager that goes beyond hiding and showing items to offer a rich set of productivity features. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://icemenubar.app/](https://icemenubar.app/) + + **Screenshots:** + + + + + +

+
+ - [Itsycal](https://github.com/sfsam/Itsycal) - A tiny calendar for that lives in the Mac menu bar.
@@ -9911,7 +9932,7 @@ You can see in which language an app is written. Currently there are following l -### 🛠️ Utilities (82) +### 🛠️ Utilities (83) - [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android
@@ -10414,6 +10435,27 @@ You can see in which language an app is written. Currently there are following l

+- [Ice](https://github.com/jordanbaird/Ice) - Ice is a versatile menu bar manager that goes beyond hiding and showing items to offer a rich set of productivity features. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://icemenubar.app/](https://icemenubar.app/) + + **Screenshots:** + + + + + +

+
+ - [iOScanX](https://github.com/alessiomaffeis/iOScanX) - Cocoa application for semi-automated iOS app analysis and evaluation.
@@ -10580,7 +10622,7 @@ You can see in which language an app is written. Currently there are following l **Links:** Latest Release   GitHub stars   License - **Website:** [https://macpacker.app/ ](https://macpacker.app/ ) + **Website:** [https://macpacker.app/](https://macpacker.app/) **Screenshots:** @@ -11797,7 +11839,7 @@ You can see in which language an app is written. Currently there are following l -### 🪟 Window Management (11) +### 🪟 Window Management (12) - [AltTab](https://github.com/lwouis/alt-tab-macos) - AltTab brings the power of Windows alt-tab to macOS.
@@ -11893,6 +11935,27 @@ You can see in which language an app is written. Currently there are following l

+- [Ice](https://github.com/jordanbaird/Ice) - Ice is a versatile menu bar manager that goes beyond hiding and showing items to offer a rich set of productivity features. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://icemenubar.app/](https://icemenubar.app/) + + **Screenshots:** + + + + + +

+
+ - [Phoenix](https://github.com/kasper/phoenix) - Lightweight macOS window and app manager scriptable with JavaScript.
From ab5c1d46b1ae0a2d22e730d2a5b96421412cf70d Mon Sep 17 00:00:00 2001 From: Valerio <88933932+0xMassi@users.noreply.github.com> Date: Thu, 19 Feb 2026 23:38:35 +0100 Subject: [PATCH 28/62] Add Stik to Notes category (#1000) --- applications.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/applications.json b/applications.json index 0a1c442..5803568 100644 --- a/applications.json +++ b/applications.json @@ -9837,6 +9837,21 @@ "languages": [ "swift" ] + }, + { + "short_description": "Instant thought capture for macOS. Global hotkey summons a post-it note, type and close. Notes stored as plain markdown files.", + "categories": [ + "notes" + ], + "repo_url": "https://github.com/0xMassi/stik_app", + "title": "Stik", + "icon_url": "", + "screenshots": [], + "official_site": "https://stik.ink", + "languages": [ + "rust", + "typescript" + ] } ] From 24e9ab428d65486edb047d0b43e207e32ca62eb3 Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Thu, 19 Feb 2026 22:38:47 +0000 Subject: [PATCH 29/62] Generate README --- README.md | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 034c5a9..0dd5e71 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,9 @@ Telegram Channel

- Total Apps + Total Apps Categories - Last Updated + Last Updated

@@ -44,7 +44,7 @@ Hey friend! Help me out for a couple of :beers:! ⬆️ Back to Top -### 📔 Notes (16) +### 📔 Notes (17) - [Boostnote](https://github.com/BoostIO/BoostNote-Legacy) - Note-taking application made for programmers just like you.
@@ -7009,6 +7009,21 @@ You can see in which language an app is written. Currently there are following l

+- [Stik](https://github.com/0xMassi/stik_app) - Instant thought capture for macOS. Global hotkey summons a post-it note, type and close. Notes stored as plain markdown files. + +
+ More +

+ + **Languages:** Rust icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://stik.ink](https://stik.ink) + +

+
+ - [tmpNote](https://github.com/buddax2/tmpNote) - Very simple macOS app to make temporary notes.
From d7715a439ad90574c096e9cfd6a9d88e7a064b01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A1draic=20Slattery?= Date: Thu, 19 Feb 2026 23:39:15 +0100 Subject: [PATCH 30/62] chore: Update outdated GitHub Actions versions (#998) --- .github/workflows/main.yml | 2 +- .github/workflows/pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b0c4663..81dfcbb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: generate-readme: runs-on: macos-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - run: swift ./.github/main.swift - run: git config user.name "serhii-londar" - run: git config user.email "serhii.londar@gmail.com" diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 173b284..83c65aa 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -10,5 +10,5 @@ jobs: - run: gem install awesome_bot - run: gem install bundler - run: gem install danger - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - run: awesome_bot applications.json -w https://matrix.org,https://camo.githubusercontent.com,http://joshparnham.com,https://pock.pigigaldi.com,https://docs.microsoft.com/powershell/scripting/install/installing-powershell-core-on-macos?view=powershell-6,https://adequate.systems/ --allow 429 From edaf09c950afa02fc318ca61124ed61c1bdd1357 Mon Sep 17 00:00:00 2001 From: unsecretised <132474703+unsecretised@users.noreply.github.com> Date: Fri, 20 Feb 2026 06:42:20 +0800 Subject: [PATCH 31/62] Add rustcast (#995) --- applications.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/applications.json b/applications.json index 5803568..a16876a 100644 --- a/applications.json +++ b/applications.json @@ -1,5 +1,23 @@ { "applications": [ + { + "short_description": "Blazingly fast, customisable multi tool, application launcher", + "categories": [ + "productivity", + "utilities", + "menubar" + ], + "repo_url": "https://github.com/unsecretised/rustcast", + "title": "RustCast", + "icon_url": "https://rustcast.umangsurana.com/icon.png", + "screenshots": [ + "https://rustcast.umangsurana.com/rustcast-v0-5-0.png" + ], + "official_site": "https://rustcast.umangsurana.com", + "languages": [ + "rust" + ] + }, { "short_description": "Three-finger trackpad gestures for middle-click and middle-drag.", "categories": [ From 98c9d0197df21fa3581da1eac17d1b6d6893b795 Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Thu, 19 Feb 2026 22:42:32 +0000 Subject: [PATCH 32/62] Generate README --- README.md | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 62 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0dd5e71..e3ccc52 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Telegram Channel

- Total Apps + Total Apps Categories Last Updated

@@ -44,7 +44,7 @@ Hey friend! Help me out for a couple of :beers:! ⬆️ Back to Top -### 📊 Menubar (40) +### 📊 Menubar (41) - [Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks.
@@ -6281,6 +6281,25 @@ You can see in which language an app is written. Currently there are following l

+- [RustCast](https://github.com/unsecretised/rustcast) - Blazingly fast, customisable multi tool, application launcher + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://rustcast.umangsurana.com](https://rustcast.umangsurana.com) + + **Screenshots:** + + + +

+
+ - [SensibleSideButtons](https://github.com/archagon/sensible-side-buttons) - Small menu bar utility that lets you use your third-party mouse's side buttons for navigation across a variety of apps.
@@ -7632,7 +7651,7 @@ You can see in which language an app is written. Currently there are following l -### ⏱️ Productivity (57) +### ⏱️ Productivity (58) - [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app.
@@ -8195,6 +8214,25 @@ You can see in which language an app is written. Currently there are following l

+- [RustCast](https://github.com/unsecretised/rustcast) - Blazingly fast, customisable multi tool, application launcher + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://rustcast.umangsurana.com](https://rustcast.umangsurana.com) + + **Screenshots:** + + + +

+
+ - [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.
@@ -9947,7 +9985,7 @@ You can see in which language an app is written. Currently there are following l -### 🛠️ Utilities (83) +### 🛠️ Utilities (84) - [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android
@@ -11043,6 +11081,25 @@ You can see in which language an app is written. Currently there are following l

+- [RustCast](https://github.com/unsecretised/rustcast) - Blazingly fast, customisable multi tool, application launcher + +
+ More +

+ + **Languages:** Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://rustcast.umangsurana.com](https://rustcast.umangsurana.com) + + **Screenshots:** + + + +

+
+ - [ScreenCat](https://github.com/maxogden/screencat) - ScreenCat is a screen sharing + remote collaboration application.
From 71177117ea8de034d449af253f9b0eae5983dcde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Lavoie?= Date: Thu, 19 Feb 2026 17:48:23 -0500 Subject: [PATCH 33/62] Add File Architect to applications list (#1004) * Add File Architect to applications list * Add File Architect screenshot URL --------- Co-authored-by: Serhii Londar --- applications.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/applications.json b/applications.json index a16876a..743bb87 100644 --- a/applications.json +++ b/applications.json @@ -9857,6 +9857,24 @@ ] }, { + "short_description": "Create file and folder structures from plain text descriptions.", + "categories": [ + "productivity", + "utilities" + ], + "repo_url": "https://github.com/filearchitect/app", + "title": "File Architect", + "icon_url": "https://raw.githubusercontent.com/filearchitect/app/main/app-icon.png", + "screenshots": [ + "https://raw.githubusercontent.com/filearchitect/app/main/docs/screenshots/filearchitect-main.png" + ], + "official_site": "https://filearchitect.com", + "languages": [ + "typescript", + "rust" + ] + }, + { "short_description": "Instant thought capture for macOS. Global hotkey summons a post-it note, type and close. Notes stored as plain markdown files.", "categories": [ "notes" @@ -9871,6 +9889,5 @@ "typescript" ] } - ] } From 53e0df387619ed744a734f8c49dc2d0c8ee0b448 Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Thu, 19 Feb 2026 22:48:40 +0000 Subject: [PATCH 34/62] Generate README --- README.md | 46 ++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 42 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e3ccc52..f3a1e70 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Telegram Channel

- Total Apps + Total Apps Categories Last Updated

@@ -44,7 +44,7 @@ Hey friend! Help me out for a couple of :beers:! ⬆️ Back to Top -### ⏱️ Productivity (58) +### ⏱️ Productivity (59) - [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app.
@@ -7842,6 +7842,25 @@ You can see in which language an app is written. Currently there are following l

+- [File Architect](https://github.com/filearchitect/app) - Create file and folder structures from plain text descriptions. + +
+ More +

+ + **Languages:** TypeScript icon Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://filearchitect.com](https://filearchitect.com) + + **Screenshots:** + + + +

+
+ - [Flycut](https://github.com/TermiT/flycut) - Clean and simple clipboard manager for developers.
@@ -9985,7 +10004,7 @@ You can see in which language an app is written. Currently there are following l -### 🛠️ Utilities (84) +### 🛠️ Utilities (85) - [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android
@@ -10392,6 +10411,25 @@ You can see in which language an app is written. Currently there are following l

+- [File Architect](https://github.com/filearchitect/app) - Create file and folder structures from plain text descriptions. + +
+ More +

+ + **Languages:** TypeScript icon Rust icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://filearchitect.com](https://filearchitect.com) + + **Screenshots:** + + + +

+
+ - [Flying Carpet](https://github.com/spieglt/flyingcarpet) - cross-platform file transfer over ad-hoc wifi, like AirDrop but for Mac/Windows/Linux.
From b501d2cd10d53bee9ead82f9272985a65bf65e5e Mon Sep 17 00:00:00 2001 From: Amr Samy <36173696+Amr-Samy@users.noreply.github.com> Date: Fri, 20 Feb 2026 00:49:07 +0200 Subject: [PATCH 35/62] Add Open mtp application (#991) Advanced Android File Transfer Application for macOS --- applications.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/applications.json b/applications.json index 743bb87..1f1b18a 100644 --- a/applications.json +++ b/applications.json @@ -6071,6 +6071,24 @@ "cpp" ] }, + { + "short_description": "Free Advanced Android File Transfer Application for macOS", + "categories": [ + "Android", + "File Transfare" + ], + "repo_url": "https://github.com/ganeshrvel/openmtp", + "title": "Open mtp", + "icon_url": "https://github.com/ganeshrvel/openmtp/blob/master/app/app.icns", + "screenshots": [ + "https://raw.githubusercontent.com/ganeshrvel/openmtp/master/blobs/images/file-explorer-bluebg.jpg", + "https://raw.githubusercontent.com/ganeshrvel/openmtp/master/blobs/images/file-transfer-bluebg.jpg" + ], + "official_site": "https://openmtp.ganeshrvel.com/", + "languages": [ + "English" + ] + } { "short_description": "Make your battery information a bit more interesting. ", "categories": [ From 42e106569073a07fa9a1a0130c7bf3b54275a13a Mon Sep 17 00:00:00 2001 From: Andrew Date: Fri, 20 Feb 2026 06:50:45 +0800 Subject: [PATCH 36/62] Add Vercel Deployment Menu Bar (#981) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add Vercel Deployment Menu Bar * Update website URL to Vercel deployment Changed the official site URL from GitHub Pages to Vercel hosting to avoid domain conflicts with custom domain configuration. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --------- Co-authored-by: Claude --- applications.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/applications.json b/applications.json index 1f1b18a..55d2bd2 100644 --- a/applications.json +++ b/applications.json @@ -8132,6 +8132,22 @@ "cpp" ] }, + { + "short_description": "Open-source macOS menu bar app to monitor Vercel deployment status in real time.", + "categories": [ + "menubar" + ], + "repo_url": "https://github.com/andrewk17/vercel-deployment-menu-bar", + "title": "Vercel Deployment Menu Bar", + "icon_url": "https://raw.githubusercontent.com/andrewk17/vercel-deployment-menu-bar/main/app-icon.png", + "screenshots": [ + "https://raw.githubusercontent.com/andrewk17/vercel-deployment-menu-bar/main/vercel-menu-bar-deployment-status-macos.png" + ], + "official_site": "https://vercel-deployment-menu-bar.vercel.app/", + "languages": [ + "swift" + ] + }, { "short_description": "Free to do list & time tracker for programmers & designers with Jira integration.", "categories": [ From ff91c5e84824297dee804c592d4f7fe2187ab543 Mon Sep 17 00:00:00 2001 From: AmirHossein Teymoori <34753150+ateymoori@users.noreply.github.com> Date: Thu, 19 Feb 2026 23:51:22 +0100 Subject: [PATCH 37/62] Add LyricGlow (#980) --- applications.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/applications.json b/applications.json index 55d2bd2..3b49a05 100644 --- a/applications.json +++ b/applications.json @@ -505,6 +505,24 @@ "swift" ] }, + { + "short_description": "macOS application displaying synchronized lyrics with animated word-by-word glow effects for Spotify, Apple Music, and YouTube Music.", + "categories": [ + "audio" + ], + "repo_url": "https://github.com/ateymoori/lyricglow", + "title": "LyricGlow", + "icon_url": "https://raw.githubusercontent.com/ateymoori/lyricglow/main/build/icon.png", + "screenshots": [ + "https://raw.githubusercontent.com/ateymoori/lyricglow/main/screenshots/lyricglow-synchronized-lyrics-english.png", + "https://raw.githubusercontent.com/ateymoori/lyricglow/main/screenshots/lyricglow-artist-images-album-covers.png", + "https://raw.githubusercontent.com/ateymoori/lyricglow/main/screenshots/lyricglow-rtl-lyrics-persian.png" + ], + "official_site": "", + "languages": [ + "javascript" + ] + }, { "repo_url": "https://github.com/LumingYin/macOSLucidaGrande", "official_site": "https://github.com/LumingYin/macOSLucidaGrande/releases", From d71439694b3568d7d8f91c0adb59da33d6995627 Mon Sep 17 00:00:00 2001 From: Usman Ahmad Saeed <20966983+UsmanAhmadSaeed@users.noreply.github.com> Date: Fri, 20 Feb 2026 03:52:30 +0500 Subject: [PATCH 38/62] Added LibreCAD in graphics category (#977) * add: AltTab window manager add: AltTab window manager * Added LibreCAD in design category * Removed item already PRed through other branch Removed item already PRed through other branch --------- Co-authored-by: Serhii Londar --- applications.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/applications.json b/applications.json index 3b49a05..908c582 100644 --- a/applications.json +++ b/applications.json @@ -9908,6 +9908,23 @@ "swift" ] }, + { + "short_description": "LibreCAD is a free Open Source CAD application for Windows, Apple and Linux. Support and documentation are free from our large, dedicated community of users, contributors and developers.", + "categories": [ + "graphics" + ], + "repo_url": "https://github.com/LibreCAD/LibreCAD", + "title": "LibreCAD", + "icon_url": "https://github.com/LibreCAD/LibreCAD/blob/master/desktop/media/logo/librecad_logo.svg", + "screenshots": [ + "https://librecad.org/img/welcome.png" + ], + "official_site": "https://librecad.org", + "languages": [ + "c++", + "c" + ] + }, { "short_description": "Create file and folder structures from plain text descriptions.", "categories": [ From 55ad81184d975e542cdc1ff3e95206a37d7b3362 Mon Sep 17 00:00:00 2001 From: Louis Beaumont Date: Thu, 19 Feb 2026 14:53:09 -0800 Subject: [PATCH 39/62] Add Screenpipe to Productivity section (#1005) --- applications.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/applications.json b/applications.json index 908c582..30497a6 100644 --- a/applications.json +++ b/applications.json @@ -9957,6 +9957,24 @@ "rust", "typescript" ] + }, + { + "short_description": "24/7 screen and audio recording with AI-powered search. Local-first, privacy-focused rewind alternative.", + "categories": [ + "productivity", + "utilities" + ], + "repo_url": "https://github.com/screenpipe/screenpipe", + "title": "Screenpipe", + "icon_url": "https://raw.githubusercontent.com/screenpipe/screenpipe/main/apps/screenpipe-app-tauri/src-tauri/icons/128x128.png", + "screenshots": [ + "https://screenpi.pe/og-image.png" + ], + "official_site": "https://screenpi.pe", + "languages": [ + "rust", + "typescript" + ] } ] } From 08dec6588d30c97c2458cf89ce253189b2ee5f4b Mon Sep 17 00:00:00 2001 From: Usman Ahmad Saeed <20966983+UsmanAhmadSaeed@users.noreply.github.com> Date: Fri, 20 Feb 2026 03:55:07 +0500 Subject: [PATCH 40/62] add: AltTab window manager (#976) add: AltTab window manager Co-authored-by: Serhii Londar --- applications.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/applications.json b/applications.json index 30497a6..39bf51b 100644 --- a/applications.json +++ b/applications.json @@ -9889,6 +9889,22 @@ "swift" ] }, + { + "short_description": "Switch between open applications on macOS with a Windows-like Alt+Tab experience.", + "categories": [ + "window-management" + ], + "repo_url": "https://github.com/lwouis/alt-tab-macos", + "title": "AltTab", + "icon_url": "https://github.com/lwouis/alt-tab-macos/blob/master/resources/icons/app/app.svg", + "screenshots": [ + "https://github.com/lwouis/alt-tab-macos/raw/master/docs/public/demo/frontpage.jpg" + ], + "official_site": "https://alt-tab-macos.netlify.app/", + "languages": [ + "swift" + ] + }, { "short_description": "Ice is a versatile menu bar manager that goes beyond hiding and showing items to offer a rich set of productivity features.", "categories": [ From 3bbfe78c25b20edb386c1c1592b2f56e74d78796 Mon Sep 17 00:00:00 2001 From: Aakash Darsi <66508746+Aakashdarsi@users.noreply.github.com> Date: Fri, 20 Feb 2026 04:28:04 +0530 Subject: [PATCH 41/62] Added resource for PDF tools (#974) --- applications.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/applications.json b/applications.json index 39bf51b..afd4c3c 100644 --- a/applications.json +++ b/applications.json @@ -69,6 +69,25 @@ "swift" ] }, + { + "short_description":"Locally hosted web application that allows you to perform various operations on PDF files", + "categories":[ + "utilities" + ], + "repo_url":"https://github.com/Stirling-Tools/Stirling-PDF", + "title":"Stirling-PDF", + "icon_url":"https://github.com/Stirling-Tools/Stirling-PDF/blob/main/app/core/src/main/resources/static/favicon.png", + "screenshots":[ + + ], + "official_site":"stirlingpdf.com", + "languages":[ + "java", + "html", + "javascript", + "html" + ] + }, { "short_description": "Keka is a full featured file archiver, as easy as it can be.", "categories": [ From 335eecbcd165826a68dfda0bb1c270dafa95c341 Mon Sep 17 00:00:00 2001 From: Aakash Darsi <66508746+Aakashdarsi@users.noreply.github.com> Date: Fri, 20 Feb 2026 04:29:27 +0530 Subject: [PATCH 42/62] Add resource for notetaking (#973) Co-authored-by: Serhii Londar --- applications.json | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/applications.json b/applications.json index afd4c3c..b7e000b 100644 --- a/applications.json +++ b/applications.json @@ -34,6 +34,25 @@ "swift" ] }, + { + "short_description":"Take handwritten notes with ease", + "categories":[ + "productivity", + "macos", + "utilities" + ], + "repo_url":"https://github.com/xournalpp/xournalpp/", + "title":"Xournal++", + "icon_url":"https://github.com/xournalpp/xournalpp/blob/master/mac-setup/icon/Icon1024.png", + "screenshots":[], + "official_site":"", + "languages":[ + "cpp", + "lua", + "c", + "python" + ] + }, { "short_description": "A handy menu bar translator app that supports DeepL and Google Translate.", "categories": [ @@ -9869,7 +9888,7 @@ "swift" ] }, - { + { "short_description": "Simple and free working time recording.", "categories": [ "menubar", @@ -9888,11 +9907,11 @@ "official_site": "https://timescribe.app", "languages": [ "css", - "javascript", - "typescript" + "javascript", + "typescript" ] }, - { + { "short_description": "Archive manager for macOS. Preview (nested) archives without extracting them. Extract single files.", "categories": [ "utilities" From fa8f5d49026a3e0f49d09697d55a58d6681be4ce Mon Sep 17 00:00:00 2001 From: Teboho Date: Fri, 20 Feb 2026 01:01:01 +0200 Subject: [PATCH 43/62] Add OpenCore Legacy Patcher to applications list (#972) Added OpenCore Legacy Patcher entry with details. --- applications.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/applications.json b/applications.json index b7e000b..56d59d9 100644 --- a/applications.json +++ b/applications.json @@ -122,6 +122,20 @@ "languages": [ "swift" ] + }, + { + "short_description": "OpenCore Legacy Patcher is a tool for installing new MacOS versions on legacy macs.", + "categories": [ + "utilities" + ], + "repo_url": "https://github.com/dortania/OpenCore-Legacy-Patcher", + "title": "OpenCore Legacy Patcher", + "icon_url": "", + "screenshots": [], + "official_site": "https://dortania.github.io/OpenCore-Legacy-Patcher/", + "languages": [ + "python" + ] }, { "short_description": "A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications.", From b3391b258bfcc353f2efe16c64c4091164660114 Mon Sep 17 00:00:00 2001 From: Iason Paraskevopoulos Date: Thu, 19 Feb 2026 15:02:06 -0800 Subject: [PATCH 44/62] Add Hopp (#971) Co-authored-by: Serhii Londar --- applications.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/applications.json b/applications.json index 56d59d9..2364bf3 100644 --- a/applications.json +++ b/applications.json @@ -9941,6 +9941,24 @@ "swift" ] }, + { + "short_description": "Remote pair programming app.", + "categories": [ + "Other" + ], + "repo_url": "https://github.com/gethopp/hopp", + "title": "Hopp", + "icon_url": "https://dlh49gjxx49i3.cloudfront.net/logo-light.png", + "screenshots": [ + "https://docs.gethopp.app/_astro/screenshare.w05eQI3z_7tfaK.webp" + ], + "official_site": "https://gethopp.app/", + "languages": [ + "rust", + "typescript", + "go" + ] + }, { "short_description": "Switch between open applications on macOS with a Windows-like Alt+Tab experience.", "categories": [ From 2a32edbd037b30db8969680e940a8cc6c018b61a Mon Sep 17 00:00:00 2001 From: Andriy Konstantynov <34865800+Conxt@users.noreply.github.com> Date: Fri, 20 Feb 2026 01:02:49 +0200 Subject: [PATCH 45/62] Add Window Glue (#965) --- applications.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/applications.json b/applications.json index 2364bf3..ced6827 100644 --- a/applications.json +++ b/applications.json @@ -10061,6 +10061,22 @@ "rust", "typescript" ] + }, + { + "short_description": "A simple macOS menu bar utility that lets you glue two windows together so that they behave (mostly) as one.", + "categories": [ + "window-management" + ], + "repo_url": "https://github.com/Conxt/WindowGlue", + "title": "Window Glue", + "icon_url": "https://github.com/Conxt/WindowGlue/raw/main/Assets/Icon-MacOS-256x256.png", + "screenshots": [ + "https://github.com/Conxt/WindowGlue/raw/main/Assets/Screen.gif" + ], + "official_site": "", + "languages": [ + "swift" + ] } ] } From d2921fb01c5dc828a5cbb2045a7297c14a27b7c5 Mon Sep 17 00:00:00 2001 From: Serhii Londar Date: Fri, 20 Feb 2026 00:06:27 +0100 Subject: [PATCH 46/62] Fix JSON formatting for battery information application --- applications.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications.json b/applications.json index ced6827..507bb52 100644 --- a/applications.json +++ b/applications.json @@ -6158,7 +6158,7 @@ "languages": [ "English" ] - } + }, { "short_description": "Make your battery information a bit more interesting. ", "categories": [ From ab1815a236638b00efcdc06f0765d671a58b910f Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Thu, 19 Feb 2026 23:06:41 +0000 Subject: [PATCH 47/62] Generate README --- README.md | 207 +++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 198 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index f3a1e70..6f648e8 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Telegram Channel

- Total Apps + Total Apps Categories Last Updated

@@ -44,9 +44,9 @@ Hey friend! Help me out for a couple of :beers:! -### 🎵 Audio (36) +### 🎵 Audio (37) - [[Un]MuteMic](https://github.com/CocoaHeadsBrasil/MuteUnmuteMic) - macOS app to mute & unmute the input volume of your microphone. Perfect for podcasters.
@@ -447,6 +447,27 @@ You can see in which language an app is written. Currently there are following l

+- [LyricGlow](https://github.com/ateymoori/lyricglow) - macOS application displaying synchronized lyrics with animated word-by-word glow effects for Spotify, Apple Music, and YouTube Music. + +
+ More +

+ + **Languages:** JavaScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + + + +

+
+ - [Lyricism](https://github.com/lyc2345/Lyricism) - macOS app to show you lyric what currently iTunes or Spotify is playing.
@@ -4682,7 +4703,7 @@ You can see in which language an app is written. Currently there are following l -### 🎨 Graphics (15) +### 🎨 Graphics (16) - [Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux).
@@ -4888,6 +4909,25 @@ You can see in which language an app is written. Currently there are following l

+- [LibreCAD](https://github.com/LibreCAD/LibreCAD) - LibreCAD is a free Open Source CAD application for Windows, Apple and Linux. Support and documentation are free from our large, dedicated community of users, contributors and developers. + +
+ More +

+ + **Languages:** c++ C icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://librecad.org](https://librecad.org) + + **Screenshots:** + + + +

+
+ - [macSVG](https://github.com/dsward2/macSVG) - macOS application for designing HTML5 SVG (Scalable Vector Graphics) art and animation with a WebKit web view.
@@ -5749,7 +5789,7 @@ You can see in which language an app is written. Currently there are following l -### 📊 Menubar (41) +### 📊 Menubar (42) - [Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks.
@@ -6406,6 +6446,25 @@ You can see in which language an app is written. Currently there are following l

+- [Vercel Deployment Menu Bar](https://github.com/andrewk17/vercel-deployment-menu-bar) - Open-source macOS menu bar app to monitor Vercel deployment status in real time. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://vercel-deployment-menu-bar.vercel.app/](https://vercel-deployment-menu-bar.vercel.app/) + + **Screenshots:** + + + +

+
+ - [xbar](https://github.com/matryer/xbar) - Put the output from any script or program into your macOS Menu Bar.
@@ -7651,7 +7710,7 @@ You can see in which language an app is written. Currently there are following l -### ⏱️ Productivity (59) +### ⏱️ Productivity (61) - [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app.
@@ -8252,6 +8311,25 @@ You can see in which language an app is written. Currently there are following l

+- [Screenpipe](https://github.com/screenpipe/screenpipe) - 24/7 screen and audio recording with AI-powered search. Local-first, privacy-focused rewind alternative. + +
+ More +

+ + **Languages:** Rust icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://screenpi.pe](https://screenpi.pe) + + **Screenshots:** + + + +

+
+ - [SelfControl](https://github.com/SelfControlApp/selfcontrol) - macOS app to block your own access to distracting websites etc for a predetermined period of time. It can not be undone by the app or by a restart – you must wait for the timer to run out.
@@ -8628,6 +8706,19 @@ You can see in which language an app is written. Currently there are following l

+- [Xournal++](https://github.com/xournalpp/xournalpp/) - Take handwritten notes with ease + +
+ More +

+ + **Languages:** C++ icon Lua icon C icon Python icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [Yomu](https://github.com/sendyhalim/Yomu) - Manga reader app for macOS.
@@ -10004,7 +10095,7 @@ You can see in which language an app is written. Currently there are following l -### 🛠️ Utilities (85) +### 🛠️ Utilities (89) - [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android
@@ -10968,6 +11059,21 @@ You can see in which language an app is written. Currently there are following l

+- [OpenCore Legacy Patcher](https://github.com/dortania/OpenCore-Legacy-Patcher) - OpenCore Legacy Patcher is a tool for installing new MacOS versions on legacy macs. + +
+ More +

+ + **Languages:** Python icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://dortania.github.io/OpenCore-Legacy-Patcher/](https://dortania.github.io/OpenCore-Legacy-Patcher/) + +

+
+ - [OpenRocket](https://github.com/openrocket/openrocket) - OpenRocket is a cross-platform utility tool to model and simulate model rockets and their flight characteristics.
@@ -11151,6 +11257,25 @@ You can see in which language an app is written. Currently there are following l

+- [Screenpipe](https://github.com/screenpipe/screenpipe) - 24/7 screen and audio recording with AI-powered search. Local-first, privacy-focused rewind alternative. + +
+ More +

+ + **Languages:** Rust icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://screenpi.pe](https://screenpi.pe) + + **Screenshots:** + + + +

+
+ - [SlimHUD - Cyanocitta](https://github.com/AlexPerathoner/SlimHUD) - Replacement for MacOS' volume, brightness and keyboard backlight HUDs.
@@ -11213,6 +11338,21 @@ You can see in which language an app is written. Currently there are following l

+- [Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF) - Locally hosted web application that allows you to perform various operations on PDF files + +
+ More +

+ + **Languages:** Java icon html JavaScript icon html + + **Links:** Latest Release   GitHub stars   License + + **Website:** [stirlingpdf.com](stirlingpdf.com) + +

+
+ - [Stringz](https://github.com/mohakapt/Stringz) - A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications.
@@ -11358,6 +11498,19 @@ You can see in which language an app is written. Currently there are following l

+- [Xournal++](https://github.com/xournalpp/xournalpp/) - Take handwritten notes with ease + +
+ More +

+ + **Languages:** C++ icon Lua icon C icon Python icon + + **Links:** Latest Release   GitHub stars   License + +

+
+ - [zoxide](https://github.com/ajeetdsouza/zoxide) - zoxide is a smarter cd command for your terminal.
@@ -11949,7 +12102,7 @@ You can see in which language an app is written. Currently there are following l -### 🪟 Window Management (12) +### 🪟 Window Management (14) - [AltTab](https://github.com/lwouis/alt-tab-macos) - AltTab brings the power of Windows alt-tab to macOS.
@@ -11973,6 +12126,25 @@ You can see in which language an app is written. Currently there are following l

+- [AltTab](https://github.com/lwouis/alt-tab-macos) - Switch between open applications on macOS with a Windows-like Alt+Tab experience. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://alt-tab-macos.netlify.app/](https://alt-tab-macos.netlify.app/) + + **Screenshots:** + + + +

+
+ - [Amethyst](https://github.com/ianyh/Amethyst) - Automatic tiling window manager for macOS.
@@ -12145,6 +12317,23 @@ You can see in which language an app is written. Currently there are following l

+- [Window Glue](https://github.com/Conxt/WindowGlue) - A simple macOS menu bar utility that lets you glue two windows together so that they behave (mostly) as one. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Yabai](https://github.com/koekeishiya/yabai) - A tiling window manager for macOS based on binary space partitioning.
From a9a07f488c43efbca25c6d802c27e3bacce802ac Mon Sep 17 00:00:00 2001 From: XiCheng <43695246+XiCheng148@users.noreply.github.com> Date: Fri, 20 Feb 2026 07:07:15 +0800 Subject: [PATCH 48/62] Add Dockit (#962) --- applications.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/applications.json b/applications.json index 507bb52..8396785 100644 --- a/applications.json +++ b/applications.json @@ -10077,6 +10077,23 @@ "languages": [ "swift" ] + }, + { + "short_description": "An application that can dock any window to the edge of the screen.", + "categories": [ + "window-management", + "productivity" + ], + "repo_url": "https://github.com/xicheng148/Dockit", + "title": "Dockit", + "icon_url": "https://github.com/XiCheng148/Dockit/blob/main/Resources/dmg-icon.svg?raw=true", + "screenshots": [ + "https://github.com/XiCheng148/Dockit/blob/main/Resources/preview.gif?raw=true" + ], + "official_site": "[official site](https://dockit-docs.pages.dev/?s=open-sourse-mac-os-apps)", + "languages": [ + "swift" + ] } ] } From a72b5c02aec82d527f42fa657f84e192f677e00b Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Thu, 19 Feb 2026 23:07:35 +0000 Subject: [PATCH 49/62] Generate README --- README.md | 48 +++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 43 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6f648e8..ee3d889 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Telegram Channel

- Total Apps + Total Apps Categories Last Updated

@@ -44,9 +44,9 @@ Hey friend! Help me out for a couple of :beers:! ⬆️ Back to Top -### ⏱️ Productivity (61) +### ⏱️ Productivity (62) - [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app.
@@ -7850,6 +7850,25 @@ You can see in which language an app is written. Currently there are following l

+- [Dockit](https://github.com/xicheng148/Dockit) - An application that can dock any window to the edge of the screen. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [[official site](https://dockit-docs.pages.dev/?s=open-sourse-mac-os-apps)]([official site](https://dockit-docs.pages.dev/?s=open-sourse-mac-os-apps)) + + **Screenshots:** + + + +

+
+ - [DropPoint](https://github.com/GameGodS3/DropPoint) - Make drag-and-drop easier using DropPoint. Helps to drag content without having to open side-by-side windows.
@@ -12102,7 +12121,7 @@ You can see in which language an app is written. Currently there are following l -### 🪟 Window Management (14) +### 🪟 Window Management (15) - [AltTab](https://github.com/lwouis/alt-tab-macos) - AltTab brings the power of Windows alt-tab to macOS.
@@ -12204,6 +12223,25 @@ You can see in which language an app is written. Currently there are following l

+- [Dockit](https://github.com/xicheng148/Dockit) - An application that can dock any window to the edge of the screen. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [[official site](https://dockit-docs.pages.dev/?s=open-sourse-mac-os-apps)]([official site](https://dockit-docs.pages.dev/?s=open-sourse-mac-os-apps)) + + **Screenshots:** + + + +

+
+ - [Hammerspoon](https://github.com/Hammerspoon/hammerspoon) - Staggeringly powerful macOS desktop automation with Lua.
From 1b516348d9a2c4399d190d935a277e346f39a7c2 Mon Sep 17 00:00:00 2001 From: Slava Kharkov Date: Thu, 19 Feb 2026 15:10:50 -0800 Subject: [PATCH 50/62] Add Gridfy app (#961) * add gridfy * remove productivity category --------- Co-authored-by: Serhii Londar --- applications.json | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/applications.json b/applications.json index 8396785..067ebbb 100644 --- a/applications.json +++ b/applications.json @@ -9902,7 +9902,8 @@ "swift" ] }, - { + { + "short_description": "Simple and free working time recording.", "categories": [ "menubar", @@ -9921,6 +9922,26 @@ "official_site": "https://timescribe.app", "languages": [ "css", + "javascript", + "typescript" + ] + }, + { + "short_description": "Quickly calculate column widths and get correct results for your grid.", + "categories": [ + "utilities", + "development" + + ], + "repo_url": "https://github.com/Slllava/gridfy", + "title": "Gridfy", + "icon_url": "https://raw.githubusercontent.com/Slllava/gridfy/refs/heads/main/Gridfy/Assets.xcassets/Icons/AppIcon.appiconset/Icon-512.png", + "screenshots": [ + "https://raw.githubusercontent.com/Slllava/gridfy/refs/heads/main/media/pr-01.png", + "https://raw.githubusercontent.com/Slllava/gridfy/refs/heads/main/media/pr-02.png", + "https://raw.githubusercontent.com/Slllava/gridfy/refs/heads/main/media/pr-03.png" + ], + "official_site": "https://gridfy.astroon.pro/", "javascript", "typescript" ] From 6680cb2af51526bf1b186c2c8d62d6fd06fb6b44 Mon Sep 17 00:00:00 2001 From: C S Prasad Date: Fri, 20 Feb 2026 04:41:47 +0530 Subject: [PATCH 51/62] Add Input Source Pro (#959) --- applications.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/applications.json b/applications.json index 067ebbb..46ed56f 100644 --- a/applications.json +++ b/applications.json @@ -10115,6 +10115,20 @@ "languages": [ "swift" ] - } + }, + { + "short_description": "Input Source Pro is macOS utility designed for multilingual users who frequently switch input sources.", + "categories": [ + "keyboard", "utilities", "ios--macos" + ], + "repo_url": "https://github.com/runjuu/InputSourcePro/", + "title": "Input Source Pro", + "icon_url": "https://camo.githubusercontent.com/858c5c213d9937d100e0837f6f37f67652457acada5fd1f17253060da568e5e1/68747470733a2f2f696e707574736f757263652e70726f2f696d672f6170702d69636f6e2e706e67", + "screenshots": [], + "official_site": "https://inputsource.pro", + "languages": [ + "swift" + ] + } ] } From 3a23c0c11df7fb5570b439c16c45123d0eb25a6e Mon Sep 17 00:00:00 2001 From: C S Prasad Date: Fri, 20 Feb 2026 04:44:05 +0530 Subject: [PATCH 52/62] Archive AppleTrace (#958) --- applications.json | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/applications.json b/applications.json index 46ed56f..c6cd412 100644 --- a/applications.json +++ b/applications.json @@ -1746,20 +1746,6 @@ "swift" ] }, - { - "short_description": "Trace tool for iOS/macOS. ", - "categories": [ - "ios--macos" - ], - "repo_url": "https://github.com/everettjf/AppleTrace", - "title": "AppleTrace", - "icon_url": "", - "screenshots": [], - "official_site": "", - "languages": [ - "objective_c" - ] - }, { "short_description": "Gives you indication about the average iOS / macOS app stores review times. ", "categories": [ From c438936b87075e9044149f61d9d85cda02fa1247 Mon Sep 17 00:00:00 2001 From: C S Prasad Date: Fri, 20 Feb 2026 04:44:30 +0530 Subject: [PATCH 53/62] Balance Open repository has been archived (#956) --- applications.json | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/applications.json b/applications.json index c6cd412..f048c56 100644 --- a/applications.json +++ b/applications.json @@ -1222,22 +1222,6 @@ "javascript" ] }, - { - "short_description": "App for all the world’s currencies. ", - "categories": [ - "cryptocurrency" - ], - "repo_url": "https://github.com/balance-io/balance-open", - "title": "Balance Open", - "icon_url": "", - "screenshots": [ - "https://d3vv6lp55qjaqc.cloudfront.net/items/2840292G3j1g102Q3s21/balance-open.png" - ], - "official_site": "", - "languages": [ - "swift" - ] - }, { "short_description": "macOS menu bar application for tracking crypto coin prices. ", "categories": [ From 2f8163c900015d2af18875889fa524580098c5e1 Mon Sep 17 00:00:00 2001 From: C S Prasad Date: Fri, 20 Feb 2026 04:47:05 +0530 Subject: [PATCH 54/62] Add DevLint (#954) Co-authored-by: Serhii Londar --- applications.json | 51 ++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 46 insertions(+), 5 deletions(-) diff --git a/applications.json b/applications.json index f048c56..10bc030 100644 --- a/applications.json +++ b/applications.json @@ -9873,7 +9873,48 @@ ] }, { - + "short_description":"Simple and free working time recording.", + "categories":[ + "menubar", + "productivity" + ], + "repo_url":"https://github.com/WINBIGFOX/timescribe", + "title":"TimeScribe", + "icon_url":"https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/public/icon.png", + "screenshots":[ + "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/menubar_light.png", + "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/dayview_en_light.webp", + "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/app_activity_en_light.webp", + "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/absences_en_light.webp", + "https://raw.githubusercontent.com/WINBIGFOX/timescribe/refs/heads/main/.github/images/start_break_en_light.webp" + ], + "official_site":"https://timescribe.app", + "languages":[ + "css", + "javascript", + "typescript" + ] + }, + { + "short_description":"A lightweight app for formatting and correcting Swift syntax.", + "categories":[ + "development", + "editors", + "ios--macos" + ], + "repo_url":"https://github.com/csprasad/DevLint", + "title":"DevLint", + "icon_url":"https://raw.githubusercontent.com/csprasad/DevLint/main/.github/images/Icon.png", + "screenshots":[ + "https://raw.githubusercontent.com/csprasad/DevLint/main/.github/images/App_screen_light.png", + "https://raw.githubusercontent.com/csprasad/DevLint/main/.github/images/App_screen_light.png" + ], + "official_site":"", + "languages":[ + "swift" + ] + }, + { "short_description": "Simple and free working time recording.", "categories": [ "menubar", @@ -9932,7 +9973,7 @@ "swift" ] }, - { + { "short_description": "Remote pair programming app.", "categories": [ "Other" @@ -9949,7 +9990,7 @@ "typescript", "go" ] - }, + }, { "short_description": "Switch between open applications on macOS with a Windows-like Alt+Tab experience.", "categories": [ @@ -10053,7 +10094,7 @@ "typescript" ] }, - { + { "short_description": "A simple macOS menu bar utility that lets you glue two windows together so that they behave (mostly) as one.", "categories": [ "window-management" @@ -10086,7 +10127,7 @@ "swift" ] }, - { + { "short_description": "Input Source Pro is macOS utility designed for multilingual users who frequently switch input sources.", "categories": [ "keyboard", "utilities", "ios--macos" From f4937da735cb0fa613f14b33d309d21ba8c6313e Mon Sep 17 00:00:00 2001 From: Kaushik Chemburkar Date: Fri, 20 Feb 2026 10:22:24 +1100 Subject: [PATCH 55/62] Update applications.json - Added Bitcoin Core to the Cryptocurrency Category (#944) * Update applications.json Added Bitcoin Core * Update applications.json * Update applications.json --------- Co-authored-by: Serhii Londar --- applications.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/applications.json b/applications.json index 10bc030..b455ad8 100644 --- a/applications.json +++ b/applications.json @@ -1222,6 +1222,26 @@ "javascript" ] }, + { + "short_description": "Official Bitcoin Core software for running a full Bitcoin node.", + "categories": [ + "cryptocurrency", + "blockchain", + "finance" + ], + "repo_url": "https://github.com/bitcoin/bitcoin", + "title": "Bitcoin Core", + "icon_url": "https://github.com/bitcoin-core/bitcoincore.org/blob/master/assets/images/bitcoin_core_logo_colored_reversed.png", + "screenshots": [ + "https://github.com/bitcoin-core/bitcoincore.org/blob/master/assets/images/releases/fee-bump-menu.png" + ], + "official_site": "https://bitcoincore.org/", + "languages": [ + "C++", + "Python", + "Shell" + ] + }, { "short_description": "macOS menu bar application for tracking crypto coin prices. ", "categories": [ From 5f9d57e96ef824b908084ac4bcd7fbc24871da7b Mon Sep 17 00:00:00 2001 From: Hyeong Jun Huh <48173908+DipokalLab@users.noreply.github.com> Date: Fri, 20 Feb 2026 08:24:38 +0900 Subject: [PATCH 56/62] Update applications.json (#943) Co-authored-by: Serhii Londar --- applications.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/applications.json b/applications.json index b455ad8..0fbc760 100644 --- a/applications.json +++ b/applications.json @@ -9875,6 +9875,18 @@ "python" ] }, + { + "short_description": "Video editing software designed for motion effects and versatility.", + "categories": ["graphics"], + "repo_url": "https://github.com/cartesiancs/nugget-app", + "title": "Nugget", + "icon_url": "https://raw.githubusercontent.com/cartesiancs/nugget-app/refs/heads/main/assets/icons/png/512x512.png", + "screenshots": [ + "https://raw.githubusercontent.com/cartesiancs/nugget-app/refs/heads/main/.github/screenshotv1.png" + ], + "official_site": "", + "languages": ["typescript"] + }, { "short_description": "Replace the Git CLI with a clear UI and AI assist.", "categories": [ From 564aed41d25bbb09d7d3d9fdc9005854f599094e Mon Sep 17 00:00:00 2001 From: Serhii Londar Date: Fri, 20 Feb 2026 00:25:30 +0100 Subject: [PATCH 57/62] Add languages support for Gridfy application --- applications.json | 1 + 1 file changed, 1 insertion(+) diff --git a/applications.json b/applications.json index 0fbc760..026d835 100644 --- a/applications.json +++ b/applications.json @@ -9985,6 +9985,7 @@ "https://raw.githubusercontent.com/Slllava/gridfy/refs/heads/main/media/pr-03.png" ], "official_site": "https://gridfy.astroon.pro/", + "languages": [ "javascript", "typescript" ] From d18d5a3d06c722d832d3e0d691d78252b27f1fb1 Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Thu, 19 Feb 2026 23:25:41 +0000 Subject: [PATCH 58/62] Generate README --- README.md | 260 ++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 232 insertions(+), 28 deletions(-) diff --git a/README.md b/README.md index ee3d889..7e19425 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Telegram Channel

- Total Apps + Total Apps Categories Last Updated

@@ -44,9 +44,9 @@ Hey friend! Help me out for a couple of :beers:! ### 💰 Cryptocurrency (5) -- [Balance Open](https://github.com/balance-io/balance-open) - App for all the world’s currencies. +- [Bitcoin Core](https://github.com/bitcoin/bitcoin) - Official Bitcoin Core software for running a full Bitcoin node.
More

- **Languages:** Swift icon + **Languages:** C++ Python icon Shell icon - **Links:** Latest Release   GitHub stars   License + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://bitcoincore.org/](https://bitcoincore.org/) **Screenshots:** - +

@@ -1822,7 +1824,7 @@ You can see in which language an app is written. Currently there are following l -### 👨‍💻 Development (9) +### 👨‍💻 Development (11) - [Apache Netbeans](https://github.com/apache/netbeans) - Apache NetBeans is an IDE, Tooling Platform and Application Framework suitable for development in Java, JavaScript, PHP, HTML5, CSS, and more.
@@ -1882,6 +1884,25 @@ You can see in which language an app is written. Currently there are following l

+- [DevLint](https://github.com/csprasad/DevLint) - A lightweight app for formatting and correcting Swift syntax. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [GitAhead](https://github.com/gitahead/gitahead/) - A graphical Git client designed to help you understand and manage your source code history.
@@ -1897,6 +1918,29 @@ You can see in which language an app is written. Currently there are following l

+- [Gridfy](https://github.com/Slllava/gridfy) - Quickly calculate column widths and get correct results for your grid. + +
+ More +

+ + **Languages:** JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gridfy.astroon.pro/](https://gridfy.astroon.pro/) + + **Screenshots:** + + + + + + + +

+
+ - [KiCad](https://gitlab.com/kicad/code/kicad) - A software suite for electronic design automation.
@@ -2733,7 +2777,7 @@ You can see in which language an app is written. Currently there are following l -#### 📱 iOS / macOS (41) +#### 📱 iOS / macOS (42) - [AppBox](https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation) - Tool for iOS developers to build and deploy Development, Ad-Hoc and In-house (Enterprise) applications directly to the devices from your Dropbox account.
@@ -2772,19 +2816,6 @@ You can see in which language an app is written. Currently there are following l

-- [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.
@@ -2992,6 +3023,25 @@ You can see in which language an app is written. Currently there are following l

+- [DevLint](https://github.com/csprasad/DevLint) - A lightweight app for formatting and correcting Swift syntax. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [FilterShop](https://github.com/KrisYu/FilterShop) - macOS App to explore CoreImage Filters.
@@ -3090,6 +3140,21 @@ You can see in which language an app is written. Currently there are following l

+- [Input Source Pro](https://github.com/runjuu/InputSourcePro/) - Input Source Pro is macOS utility designed for multilingual users who frequently switch input sources. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://inputsource.pro](https://inputsource.pro) + +

+
+ - [iOS Images Extractor](https://github.com/devcxm/iOS-Images-Extractor) - iOS Images Extractor is a Mac app to normalize, decode, and extract images from iOS apps.
@@ -3555,7 +3620,7 @@ You can see in which language an app is written. Currently there are following l -### 📝 Editors (4) +### 📝 Editors (5) - [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS.
@@ -3613,6 +3678,25 @@ You can see in which language an app is written. Currently there are following l

+- [DevLint](https://github.com/csprasad/DevLint) - A lightweight app for formatting and correcting Swift syntax. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + + + +

+
+ - [Geany](https://github.com/geany/geany) - Geany is a powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow.
@@ -4703,7 +4787,7 @@ You can see in which language an app is written. Currently there are following l -### 🎨 Graphics (16) +### 🎨 Graphics (17) - [Aseprite](https://github.com/aseprite/aseprite) - Animated sprite editor & pixel art tool (Windows, macOS, Linux).
@@ -4962,6 +5046,23 @@ You can see in which language an app is written. Currently there are following l

+- [Nugget](https://github.com/cartesiancs/nugget-app) - Video editing software designed for motion effects and versatility. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Screenshots:** + + + +

+
+ - [Pencil2D Animation](https://github.com/pencil2d/pencil) - Pencil2D is an animation/drawing software for macOS, Windows, and Linux. It lets you create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics.
@@ -5504,7 +5605,7 @@ You can see in which language an app is written. Currently there are following l -### ⌨️ Keyboard (9) +### ⌨️ Keyboard (10) - [AnnePro-mac](https://github.com/msvisser/AnnePro-mac) - macOS application for controlling AnnePro keyboard over bluetooth.
@@ -5544,6 +5645,21 @@ You can see in which language an app is written. Currently there are following l

+- [Input Source Pro](https://github.com/runjuu/InputSourcePro/) - Input Source Pro is macOS utility designed for multilingual users who frequently switch input sources. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://inputsource.pro](https://inputsource.pro) + +

+
+ - [Karabiner](https://github.com/tekezo/Karabiner) - Karabiner (KeyRemap4MacBook) is a powerful utility for keyboard customization.
@@ -5789,7 +5905,7 @@ You can see in which language an app is written. Currently there are following l -### 📊 Menubar (42) +### 📊 Menubar (43) - [Airpass](https://github.com/alvesjtiago/airpass) - Status bar Mac application to overcome time constrained WiFi networks.
@@ -6446,6 +6562,31 @@ You can see in which language an app is written. Currently there are following l

+- [TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording. + +
+ More +

+ + **Languages:** CSS icon JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://timescribe.app](https://timescribe.app) + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ - [Vercel Deployment Menu Bar](https://github.com/andrewk17/vercel-deployment-menu-bar) - Open-source macOS menu bar app to monitor Vercel deployment status in real time.
@@ -7710,7 +7851,7 @@ You can see in which language an app is written. Currently there are following l -### ⏱️ Productivity (62) +### ⏱️ Productivity (63) - [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app.
@@ -8614,6 +8755,31 @@ You can see in which language an app is written. Currently there are following l

+- [TimeScribe](https://github.com/WINBIGFOX/timescribe) - Simple and free working time recording. + +
+ More +

+ + **Languages:** CSS icon JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://timescribe.app](https://timescribe.app) + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ - [Toggl Desktop](https://github.com/toggl-open-source/toggldesktop) - Toggl Desktop app for Windows, Mac and Linux.
@@ -10114,7 +10280,7 @@ You can see in which language an app is written. Currently there are following l -### 🛠️ Utilities (89) +### 🛠️ Utilities (91) - [Android tool for Mac](https://github.com/mortenjust/androidtool-mac) - One-click screenshots, video recordings, app installation for iOS and Android
@@ -10617,6 +10783,29 @@ You can see in which language an app is written. Currently there are following l

+- [Gridfy](https://github.com/Slllava/gridfy) - Quickly calculate column widths and get correct results for your grid. + +
+ More +

+ + **Languages:** JavaScript icon TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://gridfy.astroon.pro/](https://gridfy.astroon.pro/) + + **Screenshots:** + + + + + + + +

+
+ - [homebrew-cask](https://github.com/Homebrew/homebrew-cask) - A CLI workflow for the administration of macOS applications distributed as binaries
@@ -10657,6 +10846,21 @@ You can see in which language an app is written. Currently there are following l

+- [Input Source Pro](https://github.com/runjuu/InputSourcePro/) - Input Source Pro is macOS utility designed for multilingual users who frequently switch input sources. + +
+ More +

+ + **Languages:** Swift icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://inputsource.pro](https://inputsource.pro) + +

+
+ - [iOScanX](https://github.com/alessiomaffeis/iOScanX) - Cocoa application for semi-automated iOS app analysis and evaluation.
From e47030113f673007d447d6cec25c3f55be69d2ed Mon Sep 17 00:00:00 2001 From: Huang Xin Date: Fri, 20 Feb 2026 07:25:59 +0800 Subject: [PATCH 59/62] Add Readest (#941) --- applications.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/applications.json b/applications.json index 026d835..4b0a0e9 100644 --- a/applications.json +++ b/applications.json @@ -9809,6 +9809,26 @@ "typescript" ] }, + { + "short_description": "Readest is a modern, feature-rich ebook reader designed for avid readers.", + "categories": [ + "productivity" + ], + "repo_url": "https://github.com/readest/readest", + "title": "Readest", + "icon_url": "https://raw.githubusercontent.com/readest/readest/main/apps/readest-app/public/icon.png", + "screenshots": [ + "https://raw.githubusercontent.com/readest/readest/main/data/screenshots/annotations.png", + "https://raw.githubusercontent.com/readest/readest/main/data/screenshots/tts_control.png", + "https://raw.githubusercontent.com/readest/readest/main/data/screenshots/wikipedia_vertical.png", + "https://raw.githubusercontent.com/readest/readest/main/data/screenshots/dark_mode.png", + "https://raw.githubusercontent.com/readest/readest/main/data/screenshots/theming_dark_mode.png", + ], + "official_site": "https://readest.com", + "languages": [ + "typescript" + ] + }, { "short_description": "A Hex Editor for Reverse Engineers.", "categories": [ From b6be6252f7dbd75dd4e0de74ace29f52a866c914 Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Thu, 19 Feb 2026 23:26:11 +0000 Subject: [PATCH 60/62] Generate README --- README.md | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7e19425..3e9d43d 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Telegram Channel

- Total Apps + Total Apps Categories Last Updated

@@ -44,7 +44,7 @@ Hey friend! Help me out for a couple of :beers:! ⬆️ Back to Top -### ⏱️ Productivity (63) +### ⏱️ Productivity (64) - [Ao](https://github.com/klaudiosinani/ao) - Elegant Microsoft To-Do desktop app.
@@ -8435,6 +8435,31 @@ You can see in which language an app is written. Currently there are following l

+- [Readest](https://github.com/readest/readest) - Readest is a modern, feature-rich ebook reader designed for avid readers. + +
+ More +

+ + **Languages:** TypeScript icon + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://readest.com](https://readest.com) + + **Screenshots:** + + + + + + + + *(2 more screenshots available in the repository)* + +

+
+ - [reventlou](https://github.com/b3z/reventlou) - Personal database as an information management system.
From 0107cb465fac0046a7a168c0894ba9e0869569be Mon Sep 17 00:00:00 2001 From: Massimo Nardello <60795014+maxnd@users.noreply.github.com> Date: Fri, 20 Feb 2026 00:26:38 +0100 Subject: [PATCH 61/62] Add mxMarkEdit (#940) * Add mxMarkEdit * Add mxMarkEdit --------- Co-authored-by: Massimo Nardello --- PULL_REQUEST_TEMPLATE.md | 16 ++++++++-------- applications.json | 20 ++++++++++++++++++++ 2 files changed, 28 insertions(+), 8 deletions(-) diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md index 1d06d77..91de97c 100644 --- a/PULL_REQUEST_TEMPLATE.md +++ b/PULL_REQUEST_TEMPLATE.md @@ -1,13 +1,13 @@ ## Project URL - +https://github.com/maxnd/mxMarkEdit ## Category - +markdown, text, editors ## Description - +mxMarkEdit is a free software for Mac for writing texts and todo items in Markdown format and easily exporting them to other formats with Pandoc. In each document, it’s available an Excel-like grid useful to manage various sets of data. Some Markdown markers are hidden, as the text that follows them or is contained within them is properly formatted. At the left of the text, there’s a list of the titles and todo items. By clicking on an item in this list, the cursor moves to the corresponding title or todo item. While moving the cursor in the text, the corresponding title or todo item is highlighted. The app has many functionalities and shortcuts to manage easily a document. ## Why it should be included to `Awesome macOS open source applications ` (optional) @@ -15,8 +15,8 @@ ## Checklist -- [ ] Edit [applications.json](https://github.com/serhii-londar/open-source-mac-os-apps/blob/master/applications.json) instead of [README.md](https://github.com/serhii-londar/open-source-mac-os-apps/blob/master/README.md). -- [ ] Only one project/change is in this pull request -- [ ] Screenshots(s) added if any -- [ ] Has a commit from less than 2 years ago -- [ ] Has a **clear** README in English +- [X] Edit [applications.json](https://github.com/serhii-londar/open-source-mac-os-apps/blob/master/applications.json) instead of [README.md](https://github.com/serhii-londar/open-source-mac-os-apps/blob/master/README.md). +- [X] Only one project/change is in this pull request +- [X] Screenshots(s) added if any +- [X] Has a commit from less than 2 years ago +- [X] Has a **clear** README in English diff --git a/applications.json b/applications.json index 4b0a0e9..b1be5a0 100644 --- a/applications.json +++ b/applications.json @@ -53,6 +53,26 @@ "python" ] }, + { + "short_description": "A visual editor of Markdown document, tasks and tables.", + "categories": [ + "markdown", + "editors", + "text" ], + "repo_url": "https://github.com/maxnd/mxMarkEdit", + "title": "mxMarkEdit", + "icon_url": "https://github.com/maxnd/mxMarkEdit/blob/main/icon128.png", + "screenshots": [ + "https://github.com/maxnd/mxMarkEdit/blob/main/screenshots/screenshot1.png", + "https://github.com/maxnd/mxMarkEdit/blob/main/screenshots/screenshot2.png", + "https://github.com/maxnd/mxMarkEdit/blob/main/screenshots/screenshot3.png", + "https://github.com/maxnd/mxMarkEdit/blob/main/screenshots/screenshot4.png" + ], + "official_site": "https://github.com/maxnd/mxMarkEdit", + "languages": [ + "free-pascal" + ] + }, { "short_description": "A handy menu bar translator app that supports DeepL and Google Translate.", "categories": [ From 3c096a572d779a0d7aef7222c2916b217586129b Mon Sep 17 00:00:00 2001 From: serhii-londar Date: Thu, 19 Feb 2026 23:26:56 +0000 Subject: [PATCH 62/62] Generate README --- README.md | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 80 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3e9d43d..8d39f8a 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Telegram Channel

- Total Apps + Total Apps Categories Last Updated

@@ -44,7 +44,7 @@ Hey friend! Help me out for a couple of :beers:! ⬆️ Back to Top -### 📝 Editors (5) +### 📝 Editors (6) - [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS.
@@ -3716,6 +3716,31 @@ You can see in which language an app is written. Currently there are following l

+- [mxMarkEdit](https://github.com/maxnd/mxMarkEdit) - A visual editor of Markdown document, tasks and tables. + +
+ More +

+ + **Languages:** free-pascal + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/maxnd/mxMarkEdit](https://github.com/maxnd/mxMarkEdit) + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ @@ -3776,7 +3801,7 @@ You can see in which language an app is written. Currently there are following l -#### 📝 Markdown (10) +#### 📝 Markdown (11) - [Gingko](https://github.com/gingko/client) - Tree-structured markdown editor for macOS, Windows, and Linux.
@@ -3864,6 +3889,31 @@ You can see in which language an app is written. Currently there are following l

+- [mxMarkEdit](https://github.com/maxnd/mxMarkEdit) - A visual editor of Markdown document, tasks and tables. + +
+ More +

+ + **Languages:** free-pascal + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/maxnd/mxMarkEdit](https://github.com/maxnd/mxMarkEdit) + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ - [Notenik](https://github.com/hbowie/notenik-swift) - Note-taking app with many organizational options.
@@ -3989,7 +4039,7 @@ You can see in which language an app is written. Currently there are following l -#### ✏️ Text (11) +#### ✏️ Text (12) - [AuroraEditor](https://github.com/AuroraEditor/AuroraEditor) - Lightweight Code Editor (IDE) for macOS.
@@ -4083,6 +4133,31 @@ You can see in which language an app is written. Currently there are following l

+- [mxMarkEdit](https://github.com/maxnd/mxMarkEdit) - A visual editor of Markdown document, tasks and tables. + +
+ More +

+ + **Languages:** free-pascal + + **Links:** Latest Release   GitHub stars   License + + **Website:** [https://github.com/maxnd/mxMarkEdit](https://github.com/maxnd/mxMarkEdit) + + **Screenshots:** + + + + + + + + *(1 more screenshots available in the repository)* + +

+
+ - [Noto](https://github.com/brunophilipe/noto) - Plain text editor for macOS with customizable themes.