<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
  <channel>
    
    <title>GitHub Swift Monthly Trending Repositories</title>
    <description>Monthly Trending Repositories of Swift on GitHub</description>
    
    <pubDate>Mon, 10 Aug 2026 07:37:05 GMT</pubDate>
    <link>https://mshibanami.github.io/GitHubTrendingRSS</link>
    
    <item>
      <title>permissionlesstech/bitchat</title>
      <link>https://github.com/permissionlesstech/bitchat</link>
      <description>&lt;p&gt;bluetooth mesh chat, IRC vibes&lt;/p&gt;&lt;hr&gt;&lt;img width=&quot;256&quot; height=&quot;256&quot; alt=&quot;icon_128x128@2x&quot; src=&quot;https://github.com/user-attachments/assets/90133f83-b4f6-41c6-aab9-25d0859d2a47&quot; /&gt; 
&lt;h2&gt;bitchat&lt;/h2&gt; 
&lt;p&gt;A decentralized peer-to-peer messaging app with dual transport architecture: local Bluetooth mesh networks for offline communication and internet-based Nostr protocol for global reach. No accounts, no phone numbers, no central servers. It&#39;s the side-groupchat.&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;http://bitchat.free&quot;&gt;bitchat.free&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;📲 &lt;a href=&quot;https://apps.apple.com/us/app/bitchat-mesh/id6748219622&quot;&gt;App Store&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;📲 &lt;a href=&quot;https://play.google.com/store/apps/details?id=com.bitchat.droid&quot;&gt;Play Store&lt;/a&gt;&lt;/p&gt; 
&lt;h3&gt;Getting a copy you can trust&lt;/h3&gt; 
&lt;p&gt;Install from the App Store, or build from source you have verified. A compiled build from anywhere else cannot be verified — see &lt;a href=&quot;https://raw.githubusercontent.com/permissionlesstech/bitchat/main/docs/VERIFYING-A-BUILD.md&quot;&gt;Verifying bitchat&lt;/a&gt; for how to check source against the per-release hash manifest, and for what to do if that is the only build you can get.&lt;/p&gt; 
&lt;p&gt;This matters more than it usually would: this repository has been the target of takedown demands, and when a repository or releases page disappears, mirrors appear that nobody can check.&lt;/p&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;This project is released into the public domain. See the &lt;a href=&quot;https://raw.githubusercontent.com/permissionlesstech/bitchat/main/LICENSE&quot;&gt;LICENSE&lt;/a&gt; file for details.&lt;/p&gt; 
&lt;h2&gt;Features&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Dual Transport Architecture&lt;/strong&gt;: Bluetooth mesh for offline + Nostr protocol for internet-based messaging&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Location-Based Channels&lt;/strong&gt;: Geographic chat rooms using geohash coordinates over global Nostr relays&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Intelligent Message Routing&lt;/strong&gt;: Automatically chooses best transport (Bluetooth → Nostr fallback)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Decentralized Mesh Network&lt;/strong&gt;: Automatic peer discovery and multi-hop message relay over Bluetooth LE&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Privacy First&lt;/strong&gt;: No accounts, no phone numbers, no servers. Note that the mesh does use a persistent per-device identifier derived from your identity key — see &lt;a href=&quot;https://raw.githubusercontent.com/permissionlesstech/bitchat/main/WHITEPAPER.md&quot;&gt;the whitepaper&lt;/a&gt; on identity and metadata for what a nearby radio can observe&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Private Message End-to-End Encryption&lt;/strong&gt;: &lt;a href=&quot;https://noiseprotocol.org&quot;&gt;Noise Protocol&lt;/a&gt; for mesh, BitChat private envelopes for Nostr fallback&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;IRC-Style Commands&lt;/strong&gt;: Familiar &lt;code&gt;/slap&lt;/code&gt;, &lt;code&gt;/msg&lt;/code&gt;, &lt;code&gt;/who&lt;/code&gt; style interface&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Universal App&lt;/strong&gt;: Native support for iOS and macOS&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Emergency Wipe&lt;/strong&gt;: Triple-tap to instantly clear all data&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Performance Optimizations&lt;/strong&gt;: LZ4 message compression, adaptive battery modes, and optimized networking&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;&lt;a href=&quot;https://deepwiki.com/permissionlesstech/bitchat&quot;&gt;Technical Architecture&lt;/a&gt;&lt;/h2&gt; 
&lt;p&gt;BitChat uses a &lt;strong&gt;hybrid messaging architecture&lt;/strong&gt; with two complementary transport layers:&lt;/p&gt; 
&lt;h3&gt;Bluetooth Mesh Network (Offline)&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Local Communication&lt;/strong&gt;: Direct peer-to-peer within Bluetooth range&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Multi-hop Relay&lt;/strong&gt;: Messages route through nearby devices (max 7 hops)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;No Internet Required&lt;/strong&gt;: Works completely offline in disaster scenarios&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Noise Protocol Encryption&lt;/strong&gt;: End-to-end encryption, with forward secrecy for live sessions (store-and-forward mail is sealed without it — see the whitepaper)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Binary Protocol&lt;/strong&gt;: Compact packet format optimized for Bluetooth LE constraints&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Automatic Discovery&lt;/strong&gt;: Peer discovery and connection management&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Adaptive Power&lt;/strong&gt;: Battery-optimized duty cycling&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Nostr Protocol (Internet)&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Global Reach&lt;/strong&gt;: Connect with users worldwide via internet relays&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Location Channels&lt;/strong&gt;: Geographic chat rooms using geohash coordinates&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;440+ Relay Network&lt;/strong&gt;: Distributed across the globe for reliability&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;BitChat Private Envelopes&lt;/strong&gt;: App-specific encrypted private messages over Nostr relays&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Ephemeral Keys&lt;/strong&gt;: Fresh cryptographic identity per geohash area&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;BitChat&#39;s private-envelope format is proprietary and is &lt;strong&gt;not&lt;/strong&gt; NIP-17, NIP-44, or NIP-59 compatible. It uses Nostr as a relay transport but only interoperates with BitChat clients: private payloads travel inside kind-1059 events whose &lt;code&gt;v2:&lt;/code&gt;-prefixed content is a BitChat-specific XChaCha20-Poly1305 construction, not NIP-44 encryption.&lt;/p&gt; 
&lt;h3&gt;Channel Types&lt;/h3&gt; 
&lt;h4&gt;&lt;code&gt;mesh #bluetooth&lt;/code&gt;&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Transport&lt;/strong&gt;: Bluetooth Low Energy mesh network&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Scope&lt;/strong&gt;: Local devices within multi-hop range&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Internet&lt;/strong&gt;: Not required&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Use Case&lt;/strong&gt;: Offline communication, protests, disasters, remote areas&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Location Channels (&lt;code&gt;block #dr5rsj7&lt;/code&gt;, &lt;code&gt;neighborhood #dr5rs&lt;/code&gt;, &lt;code&gt;country #dr&lt;/code&gt;)&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Transport&lt;/strong&gt;: Nostr protocol over internet&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Scope&lt;/strong&gt;: Geographic areas defined by geohash precision 
  &lt;ul&gt; 
   &lt;li&gt;&lt;code&gt;block&lt;/code&gt; (7 chars): City block level&lt;/li&gt; 
   &lt;li&gt;&lt;code&gt;neighborhood&lt;/code&gt; (6 chars): District/neighborhood&lt;/li&gt; 
   &lt;li&gt;&lt;code&gt;city&lt;/code&gt; (5 chars): City level&lt;/li&gt; 
   &lt;li&gt;&lt;code&gt;province&lt;/code&gt; (4 chars): State/province&lt;/li&gt; 
   &lt;li&gt;&lt;code&gt;region&lt;/code&gt; (2 chars): Country/large region&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Internet&lt;/strong&gt;: Required (connects to Nostr relays)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Use Case&lt;/strong&gt;: Location-based community chat, local events, regional discussions&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Direct Message Routing&lt;/h3&gt; 
&lt;p&gt;Private messages use &lt;strong&gt;intelligent transport selection&lt;/strong&gt;:&lt;/p&gt; 
&lt;ol&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;Bluetooth First&lt;/strong&gt; (preferred when available)&lt;/p&gt; 
  &lt;ul&gt; 
   &lt;li&gt;Direct connection with established Noise session&lt;/li&gt; 
   &lt;li&gt;Fastest and most private option&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;Nostr Fallback&lt;/strong&gt; (when Bluetooth unavailable)&lt;/p&gt; 
  &lt;ul&gt; 
   &lt;li&gt;Uses recipient&#39;s Nostr public key&lt;/li&gt; 
   &lt;li&gt;BitChat&#39;s app-specific private-envelope encryption&lt;/li&gt; 
   &lt;li&gt;Routes through global relay network&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;Smart Queuing&lt;/strong&gt; (when neither available)&lt;/p&gt; 
  &lt;ul&gt; 
   &lt;li&gt;Messages queued until transport becomes available&lt;/li&gt; 
   &lt;li&gt;Automatic delivery when connection established&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
&lt;/ol&gt; 
&lt;p&gt;For detailed protocol documentation, see the &lt;a href=&quot;https://raw.githubusercontent.com/permissionlesstech/bitchat/main/WHITEPAPER.md&quot;&gt;Technical Whitepaper&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Setup&lt;/h2&gt; 
&lt;h3&gt;Option 1: Using Xcode&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;open bitchat.xcodeproj
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;For a signed device build, create your ignored local configuration and replace the example team ID with your Apple Developer Team ID:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;cp Configs/Local.xcconfig.example Configs/Local.xcconfig
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;&lt;code&gt;Local.xcconfig.example&lt;/code&gt; derives unique app and App Group identifiers from that team ID. The entitlement files already reference &lt;code&gt;$(APP_GROUP_ID)&lt;/code&gt;, so tracked project or entitlement files do not need to be edited.&lt;/p&gt; 
&lt;p&gt;Useful command-line checks from the repository root:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# macOS Debug build without signing
xcodebuild -project bitchat.xcodeproj -scheme &quot;bitchat (macOS)&quot; \
  -configuration Debug CODE_SIGNING_ALLOWED=NO build

# Full SwiftPM test suite
swift test

# iOS simulator tests
xcodebuild -project bitchat.xcodeproj -scheme &quot;bitchat (iOS)&quot; \
  -sdk iphonesimulator \
  -destination &#39;platform=iOS Simulator,name=iPhone 17&#39; test
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;If &lt;code&gt;iPhone 17&lt;/code&gt; is unavailable, choose an installed simulator from:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;xcodebuild -showdestinations -project bitchat.xcodeproj -scheme &quot;bitchat (iOS)&quot;
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;Option 2: Using &lt;code&gt;just&lt;/code&gt;&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;brew install just
just check
just run
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;&lt;code&gt;just build&lt;/code&gt; and &lt;code&gt;just run&lt;/code&gt; use the current &lt;code&gt;bitchat (macOS)&lt;/code&gt; scheme and keep Xcode output in the ignored &lt;code&gt;.DerivedData/&lt;/code&gt; directory. They never patch source, project, configuration, or entitlement files.&lt;/p&gt; 
&lt;p&gt;&lt;code&gt;just clean&lt;/code&gt; removes only &lt;code&gt;.DerivedData/&lt;/code&gt; and &lt;code&gt;.build/&lt;/code&gt;. It does not invoke Git or restore tracked files, so uncommitted work is preserved. &lt;code&gt;just test&lt;/code&gt; runs the SwiftPM suite and &lt;code&gt;just test-ios&lt;/code&gt; runs the iPhone 17 simulator suite.&lt;/p&gt; 
&lt;h2&gt;Localization&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;App localizations live in &lt;code&gt;bitchat/Localizable.xcstrings&lt;/code&gt;.&lt;/li&gt; 
 &lt;li&gt;Share extension strings are separate in &lt;code&gt;bitchatShareExtension/Localization/Localizable.xcstrings&lt;/code&gt;.&lt;/li&gt; 
 &lt;li&gt;Prefer keys that describe intent (&lt;code&gt;app_info.features.offline.title&lt;/code&gt;) and reuse existing ones where possible.&lt;/li&gt; 
 &lt;li&gt;Run &lt;code&gt;xcodebuild -project bitchat.xcodeproj -scheme &quot;bitchat (macOS)&quot; -configuration Debug CODE_SIGNING_ALLOWED=NO build&lt;/code&gt; to compile-check any localization updates.&lt;/li&gt; 
&lt;/ul&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/2196e6a456ff427a2a0970642b85642ec0b28c1b8fcf4215fd9498981a3e31be/permissionlesstech/bitchat" medium="image" />
      
    </item>
    
    <item>
      <title>Ebullioscopic/Atoll</title>
      <link>https://github.com/Ebullioscopic/Atoll</link>
      <description>&lt;p&gt;Dynamic Island for macOS&lt;/p&gt;&lt;hr&gt;&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;https://raw.githubusercontent.com/Ebullioscopic/Atoll/dev/.github/assets/atoll-logo.png&quot; alt=&quot;Atoll logo&quot; width=&quot;120&quot; /&gt; &lt;/p&gt; 
&lt;h1 align=&quot;center&quot;&gt;Atoll - DynamicIsland for macOS&lt;/h1&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://trendshift.io/repositories/15291&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;https://trendshift.io/api/badge/repositories/15291&quot; alt=&quot;Ebullioscopic%2FAtoll | Trendshift&quot; style=&quot;width: 250px; height: 55px;&quot; width=&quot;250&quot; height=&quot;55&quot; /&gt;&lt;/a&gt; &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://github.com/Ebullioscopic/Atoll/stargazers&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/stars/Ebullioscopic/Atoll?style=social&quot; alt=&quot;GitHub stars&quot; /&gt; &lt;/a&gt; &lt;a href=&quot;https://github.com/Ebullioscopic/Atoll/network/members&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/forks/Ebullioscopic/Atoll?style=social&quot; alt=&quot;GitHub forks&quot; /&gt; &lt;/a&gt; &lt;a href=&quot;https://github.com/Ebullioscopic/Atoll/releases&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/downloads/Ebullioscopic/Atoll/total?label=Downloads&quot; alt=&quot;GitHub downloads&quot; /&gt; &lt;/a&gt; &lt;a href=&quot;https://discord.gg/PaqFkRTDF8&quot;&gt; &lt;img src=&quot;https://dcbadge.limes.pink/api/server/https://discord.gg/PaqFkRTDF8?style=flat&quot; alt=&quot;Discord server&quot; /&gt; &lt;/a&gt; &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://github.com/sponsors/Ebullioscopic&quot;&gt; &lt;img src=&quot;https://img.shields.io/badge/Sponsor-Ebullioscopic-ff69b4?style=for-the-badge&amp;amp;logo=github&quot; alt=&quot;Sponsor Ebullioscopic&quot; /&gt; &lt;/a&gt; &lt;a href=&quot;https://github.com/Ebullioscopic/Atoll/releases/latest&quot;&gt; &lt;img src=&quot;https://img.shields.io/badge/Download-Atoll%20for%20macOS-0A84FF?style=for-the-badge&amp;amp;logo=apple&quot; alt=&quot;Download Atoll for macOS&quot; /&gt; &lt;/a&gt; &lt;a href=&quot;https://www.buymeacoffee.com/kryoscopic&quot;&gt; &lt;img src=&quot;https://img.shields.io/badge/Buy%20Me%20A%20Coffee-kryoscopic-FFDD00?style=for-the-badge&amp;amp;logo=buy-me-a-coffee&amp;amp;logoColor=000000&quot; alt=&quot;Buy Me a Coffee for kryoscopic&quot; /&gt; &lt;/a&gt; &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://discord.gg/PaqFkRTDF8&quot;&gt;Join our Discord community&lt;/a&gt; &lt;/p&gt; 
&lt;p&gt;Atoll turns the MacBook notch into a focused command surface for media, system insight, and quick utilities. It stays out of the way until needed, then expands with responsive, native SwiftUI animations.&lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;https://i.postimg.cc/t49mW5yN/Screenshot-2026-03-02-at-6-00-22-PM.png&quot; alt=&quot;Atoll lock screen&quot; width=&quot;920&quot; /&gt; &lt;/p&gt; 
&lt;h2&gt;Highlights&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Media controls for Apple Music, Spotify, Cider, and more with inline previews.&lt;/li&gt; 
 &lt;li&gt;Live Activities for media playback, Focus, screen recording, privacy indicators, downloads (beta), and battery/charging.&lt;/li&gt; 
 &lt;li&gt;Lock screen widgets for media, timers, charging, Bluetooth devices, and weather.&lt;/li&gt; 
 &lt;li&gt;Lightweight system insight for CPU, GPU, memory, network, and disk usage.&lt;/li&gt; 
 &lt;li&gt;Productivity tools including timers, clipboard history, color picker, and calendar previews.&lt;/li&gt; 
 &lt;li&gt;Customization for layouts, animations, hover behavior, and shortcut remapping.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Other Features&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Gesture controls for opening/closing the notch and media navigation.&lt;/li&gt; 
 &lt;li&gt;Parallax hover interactions with smooth transitions.&lt;/li&gt; 
 &lt;li&gt;Lock screen appearance and positioning controls for panels and widgets.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;https://i.postimg.cc/HkLGn6yH/846F86A4_A2F9_4CD6_BC84_1D720D377728_1_201_a.jpg&quot; alt=&quot;Atoll preview&quot; width=&quot;920&quot; /&gt; &lt;/p&gt; 
&lt;h2&gt;Requirements&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;macOS 14.0 or later (optimised for macOS 15+).&lt;/li&gt; 
 &lt;li&gt;MacBook with a notch (14/16‑inch MBP across Apple silicon generations).&lt;/li&gt; 
 &lt;li&gt;Xcode 15+ to build from source.&lt;/li&gt; 
 &lt;li&gt;Permissions as needed: Accessibility, Camera, Calendar, Screen Recording, Music.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Installation&lt;/h2&gt; 
&lt;ol&gt; 
 &lt;li&gt;Download the latest DMG &lt;a href=&quot;https://github.com/Ebullioscopic/Atoll/releases/latest&quot;&gt;here&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;Open the DMG and drag Atoll into Applications.&lt;/li&gt; 
 &lt;li&gt;Launch Atoll and grant the requested permissions.&lt;/li&gt; 
&lt;/ol&gt; 
&lt;h2&gt;Quick Start&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Hover near the notch to expand; click to enter controls.&lt;/li&gt; 
 &lt;li&gt;Use tabs for Media, Stats, Timers, Clipboard, and more.&lt;/li&gt; 
 &lt;li&gt;Adjust layout, appearance, and shortcuts from Settings.&lt;/li&gt; 
 &lt;li&gt;Add files to Shelf from Terminal: &lt;code&gt;open -a Atoll /path/to/file&lt;/code&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Settings&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Choose appearance, animation style, and per‑feature toggles.&lt;/li&gt; 
 &lt;li&gt;Remap global shortcuts and adjust hover behaviour.&lt;/li&gt; 
 &lt;li&gt;Enable lock screen widgets and select data sources.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Gesture Controls&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Two-finger swipe down to open the notch when hover-to-open is disabled; swipe up to close.&lt;/li&gt; 
 &lt;li&gt;Enable horizontal media gestures in &lt;strong&gt;Settings → General → Gesture control&lt;/strong&gt; to turn the music pane into a trackpad for previous/next or ±10 second seeks.&lt;/li&gt; 
 &lt;li&gt;Pick the gesture skip behaviour (track vs ±10s) independently from the skip button configuration so swipes can scrub while buttons change tracks—or vice versa.&lt;/li&gt; 
 &lt;li&gt;Horizontal swipes trigger the same haptics and button animations you see in the notch, keeping visual feedback consistent with tap interactions.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Troubleshooting (Basics)&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;After granting Accessibility or Screen Recording, quit and relaunch the app.&lt;/li&gt; 
 &lt;li&gt;If metrics are empty, enable categories in Settings → Stats.&lt;/li&gt; 
 &lt;li&gt;Media not responding: verify player is active and Music permission is granted.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;Atoll is released under the GPL v3 License. Refer to &lt;a href=&quot;https://raw.githubusercontent.com/Ebullioscopic/Atoll/dev/LICENSE&quot;&gt;LICENSE&lt;/a&gt; for the full terms.&lt;/p&gt; 
&lt;h2&gt;Acknowledgments&lt;/h2&gt; 
&lt;p&gt;Atoll builds upon the work of several open-source projects and draws inspiration from innovative macOS applications:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://github.com/TheBoredTeam/boring.notch&quot;&gt;&lt;strong&gt;Boring.Notch&lt;/strong&gt;&lt;/a&gt; - foundational codebase that provided the initial media player integration, AirDrop surface implementation, file dock functionality, and calendar event display. Major architectural patterns and notch interaction models were adapted from this project.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://tryalcove.com&quot;&gt;&lt;strong&gt;Alcove&lt;/strong&gt;&lt;/a&gt; - primary inspiration for the Minimalistic Mode interface design and the conceptual framework for lock screen widget integration that informed Atoll&#39;s compact layout strategy.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://github.com/exelban/stats&quot;&gt;&lt;strong&gt;Stats&lt;/strong&gt;&lt;/a&gt; - source implementation for CPU temperature monitoring via SMC (System Management Controller) access, frequency sampling through IOReport bindings, and per-core CPU utilisation tracking. The system metrics collection architecture derives from Stats project readers.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://open-meteo.com&quot;&gt;&lt;strong&gt;Open Meteo&lt;/strong&gt;&lt;/a&gt; - weather apis for the lock screen widgets&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://github.com/Lakr233/SkyLightWindow&quot;&gt;&lt;strong&gt;SkyLightWindow&lt;/strong&gt;&lt;/a&gt; - window rendering for Lock Screen Widgets&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://github.com/ZephyrCodesStuff/rtaudio&quot;&gt;&lt;strong&gt;rtaudio&lt;/strong&gt;&lt;/a&gt; - Live music visualizer using C++ was adapted from this project&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://github.com/migueldeicaza/SwiftTerm&quot;&gt;&lt;strong&gt;SwiftTerm&lt;/strong&gt;&lt;/a&gt; - Terminal tab implementation in the standard mode was adapted from this project&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://github.com/jackson-storm/DynamicNotch&quot;&gt;&lt;strong&gt;DynamicNotch&lt;/strong&gt;&lt;/a&gt; - thanks DynamicNotch for letting us use their battery huds&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Wick - Thanks Nate for allowing us to replicate the iOS like Timer design for the Lock Screen Widget&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://github.com/robinebers/openusage&quot;&gt;&lt;strong&gt;OpenUsage&lt;/strong&gt;&lt;/a&gt; - LLM Usage Tracking features&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://openrouter.ai&quot;&gt;&lt;strong&gt;OpenRouter&lt;/strong&gt;&lt;/a&gt; - API for getting automated model pricing&lt;/p&gt; &lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Contributors&lt;/h2&gt; 
&lt;a href=&quot;https://github.com/Ebullioscopic/Atoll/graphs/contributors&quot;&gt; &lt;img src=&quot;https://contrib.rocks/image?repo=Ebullioscopic/Atoll&quot; /&gt; &lt;/a&gt; 
&lt;h2&gt;Star History&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://www.star-history.com/#Ebullioscopic/Atoll&amp;amp;type=timeline&amp;amp;legend=top-left&quot;&gt;&lt;img src=&quot;https://api.star-history.com/svg?repos=Ebullioscopic/Atoll&amp;amp;type=timeline&amp;amp;legend=top-left&quot; alt=&quot;Star History Chart&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;Updating Existing Clones&lt;/h2&gt; 
&lt;p&gt;If you previously cloned DynamicIsland, update the remote to track the Atoll repository:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git remote set-url origin https://github.com/Ebullioscopic/Atoll.git
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;A heartfelt thanks to &lt;a href=&quot;https://github.com/TheBoredTeam&quot;&gt;TheBoredTeam&lt;/a&gt; for being supportive and being totally awesome, Atoll would not have been possible without Boring.Notch&lt;/p&gt; 
&lt;hr /&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;https://raw.githubusercontent.com/Ebullioscopic/Atoll/dev/.github/assets/iosdevcentre.jpeg&quot; alt=&quot;iOS Development Centre exterior&quot; width=&quot;420&quot; /&gt; &lt;br /&gt; &lt;sub&gt;Backed by&lt;/sub&gt; &lt;br /&gt; &lt;strong&gt;iOS Development Centre&lt;/strong&gt; &lt;br /&gt; Powered by Apple and Infosys &lt;br /&gt; SRM Institute of Science and Technology, Chennai, India &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://buymeacoffee.com/kryoscopic&quot;&gt; &lt;img src=&quot;https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png&quot; alt=&quot;Buy Me A Coffee&quot; width=&quot;200&quot; /&gt; &lt;/a&gt; &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; Your support helps fund teaching children software development. &lt;/p&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/881723326/e97e8899-74d7-4072-bab5-4d89834574f4" medium="image" />
      
    </item>
    
    <item>
      <title>nikitabobko/AeroSpace</title>
      <link>https://github.com/nikitabobko/AeroSpace</link>
      <description>&lt;p&gt;AeroSpace is an i3-like tiling window manager for macOS&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;AeroSpace Beta &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/actions/workflows/build.yml&quot;&gt;&lt;img src=&quot;https://github.com/nikitabobko/AeroSpace/actions/workflows/build.yml/badge.svg?branch=main&quot; alt=&quot;Build&quot; /&gt;&lt;/a&gt;&lt;/h1&gt; 
&lt;img src=&quot;https://raw.githubusercontent.com/nikitabobko/AeroSpace/main/resources/Assets.xcassets/AppIcon.appiconset/icon.png&quot; width=&quot;40%&quot; align=&quot;right&quot; /&gt; 
&lt;p&gt;AeroSpace is an i3-like tiling window manager for macOS&lt;/p&gt; 
&lt;p&gt;Videos:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=UOl7ErqWbrk&quot;&gt;YouTube 91 sec Demo&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=-FoWClVHG5g&quot;&gt;YouTube Guide by Josean Martinez&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;Docs:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nikitabobko.github.io/AeroSpace/guide&quot;&gt;AeroSpace Guide&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nikitabobko.github.io/AeroSpace/commands&quot;&gt;AeroSpace Commands&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nikitabobko.github.io/AeroSpace/goodies&quot;&gt;AeroSpace Goodies&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Key features&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Tiling window manager based on a &lt;a href=&quot;https://nikitabobko.github.io/AeroSpace/guide#tree&quot;&gt;tree paradigm&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://i3wm.org/&quot;&gt;i3&lt;/a&gt; inspired&lt;/li&gt; 
 &lt;li&gt;Fast workspaces switching without animations and without the necessity to disable SIP&lt;/li&gt; 
 &lt;li&gt;AeroSpace employs its &lt;a href=&quot;https://nikitabobko.github.io/AeroSpace/guide#emulation-of-virtual-workspaces&quot;&gt;own emulation of virtual workspaces&lt;/a&gt; instead of relying on native macOS Spaces due to &lt;a href=&quot;https://nikitabobko.github.io/AeroSpace/guide#emulation-of-virtual-workspaces&quot;&gt;their considerable limitations&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Plain text configuration (dotfiles friendly). See: &lt;a href=&quot;https://nikitabobko.github.io/AeroSpace/guide#default-config&quot;&gt;default-config.toml&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;CLI first (manpages and shell completion included)&lt;/li&gt; 
 &lt;li&gt;Doesn&#39;t require disabling SIP (System Integrity Protection)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nikitabobko.github.io/AeroSpace/guide#multiple-monitors&quot;&gt;Proper multi-monitor support&lt;/a&gt; (i3-like paradigm)&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Installation&lt;/h2&gt; 
&lt;p&gt;Install via &lt;a href=&quot;https://brew.sh/&quot;&gt;Homebrew&lt;/a&gt; to get autoupdates (Preferred)&lt;/p&gt; 
&lt;pre&gt;&lt;code&gt;brew install --cask nikitabobko/tap/aerospace
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;In multi-monitor setup please make sure that monitors &lt;a href=&quot;https://nikitabobko.github.io/AeroSpace/guide#proper-monitor-arrangement&quot;&gt;are properly arranged&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;Other installation options: &lt;a href=&quot;https://nikitabobko.github.io/AeroSpace/guide#installation&quot;&gt;https://nikitabobko.github.io/AeroSpace/guide#installation&lt;/a&gt;&lt;/p&gt; 
&lt;div class=&quot;markdown-alert markdown-alert-note&quot;&gt;
 &lt;p class=&quot;markdown-alert-title&quot;&gt;
  &lt;svg class=&quot;octicon octicon-info mr-2&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;
   &lt;path d=&quot;M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z&quot;&gt;&lt;/path&gt;
  &lt;/svg&gt;Note&lt;/p&gt;
 &lt;p&gt;By using AeroSpace, you acknowledge that it&#39;s not &lt;a href=&quot;https://developer.apple.com/documentation/security/notarizing_macos_software_before_distribution&quot;&gt;notarized&lt;/a&gt;.&lt;/p&gt; 
 &lt;p&gt;Notarization is a &quot;security&quot; feature by Apple. You send binaries to Apple, and they either approve them or not. In reality, notarization is about building binaries the way Apple likes it.&lt;/p&gt; 
 &lt;p&gt;I don&#39;t have anything against notarization as a concept. I specifically don&#39;t like the way Apple does notarization. I don&#39;t have time to deal with Apple.&lt;/p&gt; 
 &lt;p&gt;&lt;a href=&quot;https://github.com/nikitabobko/homebrew-tap/raw/main/Casks/aerospace.rb&quot;&gt;Homebrew installation script&lt;/a&gt; is configured to automatically delete &lt;code&gt;com.apple.quarantine&lt;/code&gt; attribute, that&#39;s why the app should work out of the box, without any warnings that &quot;Apple cannot check AeroSpace for malicious software&quot;&lt;/p&gt; 
&lt;/div&gt; 
&lt;h2&gt;Community, discussions, issues&lt;/h2&gt; 
&lt;p&gt;AeroSpace project doesn&#39;t accept Issues directly - we ask you to create a &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions&quot;&gt;Discussion&lt;/a&gt; first. Please read &lt;a href=&quot;https://raw.githubusercontent.com/nikitabobko/AeroSpace/main/CONTRIBUTING.md&quot;&gt;CONTRIBUTING.md&lt;/a&gt; for more details.&lt;/p&gt; 
&lt;p&gt;Community discussions happen at GitHub Discussions. There you can discuss bugs, propose new features, ask your questions, show off your setup, or just chat.&lt;/p&gt; 
&lt;p&gt;There are 7 channels:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions&quot;&gt;#all&lt;/a&gt;. &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions.atom?discussions_q=sort%3Adate_created&quot;&gt;RSS&lt;/a&gt;. Feed with all discussions.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions/categories/announcements&quot;&gt;#announcements&lt;/a&gt;. &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions/categories/announcements.atom?discussions_q=category%3Aannouncements+sort%3Adate_created&quot;&gt;RSS&lt;/a&gt;. Only maintainers can post here. Highly moderated traffic.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions/categories/announcements-releases&quot;&gt;#announcements-releases&lt;/a&gt;. &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions/categories/announcements-releases.atom?discussions_q=category%3Aannouncements-releases+sort%3Adate_created&quot;&gt;RSS&lt;/a&gt;. Announcements about non-patch releases. Only maintainers can post here.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions/categories/feature-ideas&quot;&gt;#feature-ideas&lt;/a&gt;. &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions/categories/feature-ideas.atom?discussions_q=category%3Afeature-ideas+sort%3Adate_created&quot;&gt;RSS&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions/categories/general&quot;&gt;#general&lt;/a&gt;. &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions/categories/general.atom?discussions_q=sort%3Adate_created+category%3Ageneral&quot;&gt;RSS&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions/categories/potential-bugs&quot;&gt;#potential-bugs&lt;/a&gt;. &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions/categories/potential-bugs.atom?discussions_q=category%3Apotential-bugs+sort%3Adate_created&quot;&gt;RSS&lt;/a&gt;. If you think that you have encountered a bug, you can discuss your bugs here.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions/categories/questions-and-answers&quot;&gt;#questions-and-answers&lt;/a&gt;. &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/discussions/categories/questions-and-answers.atom?discussions_q=category%3Aquestions-and-answers+sort%3Adate_created&quot;&gt;RSS&lt;/a&gt;. Everyone is welcome to ask questions. Everyone is encouraged to answer other people&#39;s questions.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Project status&lt;/h2&gt; 
&lt;p&gt;Public Beta. AeroSpace can be used as a daily driver, but expect breaking changes until 1.0 is reached.&lt;/p&gt; 
&lt;p&gt;What stops us from 1.0 release:&lt;/p&gt; 
&lt;ul class=&quot;task-list&quot;&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_0&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_0&quot;&gt; &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/issues/131&quot;&gt;https://github.com/nikitabobko/AeroSpace/issues/131&lt;/a&gt; Performance. Implement thread-per-application to circumvent macOS blocking AX API.&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_1&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_1&quot;&gt; &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/issues/1215&quot;&gt;https://github.com/nikitabobko/AeroSpace/issues/1215&lt;/a&gt; &lt;em&gt;Big refactoring&lt;/em&gt;. Rewrite mutable double-linked core tree data structure to immutable single-linked persistent tree. Important for: stability and potential performance&lt;/label&gt; 
  &lt;ul class=&quot;task-list&quot;&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_2&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_2&quot;&gt; &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/issues/1216&quot;&gt;https://github.com/nikitabobko/AeroSpace/issues/1216&lt;/a&gt; The big refactoring will help us to fix stability issue that windows may randomly jump to the focused workspace&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_3&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_3&quot;&gt; &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/issues/68&quot;&gt;https://github.com/nikitabobko/AeroSpace/issues/68&lt;/a&gt; The big refactoring will help us to support macOS native tabs&lt;/label&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_4&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_4&quot;&gt; &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/issues/278&quot;&gt;https://github.com/nikitabobko/AeroSpace/issues/278&lt;/a&gt; Implement shell-like combinators. Ignore a lot of crazy fuss in the issue, We are most probably going with the minimal approach to only introduce common shell-combinators: &lt;code&gt;||&lt;/code&gt;, &lt;code&gt;&amp;amp;&amp;amp;&lt;/code&gt;, &lt;code&gt;;&lt;/code&gt; and &lt;code&gt;eval&lt;/code&gt; command to send multiple commands in one go.&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_5&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_5&quot;&gt; &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/issues/1012&quot;&gt;https://github.com/nikitabobko/AeroSpace/issues/1012&lt;/a&gt; Investigate a possibility to use &lt;code&gt;CGEvent.tapCreate&lt;/code&gt; API for global hotkeys&lt;/label&gt; 
  &lt;ul class=&quot;task-list&quot;&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_6&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_6&quot;&gt; &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/issues/28&quot;&gt;https://github.com/nikitabobko/AeroSpace/issues/28&lt;/a&gt; Maybe it will allow to distinguish left and right modifiers. Maybe not&lt;/label&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;Big and important issues which will go after 1.0 release:&lt;/p&gt; 
&lt;ul class=&quot;task-list&quot;&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_7&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_7&quot;&gt; &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/issues/2&quot;&gt;https://github.com/nikitabobko/AeroSpace/issues/2&lt;/a&gt; sticky windows&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_8&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_8&quot;&gt; &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace/issues/260&quot;&gt;https://github.com/nikitabobko/AeroSpace/issues/260&lt;/a&gt; Dynamic TWM&lt;/label&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Development&lt;/h2&gt; 
&lt;p&gt;A notes on how to setup the project, build it, how to run the tests, etc. can be found here: &lt;a href=&quot;https://raw.githubusercontent.com/nikitabobko/AeroSpace/main/dev-docs/development.md&quot;&gt;dev-docs/development.md&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;Project values&lt;/h2&gt; 
&lt;p&gt;&lt;strong&gt;Values&lt;/strong&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;AeroSpace is targeted at advanced users and developers&lt;/li&gt; 
 &lt;li&gt;Keyboard centric&lt;/li&gt; 
 &lt;li&gt;Breaking changes (configuration files, CLI, behavior) are avoided as much as possible, but it must not let the software stagnate. Thus breaking changes can happen, but with careful considerations and helpful message. &lt;a href=&quot;https://semver.org/&quot;&gt;Semver&lt;/a&gt; major version is bumped in case of a breaking change (It&#39;s all guaranteed once AeroSpace reaches 1.0 version, until then breaking changes just happen)&lt;/li&gt; 
 &lt;li&gt;AeroSpace doesn&#39;t use GUI, unless necessarily 
  &lt;ul&gt; 
   &lt;li&gt;AeroSpace will never provide a GUI for configuration. For advanced users, it&#39;s easier to edit a configuration file in text editor rather than navigating through checkboxes in GUI.&lt;/li&gt; 
   &lt;li&gt;Status menu icon is ok, because visual feedback is needed&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;Provide &lt;em&gt;practical&lt;/em&gt; features. Fancy appearance features are not &lt;em&gt;practical&lt;/em&gt; (e.g. window borders, transparency, animations, etc.)&lt;/li&gt; 
 &lt;li&gt;&quot;dark magic&quot; (aka &quot;private APIs&quot;, &quot;code injections&quot;, etc.) must be avoided as much as possible 
  &lt;ul&gt; 
   &lt;li&gt;Right now, AeroSpace uses only a single private API to get window ID of accessibility object &lt;code&gt;_AXUIElementGetWindow&lt;/code&gt;. Everything else is &lt;a href=&quot;https://developer.apple.com/documentation/applicationservices/axuielement_h&quot;&gt;macOS public accessibility API&lt;/a&gt;.&lt;/li&gt; 
   &lt;li&gt;AeroSpace will never require you to disable SIP (System Integrity Protection).&lt;/li&gt; 
   &lt;li&gt;The goal is to make AeroSpace easily maintainable, and resistant to macOS updates.&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;&lt;strong&gt;Non Values&lt;/strong&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;Play nicely with existing macOS features. If limitations are imposed then AeroSpace won&#39;t play nicely with existing macOS features (For example, AeroSpace doesn&#39;t acknowledge the existence of macOS Spaces, and it uses &lt;a href=&quot;https://nikitabobko.github.io/AeroSpace/guide#emulation-of-virtual-workspaces&quot;&gt;emulation of its own workspaces&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;Ricing. AeroSpace provides only a very minimal support for ricing - gaps and a few callbacks for integrations with bars. The current maintainer doesn&#39;t care about ricing. Ricing issues are not a priority, and they are mostly ignored. The ricing stance can change only with the appearance of more maintainers.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;macOS compatibility table&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;AeroSpace binary runs on: macOS 13+&lt;/li&gt; 
 &lt;li&gt;AeroSpace debug build from sources is supported on: macOS 14+&lt;/li&gt; 
 &lt;li&gt;AeroSpace release build from sources is supported on: macOS 15+ (Requires Xcode 26+)&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Sponsorship&lt;/h2&gt; 
&lt;p&gt;AeroSpace is developed and maintained in my free time. If you find it useful, &lt;a href=&quot;https://github.com/sponsors/nikitabobko#sponsors&quot;&gt;consider sponsoring&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;People who have write access&lt;/h2&gt; 
&lt;p&gt;In alphabetical order:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mobile-ar&quot;&gt;@mobile-ar&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nikitabobko&quot;&gt;@nikitabobko&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rickyz&quot;&gt;@rickyz&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Tip of the day&lt;/h2&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;defaults write -g NSWindowShouldDragOnGesture -bool true
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Now, you can move windows by holding &lt;code&gt;ctrl&lt;/code&gt;+&lt;code&gt;cmd&lt;/code&gt; and dragging any part of the window (not necessarily the window title)&lt;/p&gt; 
&lt;p&gt;Source: &lt;a href=&quot;https://www.reddit.com/r/MacOS/comments/k6hiwk/keyboard_modifier_to_simplify_click_drag_of/&quot;&gt;reddit&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;Related projects&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ianyh/Amethyst&quot;&gt;Amethyst&lt;/a&gt; - tiling window manager à la xmonad&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jurplel/InstantSpaceSwitcher&quot;&gt;InstantSpaceSwitcher&lt;/a&gt; - Instant space switching by synthesizing trackpad gesture with an artificially high velocity&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/koekeishiya/yabai&quot;&gt;yabai&lt;/a&gt; - a tiling window manager for macOS based on binary space partitioning&lt;/li&gt; 
&lt;/ul&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/fbf459f8cca8e08093ead2a630f3cb6e446e5f7da0631d73d8fd5bfad55c38f3/nikitabobko/AeroSpace" medium="image" />
      
    </item>
    
    <item>
      <title>jaywcjlove/awesome-mac</title>
      <link>https://github.com/jaywcjlove/awesome-mac</link>
      <description>&lt;p&gt; This project is dedicated to collecting high-quality macOS software and organizing them systematically by different categories for easy search and use.&lt;/p&gt;&lt;hr&gt;&lt;div align=&quot;center&quot; markdown=&quot;1&quot;&gt; 
 &lt;sup&gt;Special thanks to:&lt;/sup&gt; 
 &lt;br /&gt; 
 &lt;br /&gt; 
 &lt;a href=&quot;https://screensage.pro/&quot;&gt; &lt;img alt=&quot;ScreenSage Pro&quot; width=&quot;400&quot; src=&quot;https://jaywcjlove.github.io/sponsor/screensage.png&quot; /&gt; &lt;/a&gt; 
 &lt;br /&gt; 
 &lt;a href=&quot;https://screensage.pro/&quot;&gt;ScreenSage Pro, record beautiful screen recordings in minutes on macOS&lt;/a&gt; 
 &lt;br /&gt;
 &lt;br /&gt; 
 &lt;a href=&quot;https://lizhi.shop/?cid=nboxz71a&quot;&gt; &lt;img alt=&quot;LIZHI.SHOP - Selected Software. 100% Genuine. Best Deals.&quot; width=&quot;400&quot; src=&quot;https://jaywcjlove.github.io/sponsor/lizhi.shop.png&quot; /&gt; &lt;/a&gt; 
 &lt;br /&gt; 
 &lt;a href=&quot;https://lizhi.shop/?cid=nboxz71a&quot;&gt;LIZHI.SHOP - Selected Software. 100% Genuine. Best Deals.&lt;/a&gt; 
 &lt;br /&gt;
 &lt;br /&gt; 
 &lt;a href=&quot;https://ip.im/&quot;&gt; &lt;img alt=&quot;IP.IM&quot; width=&quot;400&quot; src=&quot;https://jaywcjlove.github.io/sponsor/ip.im.png&quot; /&gt; &lt;/a&gt; 
 &lt;br /&gt; 
 &lt;a href=&quot;https://ip.im/&quot;&gt;IP.IM Free IP address information query website&lt;/a&gt; 
 &lt;br /&gt;
 &lt;br /&gt; 
&lt;/div&gt; 
&lt;hr /&gt; 
&lt;p style=&quot;display: inline_block&quot;&gt; &lt;sup&gt;Using &lt;a href=&quot;https://wangchujiang.com/#/app&quot; target=&quot;_blank&quot;&gt;my app&lt;/a&gt; is also a way to &lt;a href=&quot;https://wangchujiang.com/#/sponsor&quot; target=&quot;_blank&quot;&gt;support&lt;/a&gt; me:&lt;/sup&gt;&lt;br /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://wangchujiang.com/dock-lift/&quot; title=&quot;DockLift: Windows, Here&quot;&gt;&lt;img alt=&quot;DockLift: Windows, Here&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/dock-lift.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6766860898&quot; title=&quot;Zipora: Zip/RAR/7Z Unarchiver&quot;&gt;&lt;img alt=&quot;Zipora: Zip/RAR/7Z Unarchiver&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/zipora.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6758053530&quot; title=&quot;Scap: Screenshot &amp;amp; Markup Edit for macOS&quot;&gt;&lt;img alt=&quot;Scap: Screenshot &amp;amp; Markup Edit&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/scap.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6757317079&quot; title=&quot;Screen Test for macOS&quot;&gt;&lt;img alt=&quot;Screen Test&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/screen-test.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6755948110&quot; title=&quot;Deskmark for macOS&quot;&gt;&lt;img alt=&quot;Deskmark&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/deskmark.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6500434773&quot; title=&quot;Keyzer for macOS&quot;&gt;&lt;img alt=&quot;Keyzer&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/keyzer.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://github.com/jaywcjlove/vidwall-hub&quot; title=&quot;Vidwall Hub for macOS&quot;&gt;&lt;img alt=&quot;Vidwall Hub&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/vidwall-hub.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6752624705&quot; title=&quot;VidCrop for macOS&quot;&gt;&lt;img alt=&quot;VidCrop&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/vidcrop.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6747587746&quot; title=&quot;Vidwall for macOS&quot;&gt;&lt;img alt=&quot;Vidwall&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/vidwall.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://wangchujiang.com/mousio-hint/&quot; title=&quot;Mousio Hint for macOS&quot;&gt;&lt;img alt=&quot;Mousio Hint&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/mousio-hint.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6746747327&quot; title=&quot;Mousio for macOS&quot;&gt;&lt;img alt=&quot;Mousio&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/mousio.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6745227444&quot; title=&quot;Musicer for macOS&quot;&gt;&lt;img alt=&quot;Musicer&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/musicer.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6743841447&quot; title=&quot;Audioer for macOS&quot;&gt;&lt;img alt=&quot;Audioer&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/audioer.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6744690194&quot; title=&quot;FileSentinel for macOS&quot;&gt;&lt;img alt=&quot;FileSentinel&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/file-sentinel.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6743495172&quot; title=&quot;FocusCursor for macOS&quot;&gt;&lt;img alt=&quot;FocusCursor&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/focus-cursor.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6742680573&quot; title=&quot;Videoer for macOS&quot;&gt;&lt;img alt=&quot;Videoer&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/videoer.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6740425504&quot; title=&quot;KeyClicker for macOS&quot;&gt;&lt;img alt=&quot;KeyClicker&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/key-clicker.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6739052447&quot; title=&quot;DayBar for macOS&quot;&gt;&lt;img alt=&quot;DayBar&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/daybar.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6739444407&quot; title=&quot;Iconed for macOS&quot;&gt;&lt;img alt=&quot;Iconed&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/iconed.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6737160756&quot; title=&quot;Menuist for macOS&quot;&gt;&lt;img alt=&quot;Menuist&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/rightmenu-master.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6723903021&quot; title=&quot;Paste Quick for macOS&quot;&gt;&lt;img alt=&quot;Quick RSS&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/paste-quick.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6670696072&amp;amp;platform=mac&quot; title=&quot;Quick RSS for macOS/iOS&quot;&gt;&lt;img alt=&quot;Quick RSS&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/quick-rss.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6670167443&quot; title=&quot;Web Serve for macOS&quot;&gt;&lt;img alt=&quot;Web Serve&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/web-serve.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6503953628&amp;amp;platform=mac&quot; title=&quot;Copybook Generator for macOS/iOS&quot;&gt;&lt;img alt=&quot;Copybook Generator&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/copybook-generator.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6471227008&amp;amp;platform=mac&quot; title=&quot;DevTutor for macOS/iOS&quot;&gt;&lt;img alt=&quot;DevTutor for SwiftUI&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/devtutor.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6479819388&amp;amp;platform=mac&quot; title=&quot;RegexMate for macOS/iOS&quot;&gt;&lt;img alt=&quot;RegexMate&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/regex-mate.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6479194014&amp;amp;platform=mac&quot; title=&quot;Time Passage for macOS/iOS&quot;&gt;&lt;img alt=&quot;Time Passage&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/time-passage.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6478772538&quot; title=&quot;IconizeFolder for macOS&quot;&gt;&lt;img alt=&quot;Iconize Folder&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/iconize-folder.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6478511402&amp;amp;platform=mac&quot; title=&quot;Textsound Saver for macOS/iOS&quot;&gt;&lt;img alt=&quot;Textsound Saver&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/textsound-saver.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6476924627&quot; title=&quot;Create Custom Symbols for macOS&quot;&gt;&lt;img alt=&quot;Create Custom Symbols&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/create-custom-symbols.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6476452351&quot; title=&quot;DevHub for macOS&quot;&gt;&lt;img alt=&quot;DevHub&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/devhub.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6476400184&quot; title=&quot;Resume Revise for macOS&quot;&gt;&lt;img alt=&quot;Resume Revise&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/resume-revise.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6472593276&quot; title=&quot;Palette Genius for macOS&quot;&gt;&lt;img alt=&quot;Palette Genius&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/palette-genius.png&quot; /&gt;&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://jaywcjlove.github.io/maslink/?id=6470879005&quot; title=&quot;Symbol Scribe for macOS&quot;&gt;&lt;img alt=&quot;Symbol Scribe&quot; height=&quot;52&quot; src=&quot;https://wangchujiang.com/appicon/symbol-scribe.png&quot; /&gt;&lt;/a&gt; &lt;/p&gt; 
&lt;hr /&gt; 
&lt;h1&gt;Awesome Mac&lt;/h1&gt; 
&lt;!--rehype:style=font-size: 38px; border-bottom: 0; display: flex; min-height: 260px; align-items: center; justify-content: center;--&gt; 
&lt;p&gt;&lt;a href=&quot;https://jaywcjlove.github.io/#/sponsor&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Buy_Me_a_Coffee-ffdd00?logo=buy-me-a-coffee&amp;amp;logoColor=black&quot; alt=&quot;Buy me a coffee&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://x.com/jaywcjlove&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Follow%20on%20X-333333?logo=x&amp;amp;logoColor=white&quot; alt=&quot;Follow On X&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/sindresorhus/awesome&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/awesome.svg?sanitize=true&quot; alt=&quot;Awesome&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://npmjs.org/package/awesome-mac&quot;&gt;&lt;img src=&quot;https://img.shields.io/npm/v/awesome-mac.svg?style=flat&quot; alt=&quot;NPM version&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://weibo.com/pc175&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/weibo.svg?sanitize=true&quot; alt=&quot;WeiBo&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://hub.docker.com/r/wcjiang/awesome-mac&quot;&gt;&lt;img src=&quot;https://img.shields.io/docker/v/wcjiang/awesome-mac?logo=docker&quot; alt=&quot;Docker Image Version (latest by date)&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/README-zh.md&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/lang/chinese.svg?sanitize=true&quot; alt=&quot;Chinese List&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/README-ja.md&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/lang/japanese.svg?sanitize=true&quot; alt=&quot;Japanese List&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/README-ko.md&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/lang/korean.svg?sanitize=true&quot; alt=&quot;Korean List&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;!--rehype:style=text-align: center;--&gt; 
&lt;p&gt;This project is dedicated to collecting high-quality macOS software and organizing them systematically by different categories for easy search and use. As it continues to grow, the project has far exceeded our initial expectations and has become more comprehensive and refined.&lt;/p&gt; 
&lt;p&gt;Feel free to &lt;strong&gt;star&lt;/strong&gt; ⭐ and &lt;strong&gt;fork&lt;/strong&gt; 🍴 to support the project!&lt;/p&gt; 
&lt;p&gt;If you have any suggestions, ideas, or discover excellent software, feel free to submit a PR to help improve this list. Please read the &lt;a href=&quot;https://github.com/jaywcjlove/awesome-mac/raw/master/docs/CONTRIBUTING.md&quot;&gt;contributing guidelines&lt;/a&gt; before contributing. We also welcome you to continue following this &lt;a href=&quot;https://github.com/sindresorhus/awesome&quot;&gt;awesome&lt;/a&gt; list to build a better macOS tool collection together.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/README-zh.md&quot;&gt;中文&lt;/a&gt; | &lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/README-ko.md&quot;&gt;한국어&lt;/a&gt; | &lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/README-ja.md&quot;&gt;日本語&lt;/a&gt; | &lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/feed/feed.md&quot;&gt;RSS&lt;/a&gt; | &lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/command-line-apps.md&quot;&gt;Awesome Command Line Apps&lt;/a&gt; | &lt;a href=&quot;https://github.com/jaywcjlove/awesome-swift-macos-apps&quot;&gt;Awesome Swift macOS Apps&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; means &lt;strong&gt;open source&lt;/strong&gt;. click the icon to see the item&#39;s repository;&lt;br /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; means &lt;strong&gt;free&lt;/strong&gt; to use, or &lt;strong&gt;free&lt;/strong&gt; personal license;&lt;br /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt; means &lt;strong&gt;App store&lt;/strong&gt; hyperlink;&lt;br /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt; means &lt;strong&gt;native app&lt;/strong&gt;;&lt;br /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt; means hyperlink to a corresponding &lt;strong&gt;Awesome list&lt;/strong&gt; for the item;&lt;/p&gt; 
&lt;!--idoc:ignore:start--&gt; 
&lt;h2&gt;Contents&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#awesome-mac&quot;&gt;Awesome Mac&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#contents&quot;&gt;Contents&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#reading-and-writing-tools&quot;&gt;Reading and Writing Tools&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#text-editors&quot;&gt;Text Editors&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#office&quot;&gt;Office&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#markdown-tools&quot;&gt;Markdown Tools&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#note-taking&quot;&gt;Note-taking&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#journaling&quot;&gt;Journaling&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#writing&quot;&gt;Writing&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#ebooks&quot;&gt;Ebooks&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#rss&quot;&gt;RSS&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#others&quot;&gt;Others&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#developer-tools&quot;&gt;Developer Tools&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#ides&quot;&gt;IDEs&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#developer-utilities&quot;&gt;Developer Utilities&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#regular-expression-editors&quot;&gt;Regular Expression Editors&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#api-development-and-analysis&quot;&gt;API Development and Analysis&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#network-analysis&quot;&gt;Network Analysis&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#frameworks-for-hybrid-applications&quot;&gt;Frameworks For Hybrid Applications&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#version-control&quot;&gt;Version Control&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#virtualization&quot;&gt;Virtualization&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#databases&quot;&gt;Databases&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#terminal-apps&quot;&gt;Terminal Apps&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#design-and-product&quot;&gt;Design and Product&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#design-tools&quot;&gt;Design Tools&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#prototyping-and-mind-mapping-tools&quot;&gt;Prototyping and Mind-Mapping Tools&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#screenshot-tools&quot;&gt;Screenshot Tools&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#screen-recording&quot;&gt;Screen Recording&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#other-tools&quot;&gt;Other Tools&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#ai-tools&quot;&gt;AI Tools&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#communication&quot;&gt;Communication&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#collaboration-and-team-tools&quot;&gt;Collaboration and Team Tools&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#email-clients&quot;&gt;Email Clients&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#file-sharing&quot;&gt;File Sharing&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#data-recovery-tools&quot;&gt;Data Recovery Tools&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#audio-and-video-tools&quot;&gt;Audio and Video Tools&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#audio-record-and-process&quot;&gt;Audio Record and Process&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#download-management-tools&quot;&gt;Download Management Tools&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#cloud-storage&quot;&gt;Cloud Storage&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#input-methods&quot;&gt;Input Methods&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#voice-to-text&quot;&gt;Voice-to-Text&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#browsers&quot;&gt;Browsers&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#translation-tools&quot;&gt;Translation Tools&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#education&quot;&gt;Education&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#finance&quot;&gt;Finance&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#encryption&quot;&gt;Encryption&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#security-tools&quot;&gt;Security Tools&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#proxy-and-vpn-tools&quot;&gt;Proxy and VPN Tools&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#utilities&quot;&gt;Utilities&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#clipboard-tools&quot;&gt;Clipboard Tools&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#menu-bar-tools&quot;&gt;Menu Bar Tools&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#cleanup-and-uninstall&quot;&gt;Cleanup and Uninstall&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#file-organization-tools&quot;&gt;File Organization Tools&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#general-tools&quot;&gt;General Tools&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#to-do-lists&quot;&gt;To-Do Lists&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#productivity&quot;&gt;Productivity&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#window-management&quot;&gt;Window Management&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#password-management&quot;&gt;Password Management&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#finder-tools&quot;&gt;Finder Tools&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#quality-of-life-improvements&quot;&gt;Quality of Life Improvements&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#system-related-tools&quot;&gt;System Related Tools&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#gaming-software&quot;&gt;Gaming Software&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#remote-login-software&quot;&gt;Remote Login Software&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#quicklook-plugins&quot;&gt;QuickLook Plugins&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#third-party-app-markets&quot;&gt;Third Party App Markets&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#package-managers&quot;&gt;Package Managers&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#mac-app-download-sites&quot;&gt;Mac App Download Sites&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#genuine-sites&quot;&gt;Genuine Sites&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#pirated-software-download-site-blocklist&quot;&gt;Pirated software download site blocklist&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#contributors&quot;&gt;Contributors&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#license&quot;&gt;License&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;!--idoc:ignore:end--&gt; 
&lt;!--start--&gt; 
&lt;h2&gt;Reading and Writing Tools&lt;/h2&gt; 
&lt;p&gt;&lt;em&gt;Applications to edit text, I suggest the open-source editors&lt;/em&gt;&lt;/p&gt; 
&lt;h3&gt;Text Editors&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://auroraeditor.com/&quot;&gt;Aurora Editor&lt;/a&gt; - Lightweight Code Editor (IDE) for macOS. &lt;a href=&quot;https://github.com/AuroraEditor/AuroraEditor&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://bootstrapstudio.io/&quot;&gt;Bootstrap Studio&lt;/a&gt; - A powerful desktop app for creating responsive websites using the Bootstrap framework.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://brackets.io&quot;&gt;Brackets&lt;/a&gt; - A modern, open source text editor that understands web design. &lt;a href=&quot;https://github.com/brackets-cont/brackets/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.codeedit.app/&quot;&gt;CodeEdit&lt;/a&gt; - A lightweight, natively-built editor. Open source. Free forever. &lt;a href=&quot;https://github.com/CodeEditApp/CodeEdit&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://coteditor.com&quot;&gt;CotEditor&lt;/a&gt; - Lightweight plain-text editor for macOS. &lt;a href=&quot;https://github.com/coteditor/CotEditor/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cursor.com/&quot;&gt;Cursor&lt;/a&gt; - AI code editor with autocomplete, chat, and coding agent features. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.emacswiki.org/emacs/EmacsForMacOS&quot;&gt;Emacs&lt;/a&gt; - Popular Unix-based text editor for programmers and system administrators. &lt;a href=&quot;https://git.savannah.gnu.org/cgit/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/emacs-tw/awesome-emacs#readme&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/haystackeditor/haystack-editor&quot;&gt;Haystack Editor&lt;/a&gt; - Code editor with a canvas UI for better code understanding. &lt;a href=&quot;https://github.com/haystackeditor/haystack-editor&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://helix-editor.com/&quot;&gt;Helix&lt;/a&gt; - A post-modern modal text editor. &lt;a href=&quot;https://github.com/helix-editor/helix/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://itsypad.app&quot;&gt;Itsypad&lt;/a&gt; - A tiny, fast scratchpad and clipboard manager for macOS. &lt;a href=&quot;https://github.com/nickustinov/itsypad-macos&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lapce.dev/&quot;&gt;Lapce&lt;/a&gt; - Lightning-fast and powerful code editor. &lt;a href=&quot;https://github.com/lapce/lapce&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lighttable.com/&quot;&gt;LightTable&lt;/a&gt; - The next generation code editor. &lt;a href=&quot;https://github.com/LightTable/LightTable&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://arietan.github.io/lite-edit/&quot;&gt;LiteEdit&lt;/a&gt; - Fast, native macOS code editor under 1 MB — Swift and AppKit, no Electron. &lt;a href=&quot;https://github.com/arietan/lite-edit&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/macvim-dev/macvim&quot;&gt;MacVim&lt;/a&gt; - the text editor Vim - for macOS. &lt;a href=&quot;https://github.com/macvim-dev/macvim&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://micro-editor.github.io&quot;&gt;micro&lt;/a&gt; - Modern and intuitive terminal-based text editor. &lt;a href=&quot;https://github.com/ory/editor&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/neovim/neovim&quot;&gt;Neovim&lt;/a&gt; - Vim-fork focused on extensibility and usability. &lt;a href=&quot;https://github.com/neovim/neovim&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nova.app/&quot;&gt;Nova&lt;/a&gt; - The beautiful, fast, flexible, native Mac code editor from Panic.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/plain-text-editor&quot;&gt;Plain Text Editor&lt;/a&gt; - Simple distraction-free notepad. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1572202501?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.sublimetext.com/3&quot;&gt;Sublime Text&lt;/a&gt; - Text editor with a fast interface and plugin ecosystem. For more plugins, check &lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/editor-plugin-zh.md#sublime-text-plugin&quot;&gt;Sublime Text Plugins&lt;/a&gt;. &lt;a href=&quot;https://github.com/dreikanter/sublime-bookmarks#readme&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://subethaedit.net/&quot;&gt;SubEthaEdit&lt;/a&gt; - Powerful editor for writing, coding, and collaboration anytime, anywhere! &lt;a href=&quot;https://github.com/subethaedit/SubEthaEdit&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macromates.com&quot;&gt;TextMate&lt;/a&gt; - Editor that brings Apple&#39;s approach to operating systems into the world of text editors. &lt;a href=&quot;https://github.com/textmate/textmate&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tot.rocks/&quot;&gt;Tot&lt;/a&gt; - Tot is an elegant, simple way to collect &amp;amp; edit text. It’s your tiny text companion! &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/tot/id1491071483?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.vim.org/&quot;&gt;Vim&lt;/a&gt; - An old terminal-based editor. For common plugins, check &lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/editor-plugin-zh.md#vim-plugin&quot;&gt;Vim Common Plugins&lt;/a&gt;. &lt;a href=&quot;https://github.com/vim/vim&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/mhinz/vim-galore#readme&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://vimr.org/&quot;&gt;Vimr&lt;/a&gt; - Refined Vim Experience for OS X. &lt;a href=&quot;https://github.com/qvacua/vimr/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://windsurf.com/&quot;&gt;Windsurf&lt;/a&gt; - AI code editor with agentic coding, autocomplete, and MCP support. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://zed.dev/&quot;&gt;Zed&lt;/a&gt; - A high-performance, multiplayer code editor from the creators of Atom and Tree-sitter. &lt;a href=&quot;https://github.com/zed-industries/zed&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Office&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/keynote/id409183694?platform=mac&quot;&gt;Keynote&lt;/a&gt; - Build stunning presentations. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/keynote/id409183694?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.libreoffice.org&quot;&gt;LibreOffice&lt;/a&gt; - Free, open-source office software used and tested daily by a large community. &lt;a href=&quot;https://www.libreoffice.org/about-us/source-code/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://products.office.com/en-us/mac/microsoft-office-for-mac&quot;&gt;Microsoft Office&lt;/a&gt; - Unmistakably Office, designed for Mac. &lt;a href=&quot;https://www.apple.com/search/office?page=1&amp;amp;sel=accessories&amp;amp;f=software#!&amp;amp;f=software&amp;amp;fh=4649&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/numbers/id409203825?platform=mac&quot;&gt;Numbers&lt;/a&gt; - Create impressive spreadsheets. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/numbers/id409203825?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.onlyoffice.com/&quot;&gt;OnlyOffice&lt;/a&gt; - Office suite with document, spreadsheet, and presentation editors. &lt;a href=&quot;https://github.com/ONLYOFFICE/DesktopEditors&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/pages/id409201541?platform=mac&quot;&gt;Pages&lt;/a&gt; - Documents that stand apart. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/pages/id409201541?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.softmaker.com/en/softmaker-office&quot;&gt;SoftMaker Office&lt;/a&gt; - A complete office suite that aims for full compatibility with Microsoft Office documents.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.wps.com/mac&quot;&gt;WPS&lt;/a&gt; - Is a cross-platform office software suite. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Markdown Tools &lt;a href=&quot;https://github.com/BubuAnabelas/awesome-markdown#tools&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt;&lt;/a&gt;&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://furnacecreek.org/archimedes/&quot;&gt;Archimedes&lt;/a&gt; - Native macOS Markdown editor geared toward mathematical writing with inline LaTeX support.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/I7T5/Edmund&quot;&gt;Edmund&lt;/a&gt; - Minimal, native macOS Markdown editor with live preview; works with your existing files, no vault. &lt;a href=&quot;https://github.com/I7T5/Edmund&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/egoist/eme&quot;&gt;EME&lt;/a&gt; - Open-source Markdown editor with an interface like Chrome. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ia.net/writer/&quot;&gt;iA Writer&lt;/a&gt; - Writing app with an emphasis on simplicity and design.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/migsilva89/imark&quot;&gt;Imark&lt;/a&gt; - Open-source Markdown reader that stores your comments inside the document itself as HTML comments. &lt;a href=&quot;https://github.com/migsilva89/imark&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getlightpaper.com/&quot;&gt;LightPaper&lt;/a&gt; - Simple, beautiful, yet powerful text editor for your Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macdown.uranusjr.com/&quot;&gt;MacDown&lt;/a&gt; - Open source Markdown editor for macOS with live preview and HTML/PDF export. &lt;a href=&quot;https://github.com/MacDownApp/macdown&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://marked2app.com/&quot;&gt;Marked 2&lt;/a&gt; - This is the Markdown preview with an elegant and powerful set of tools for all writers.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/marktext/marktext&quot;&gt;MarkText&lt;/a&gt; - Next generation markdown editor, running on platforms of MacOS Windows and Linux. &lt;a href=&quot;https://github.com/marktext/marktext&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://markviewer.com&quot;&gt;MarkViewer&lt;/a&gt; - Markdown viewer and editor for macOS with AI-assisted editing. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://marp.app&quot;&gt;Marp&lt;/a&gt; - Markdown presentation writer with cross-platform support. &lt;a href=&quot;https://github.com/marp-team/marp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://marxi.co/&quot;&gt;Marxico&lt;/a&gt; - Delicate Markdown editor for Evernote. Reliable storage and sync.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.mweb.im/&quot;&gt;MWeb&lt;/a&gt; - Pro Markdown writing, and static blog generator App.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://obsidian.md&quot;&gt;Obsidian&lt;/a&gt; - A second brain, for you, forever.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Applacat/PixleyReader&quot;&gt;Pixley Reader&lt;/a&gt; - Reader for Markdown specs, docs, and changelogs generated by AI tools. &lt;a href=&quot;https://github.com/Applacat/PixleyReader&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.apple.com/app/id6758722045?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.ericli.io/scratch&quot;&gt;Scratch&lt;/a&gt; - Lightweight, offline-first markdown notes app with WYSIWYG editing and local AI agent support. &lt;a href=&quot;https://github.com/erictli/scratch&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.typora.io/&quot;&gt;Typora&lt;/a&gt; - Truly minimal Markdown editor featuring seamless live preview.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.ulyssesapp.com/features/&quot;&gt;Ulysses&lt;/a&gt; - The Ultimate Writing App for Mac, iPad and iPhone.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.zettlr.com/&quot;&gt;Zettlr&lt;/a&gt; - A markdown editor for the 21st century. &lt;a href=&quot;https://github.com/Zettlr/Zettlr&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Note-taking&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://affine.pro/&quot;&gt;Affine&lt;/a&gt; - Affine is the next-generation collaborative knowledge base for professionals. &lt;a href=&quot;https://github.com/toeverything/AFFiNE&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://agenda.com/&quot;&gt;Agenda&lt;/a&gt; - Date-focused note taking app for both planning and documenting your projects. &lt;a href=&quot;https://apps.apple.com/app/id1287445660?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://anytype.io/&quot;&gt;Anytype&lt;/a&gt; - Local-first note-taking and knowledge management app. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.appflowy.io/&quot;&gt;AppFlowy&lt;/a&gt; - Open-source alternative to Notion. &lt;a href=&quot;https://github.com/AppFlowy-IO/appflowy&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.bear-writer.com/&quot;&gt;Bear Writer&lt;/a&gt; - Beautiful, flexible writing app for crafting notes and prose. &lt;a href=&quot;https://apps.apple.com/us/app/bear-beautiful-writing-app/id1091189122?ls=1&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://boostnote.io/&quot;&gt;Boostnote&lt;/a&gt; - Note-taking app made for programmers. &lt;a href=&quot;https://github.com/BoostIO/Boostnote&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.craft.do/&quot;&gt;Craft&lt;/a&gt; - Notetaking and writing made beautiful. &lt;a href=&quot;https://apps.apple.com/se/app/craft-docs-and-notes-editor/id1487937127?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.getdnote.com/&quot;&gt;Dnote&lt;/a&gt; - A simple command line notebook with multi-device sync and a web interface. &lt;a href=&quot;https://github.com/dnote/dnote&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://emailmeapp.net/&quot;&gt;Email Me&lt;/a&gt; - Email yourself and much more with just one tap, native on macOS, iOS and WatchOS. &lt;a href=&quot;https://apps.apple.com/us/app/email-me-notes-in-one-tap/id1090744587?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://evernote.com/&quot;&gt;Evernote&lt;/a&gt; - Infamous note-taking app, available on many platforms. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://fsnot.es/&quot;&gt;FSNotes&lt;/a&gt; - File System Notes is a modern notes manager, native on macOS and iOS. &lt;a href=&quot;https://github.com/glushchenko/fsnotes&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.apple.com/gb/app/fsnotes/id1277179284?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://goobapp.com/&quot;&gt;Gooba&lt;/a&gt; - Writing app and task manager with a simple and interactive design.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.inkdrop.info/&quot;&gt;Inkdrop&lt;/a&gt; - Notebook app for Markdown lovers built on top of Electron.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://joplinapp.org/&quot;&gt;Joplin&lt;/a&gt; - Cross-platform open-source notepad with markdown support and to-do list management. &lt;a href=&quot;https://github.com/laurent22/joplin&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/alkalim/Knopo&quot;&gt;Knopo&lt;/a&gt; - Native macOS outliner for local-first notes stored as plain Markdown files. &lt;a href=&quot;https://github.com/alkalim/Knopo&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://logseq.com/&quot;&gt;Logseq&lt;/a&gt; - Privacy-first, open-source knowledge base. &lt;a href=&quot;https://github.com/logseq/logseq&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://marginnote.com/&quot;&gt;MarginNote 4&lt;/a&gt; - In-depth PDF and EPUB reading, learning, managing and note taking app.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://masscode.io/&quot;&gt;massCode&lt;/a&gt; - Cross-platform open-source code snippets manager with markdown and mermaid support. &lt;a href=&quot;https://github.com/massCodeIO/massCode&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://miaoyan.app/&quot;&gt;MiaoYan&lt;/a&gt; - Lightweight Markdown app to help you write great sentences.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/notable/notable&quot;&gt;Notable&lt;/a&gt; - The markdown-based note-taking app that doesn&#39;t suck.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.zoho.com/notebook/notebook-for-mac.html&quot;&gt;Notebook&lt;/a&gt; - Note-taking app. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://notegen.top/&quot;&gt;NoteGen&lt;/a&gt; - Open-source, local-first Markdown note-taking app that turns scattered records into structured notes with AI. &lt;a href=&quot;https://github.com/codexu/note-gen&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.get-notes.com/&quot;&gt;Notes&lt;/a&gt; - Clean, simple note-taking app. &lt;a href=&quot;https://github.com/nuttyartist/notes&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://noteplan.co/&quot;&gt;NotePlan 3&lt;/a&gt; - Your tasks, notes, and calendar, plain-text markdown files. &lt;a href=&quot;https://apps.apple.com/en/app/noteplan-3/id1505432629?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://noteplus.com/&quot;&gt;NotePlus&lt;/a&gt; - True Native Note and LLM Client&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://noteship.com&quot;&gt;Noteship&lt;/a&gt; - Local-first note-taking app for turning notes into structured knowledge. &lt;a href=&quot;https://apps.apple.com/us/app/noteship/id1571711347?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.notion.so/&quot;&gt;Notion&lt;/a&gt; - All-in-one workspace for notes, tasks, wikis, and databases.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ariso-ai/oats&quot;&gt;OATS&lt;/a&gt; - Open-source local-first meeting-notes app for macOS with live transcription, speaker labels, AI summaries, and a fully offline on-device mode. &lt;a href=&quot;https://github.com/ariso-ai/oats&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.onenote.com/&quot;&gt;OneNote&lt;/a&gt; - Note-taking app by Microsoft. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://outlineedit.com&quot;&gt;OutlineEdit 3&lt;/a&gt; - Fully-featured outline editor, for everyone who loves great structured notes. &lt;a href=&quot;https://apps.apple.com/us/app/outlineedit-3/id1608887438?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://revu.cards/&quot;&gt;Revu&lt;/a&gt; - Local-first spaced repetition app with FSRS scheduling and Anki import. &lt;a href=&quot;https://github.com/JuliusBrussee/revu-swift&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://saber.adil.hanney.org/&quot;&gt;Saber&lt;/a&gt; - Cross platform stylus and text notetaking app. Supports image and pdf imports, can sync. &lt;a href=&quot;https://apps.apple.com/us/app/saber/id1671523739?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/adil192/saber&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.apptorium.com/sidenotes&quot;&gt;SideNotes&lt;/a&gt; - Quick notes on the screen side with Markdown support.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://standardnotes.com/&quot;&gt;Standard Notes&lt;/a&gt; - An end-to-end encrypted notes app for digitalists and professionals. &lt;a href=&quot;https://github.com/standardnotes/app&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/jonhadfield/awesome-standard-notes#readme&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/0xMassi/stik_app&quot;&gt;Stik&lt;/a&gt; - Quick-capture markdown notes app with hotkeys and AI semantic search. &lt;a href=&quot;https://github.com/0xMassi/stik_app&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.qownnotes.org/&quot;&gt;QOwnNotes&lt;/a&gt; - Open-source notepad with markdown support and todo list manager. &lt;a href=&quot;https://github.com/pbek/QOwnNotes&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://quicknoteapp.com&quot;&gt;Quick Note&lt;/a&gt; - Colorful sticky notes in the Menu bar. &lt;a href=&quot;https://apps.apple.com/in/app/quick-note-in-the-menu/id1472935217?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://happenapps.com/#quiver&quot;&gt;Quiver&lt;/a&gt; - Mix text, code, Markdown, and LaTeX in one note with live preview.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://app.vnote.fun/&quot;&gt;VNote&lt;/a&gt; - Open-source Markdown note-taking app with a polished editor. &lt;a href=&quot;https://github.com/vnotex/vnote/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/AlexW00/Zettel&quot;&gt;Zettel&lt;/a&gt; - Minimal, distraction-free note-taking app with Markdown and hashtag-based organization. &lt;a href=&quot;https://github.com/AlexW00/Zettel&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.apple.com/app/zettel-quick-notes/id6748525244?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Journaling&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://dayoneapp.com/&quot;&gt;Day One&lt;/a&gt; - Excellent journaling app using text, photos, video, audio, location data, and more. &lt;a href=&quot;https://apps.apple.com/us/app/day-one/id1055511498?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://journey.cloud/&quot;&gt;Journey&lt;/a&gt; - Journaling app with many features and with apps for every platform available. &lt;a href=&quot;https://apps.apple.com/us/app/journey-diary-journal/id1300202543?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mylifenote.ai&quot;&gt;Life Note&lt;/a&gt; - Journal with the greatest minds in human history. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/lostdesign/linked&quot;&gt;linked&lt;/a&gt; - Link your thoughts to days, distraction free. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Writing&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://retrotype.ink/&quot;&gt;Retrotype&lt;/a&gt; - A fun and minimalist writing app that feels like a real typewriter. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/vkbo/novelWriter&quot;&gt;novelWriter&lt;/a&gt; - Open-source plain text editor for writing novels with minimal markdown-like syntax. &lt;a href=&quot;https://github.com/vkbo/novelWriter&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.literatureandlatte.com/scrivener/overview/&quot;&gt;Scrivener&lt;/a&gt; - The quintessential word processor for writers.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://thorn.so&quot;&gt;THORN&lt;/a&gt; - All you need to power personal writing and website building.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Ebooks&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://calibre-ebook.com/&quot;&gt;Calibre&lt;/a&gt; - Free, open-source e-book manager and reader. &lt;a href=&quot;https://github.com/kovidgoyal/calibre&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getbookshelves.app/&quot;&gt;BookShelves&lt;/a&gt; - Ebook reader and library manager with public-domain books and sync. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/bookshelves-ebook-reader/id6756848973?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://clearview-reader.github.io/clearview-x/index.html&quot;&gt;Clearview&lt;/a&gt; - Tabbed style e-book reader for PDF, EPUB (DRM free), CHM, and MOBI. &lt;a href=&quot;https://apps.apple.com/us/app/clearview/id557090104?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/NSGod/ichm&quot;&gt;iChm&lt;/a&gt; - Ebook reader for CHM (Microsoft Compiled HTML help) files. &lt;a href=&quot;https://github.com/NSGod/ichm&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.amazon.com/l/16571048011&quot;&gt;Kindle App&lt;/a&gt; - Amazon official reading app of kindle.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://klib.me/&quot;&gt;Klib&lt;/a&gt; - New way to manage highlights for Kindle and iBooks. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1196268448?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.koodoreader.com/en&quot;&gt;Koodo Reader&lt;/a&gt; - All-in-one eBook reader supporting over 15 formats. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/koodo-reader/koodo-reader&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/readest/readest&quot;&gt;Readest&lt;/a&gt; - Open-source ebook reader with a clean interface and powerful reading tools. &lt;a href=&quot;https://github.com/readest/readest&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://codedogqby.github.io/ReadAny/&quot;&gt;ReadAny&lt;/a&gt; - AI-powered e-book reader with semantic search, chat, and note management. &lt;a href=&quot;https://github.com/codedogQBY/ReadAny&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.scribus.net/&quot;&gt;Scribus&lt;/a&gt; - Professional layout and publishing software. &lt;a href=&quot;https://sourceforge.net/projects/scribus/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sigil-ebook.com/&quot;&gt;Sigil&lt;/a&gt; - Multi-platform EPUB ebook Editor. &lt;a href=&quot;https://github.com/Sigil-Ebook/Sigil&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/us/app/simple-comic/id1497435571?platform=mac&quot;&gt;Simple Comic&lt;/a&gt; - EBook reader for PDF, CBZ, and CBR formats with Live Text search. &lt;a href=&quot;https://github.com/MaddTheSane/Simple-Comic&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/simple-comic/id1497435571?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;RSS&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://elytra.app&quot;&gt;Elytra&lt;/a&gt; - A Simple &amp;amp; Private RSS Feed Reader with native rendering for macOS &amp;amp; iOS. &lt;a href=&quot;https://apps.apple.com/app/apple-store/id1433266971?pt=119194029&amp;amp;ct=awesomemac&amp;amp;mt=8&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://krillapps.com/feedy/&quot;&gt;Feedy&lt;/a&gt; - An elegant and lightweight RSS client and news reader for your Mac. &lt;a href=&quot;https://apps.apple.com/us/app/feedy-rss-client/id588288104?ls=1&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/RSSNext/Folo&quot;&gt;Folo&lt;/a&gt; 🧡 Next generation information browser. &lt;a href=&quot;https://github.com/RSSNext/Folo&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.rockysandstudio.com/&quot;&gt;Leaf&lt;/a&gt; - A news reader for managing subscriptions and enjoying daily news.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ranchero.com/netnewswire/&quot;&gt;NetNewsWire&lt;/a&gt; - It’s a free and open source feed reader for macOS. &lt;a href=&quot;https://github.com/brentsimmons/NetNewsWire&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://doughnutapp.com/&quot;&gt;Doughnut&lt;/a&gt; - Beautiful, open-source podcast catcher for Mac. &lt;a href=&quot;https://github.com/dyerc/Doughnut&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/l0ng-ai/papr&quot;&gt;Papr&lt;/a&gt; - RSS reader with adjustable typography, keyboard-driven navigation, and highlight export to Readwise, Notion and Obsidian. &lt;a href=&quot;https://github.com/l0ng-ai/papr&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://readkitapp.com/&quot;&gt;ReadKit&lt;/a&gt; - Bookmark and RSS management client.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://reederapp.com&quot;&gt;Reeder 5&lt;/a&gt; - News reader for Feedbin, Feedly, Feed Wrangler and so on. &lt;a href=&quot;https://apps.apple.com/pl/app/reeder-5/id1529448980?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sopaco/saga-reader&quot;&gt;Saga Reader&lt;/a&gt; - AI-powered web and RSS reader. &lt;a href=&quot;https://github.com/dyerc/Doughnut&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.goldenhillsoftware.com/unread/&quot;&gt;Unread&lt;/a&gt; - RSS reader with beautiful typography that supports Feedbin, Feedly and so on. &lt;a href=&quot;https://apps.apple.com/us/app/unread-an-rss-reader/id1363637349?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://viennarss.github.io/&quot;&gt;Vienna&lt;/a&gt; - RSS/Atom reader for Mac OS X. &lt;a href=&quot;https://github.com/ViennaRSS/vienna-rss&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Others&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.swifdoo.com/&quot;&gt;SwifDoo PDF&lt;/a&gt; - PDF editor/converter for editing, compressing, and password-protecting PDFs.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/vishaltelangre/bindPDF&quot;&gt;bindPDF&lt;/a&gt; - Combine multiple PDF files into a single PDF file using a friendly UI. &lt;a href=&quot;https://github.com/vishaltelangre/bindPDF&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://capd.jxd.dev&quot;&gt;Capd&lt;/a&gt; - Open-source capture and bookmarking app for saving links, text, notes, and images with full-text search. &lt;a href=&quot;https://github.com/jamiedavenport/capd&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.hewbo.com/chm-reader.html&quot;&gt;CHM Reader&lt;/a&gt; - Read Compiled HTML (.chm) documents on your Mac. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://chmox.sourceforge.net/&quot;&gt;Chmox&lt;/a&gt; - Read CHM documents on your Mac. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://highlightsapp.net&quot;&gt;Highlights&lt;/a&gt; - The PDF Reader for Research on Mac, iPad &amp;amp; iPhone. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pura-vida.in/apps/pdf-auditor/?utm_source=github&amp;amp;utm_medium=awesome-mac&quot;&gt;PDF Auditor&lt;/a&gt; - PDF inspection tool for analyzing metadata, structure, and security risks. &lt;a href=&quot;https://apps.apple.com/app/apple-store/id6738956506?pt=127483661&amp;amp;ct=GitHub&amp;amp;mt=8&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pdfexpert.com/&quot;&gt;PDF Expert&lt;/a&gt; - Read, annotate and edit PDFs, change text and images.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pdfpals.com&quot;&gt;PDF Pals&lt;/a&gt; - Chat with PDF app for Mac. No file size limits!&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.pdfgear.com/&quot;&gt;PDFgear&lt;/a&gt; - AI-integrated PDF editor. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/pdfgear-pdf-editor-for-adobe/id1615523079?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.pdfreaderpro.com&quot;&gt;PDF Reader Pro&lt;/a&gt; - You Can view, create, sign, convert and compress any PDF documents. &lt;a href=&quot;https://apps.apple.com/us/app/pdf-reader-pro-your-pdf-office/id825459243?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://skim-app.sourceforge.net&quot;&gt;Skim&lt;/a&gt; - PDF reader and note-taker for OS X. &lt;a href=&quot;https://sourceforge.net/projects/skim-app/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://skyfonts.com/&quot;&gt;SkyFonts&lt;/a&gt; - The simplest way to try, install, and manage fonts.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://smoothcsv.com/&quot;&gt;SmoothCSV&lt;/a&gt; - Fast, full-featured CSV editor with SQL queries. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://bananafishsoftware.com/products/spillo/&quot;&gt;Spillo&lt;/a&gt; - Powerful, beautiful and amazingly fast Pinboard client for OS X.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nilava/TabType&quot;&gt;TabType&lt;/a&gt; - Free, open-source AI autocomplete for every Mac app — on-device ghost-text suggestions powered by a local LLM (MLX); nothing leaves your Mac. &lt;a href=&quot;https://github.com/nilava/TabType&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.tadviewer.com&quot;&gt;Tad&lt;/a&gt; - Application for viewing and analyzing tabular data such as CSV files. &lt;a href=&quot;https://github.com/antonycourtney/tad&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.texifier.com/&quot;&gt;texifier&lt;/a&gt; - Great LaTeX editor for Mac with auto-update PDF and autocomplete LaTeX commands.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://updf.com/&quot;&gt;UPDF&lt;/a&gt; - Free PDF editor for reading, annotating, and editing PDFs. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1619925971?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.zotero.org/&quot;&gt;Zotero&lt;/a&gt; - Free tool to collect, organize, annotate, cite, and share research. &lt;a href=&quot;https://github.com/zotero/zotero/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://collate.one/get-started&quot;&gt;Collate&lt;/a&gt; - Free tool to collect, summarize and query PDFs with AI. All offline and free. &lt;a href=&quot;https://apps.apple.com/us/app/collateai/id6447429913?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pdfsail.com/&quot;&gt;PDFsail&lt;/a&gt; - All-in-one PDF tool for editing, converting, merging, compressing, and OCR.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tabletool.io/&quot;&gt;TableTool&lt;/a&gt; - Effortless CSV Browser!&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://heynote.com/&quot;&gt;Heynote&lt;/a&gt; - A dedicated scratchpad for developers. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Developer Tools&lt;/h2&gt; 
&lt;h3&gt;IDEs&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://developer.android.com/studio/index.html&quot;&gt;Android Studio&lt;/a&gt; - The official IDE for Android, based on Intellij IDEA. &lt;a href=&quot;https://tools.android.com/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/balsikandar/Android-Studio-Plugins#readme&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cate.cero-ai.com&quot;&gt;Cate&lt;/a&gt; - Open-source IDE on an infinite zoomable canvas, with editor, terminal, browser, and AI agent panels arranged in a spatial workspace. &lt;a href=&quot;https://github.com/0-AI-UG/cate&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://coderunnerapp.com&quot;&gt;CodeRunner&lt;/a&gt; - Lightweight, multi-language programming text editor and IDE.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.decoide.org&quot;&gt;Deco IDE&lt;/a&gt; - The best IDE for building React Native apps. &lt;a href=&quot;https://github.com/decosoftware/deco-ide&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.eclipse.org&quot;&gt;Eclipse&lt;/a&gt; - Popular open-source IDE for Java with plugin support for many languages. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://espressoapp.com/&quot;&gt;Espresso&lt;/a&gt; - The web editor for Mac is back. For people who make delightful, innovative and fast websites.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://fletch.sh/?utm_source=dir-awesome-mac&quot;&gt;Fletch&lt;/a&gt; - Native IDE for AI coding agents, giving each agent a sandboxed clone of your repository plus a shared symbol and call-graph index, with diff review before merge. &lt;a href=&quot;https://github.com/fwdai/fletch&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/beaglesoftware/editor&quot;&gt;BeagleEditor&lt;/a&gt; - A &quot;beagleful&quot; editor with features like syntax highlighting, plugins and... - A bit ugly, but it works&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.jetbrains.com/toolbox/&quot;&gt;JetBrains Toolbox App&lt;/a&gt; - Manage installed JetBrains tools, download new ones and open recent projects. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://www.jetbrains.com/objc/&quot;&gt;AppCode&lt;/a&gt; - Smart IDE for iOS/macOS development&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://www.jetbrains.com/rust/&quot;&gt;RustRover&lt;/a&gt; - A brand new JetBrains IDE for Rust Developers.&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://www.jetbrains.com/clion/&quot;&gt;CLion&lt;/a&gt; - Powerful C and C++ IDE. (&lt;strong&gt;Free&lt;/strong&gt; for Students)&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://www.jetbrains.com/datagrip/&quot;&gt;DataGrip&lt;/a&gt; - Cross-Plaform IDE for Databases and SQL. &lt;strong&gt;FREE&lt;/strong&gt; for Students, check &lt;a href=&quot;https://www.jetbrains.com/student/&quot;&gt;here&lt;/a&gt; for more info.&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://www.jetbrains.com/dataspell/&quot;&gt;DataSpell&lt;/a&gt; - The IDE for Professional Data Scientists&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://www.jetbrains.com/go/&quot;&gt;GoLand&lt;/a&gt; - Provides ergonomic environment for Go development.&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://www.jetbrains.com/idea/&quot;&gt;IntelliJ IDEA&lt;/a&gt; - Powerful IDE for JVM languages. (&lt;strong&gt;Free&lt;/strong&gt; for Students)&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://www.jetbrains.com/phpstorm/&quot;&gt;PHPStorm&lt;/a&gt; - The Lightning-Smart PHP IDE.&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://www.jetbrains.com/pycharm/&quot;&gt;PyCharm&lt;/a&gt; - Powerful Python IDE, which has professional version and community version.&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://www.jetbrains.com/rider/&quot;&gt;Rider&lt;/a&gt; - Cross-platform C# IDE with Resharper features.&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://www.jetbrains.com/webstorm/&quot;&gt;WebStorm&lt;/a&gt; - The smartest JavaScript IDE by JetBrains. &lt;strong&gt;FREE&lt;/strong&gt; for Students, check &lt;a href=&quot;https://www.jetbrains.com/student/&quot;&gt;here&lt;/a&gt; for more info.&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://haskellformac.com&quot;&gt;Haskell for Mac&lt;/a&gt; - A Modern Development Environment for Haskell. &lt;a href=&quot;https://apps.apple.com/app/haskell-development-platform/id841285201?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://netbeans.org/&quot;&gt;NetBeans IDE&lt;/a&gt; - Free, open-source IDE for Java and other languages. &lt;a href=&quot;https://github.com/apache/netbeans&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nimbalyst.com/&quot;&gt;Nimbalyst&lt;/a&gt; - A visual workspace for managing AI coding sessions, tasks, and project files.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nova.app/&quot;&gt;Nova&lt;/a&gt; - Beautiful, fast, flexible Mac code editor from &lt;a href=&quot;https://panic.com/&quot;&gt;Panic&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://onorca.dev&quot;&gt;Orca&lt;/a&gt; - An open-source IDE for running parallel AI coding agents (Claude Code, Codex, Cursor, Gemini, OpenCode), each in its own isolated git worktree. &lt;a href=&quot;https://github.com/stablyai/orca&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.trae.ai/&quot;&gt;Trae&lt;/a&gt; - AI-powered IDE for coding and software development.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://code.visualstudio.com/&quot;&gt;Visual Studio Code&lt;/a&gt; - Microsoft&#39;s free &amp;amp; open-source editor, TypeScript friendly, &lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/editor-plugin.md#vscode-plugin&quot;&gt;VSCode Plugins&lt;/a&gt;. &lt;a href=&quot;https://github.com/Microsoft/vscode&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/viatsko/awesome-vscode#readme&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://vscodium.com/&quot;&gt;VSCodium&lt;/a&gt; - Community-driven libre binaries of VS Code. &lt;a href=&quot;https://github.com/vscodium/vscodium&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://windsurf.com/&quot;&gt;Windsurf&lt;/a&gt; - The first agentic IDE where developers and AI flow together for a magical coding experience.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://developer.apple.com/xcode/&quot;&gt;Xcode&lt;/a&gt; - Essential IDE for iOS/macOS development. &lt;a href=&quot;https://apps.apple.com/app/id497799835?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://zed.dev/&quot;&gt;Zed&lt;/a&gt; - A high-performance, multiplayer code editor from the creators of Atom and Tree-sitter. &lt;a href=&quot;https://github.com/zed-industries/zed&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.spyder-ide.org/&quot;&gt;Spyder&lt;/a&gt; - Powerful scientific environment written in Python, for Python.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Developer Utilities&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/cameroncooke/AXe&quot;&gt;AXe&lt;/a&gt; - CLI tool for controlling iOS Simulators through Accessibility APIs and HID automation. &lt;a href=&quot;https://github.com/cameroncooke/AXe&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.publicspace.net/BetterRename/&quot;&gt;BetterRename&lt;/a&gt; - The most powerful and complete Mac file renaming application on the market. &lt;a href=&quot;https://apps.apple.com/us/app/better-rename-11/id1501308038?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.scootersoftware.com/&quot;&gt;Beyond Compare&lt;/a&gt; - Compare files and folders with powerful commands. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.getbidbar.com&quot;&gt;Bidbar&lt;/a&gt; - Manage bash commands from the menu bar and run them with keyboard shortcuts.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.cacher.io/&quot;&gt;Cacher&lt;/a&gt; - Cloud-based code snippet manager with Gist sync and multi-platform support.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://codekitapp.com/&quot;&gt;CodeKit&lt;/a&gt; - Web development tool for compiling and auto-refreshing.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://extiri.com/codemenu.html&quot;&gt;CodeMenu&lt;/a&gt; - Advanced snippets manager with IDE integration, natural language search, and more.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://coilpad.com&quot;&gt;CoilPad&lt;/a&gt; - Native macOS Python scratchpad designed for instant prototyping and interactive learning. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.conduktor.io&quot;&gt;Conduktor&lt;/a&gt; - Kafka desktop client. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Ender-Wang/Swifka&quot;&gt;Swifka&lt;/a&gt; - Read-only Kafka monitor for safely inspecting topics, messages, and consumer state. &lt;a href=&quot;https://github.com/Ender-Wang/Swifka&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/iHongRen/configEditor&quot;&gt;Configs&lt;/a&gt; - Configuration file manager for quickly viewing, editing and managing config files. &lt;a href=&quot;https://github.com/iHongRen/configEditor&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/isaced/CubicBezier&quot;&gt;CubicBezier&lt;/a&gt; - CubicBezier Generator for macOS. &lt;a href=&quot;https://github.com/isaced/CubicBezier&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/cubicbezier/id1228492117?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cutter.re/&quot;&gt;Cutter&lt;/a&gt; - Powerful multi-platform reverse engineering tool. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://wangchujiang.com/DevHub/&quot;&gt;DevHub&lt;/a&gt; - Feature-rich offline app for developers. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/devhub/id6476452351?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://kapeli.com/dash&quot;&gt;Dash&lt;/a&gt; - Awesome API documentation browser and code snippet manager. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://deeplinkbuddy.com&quot;&gt;Deeplink Buddy&lt;/a&gt; - Deeplink managers, made by developer for developers.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sourcegear.com/diffmerge/&quot;&gt;DiffMerge&lt;/a&gt; - Application to visually compare and merge files. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/hschmidt/EnvPane&quot;&gt;EnvPane&lt;/a&gt; - OS X preference pane for environment variables. &lt;a href=&quot;https://github.com/hschmidt/EnvPane&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/onmyway133/FinderGo&quot;&gt;FinderGo&lt;/a&gt; - Open terminal quickly from Finder. &lt;a href=&quot;https://github.com/onmyway133/FinderGo&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sorkila/tintpad&quot;&gt;Tintpad&lt;/a&gt; - Menu bar launcher that opens your terminal at the right repo with a coding agent (Claude Code, Codex) already running. &lt;a href=&quot;https://github.com/sorkila/tintpad&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.flyenv.com&quot;&gt;FlyEnv&lt;/a&gt; - Local development environment manager for languages, databases, and services. &lt;a href=&quot;https://github.com/xpf0000/FlyEnv&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://johnste.github.io/finicky/&quot;&gt;Finicky&lt;/a&gt; - Set rules to decide which browser opens each link. &lt;a href=&quot;https://github.com/johnste/finicky&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/2ndalpha/gasmask&quot;&gt;Gas Mask&lt;/a&gt; - Simple hosts file manager for Mac OS X. &lt;a href=&quot;https://github.com/2ndalpha/gasmask&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macpaw.com/gemini&quot;&gt;Gemini&lt;/a&gt; - Intelligent duplicate file finder.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://graphcode.app&quot;&gt;GraphCode&lt;/a&gt; - Runs coding-agent sessions as a graph, where each node is a live terminal you can attach to mid-run and each edge a hand-off that fires unattended. Claude Code, Copilot CLI, Codex. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ridiculousfish.com/hexfiend/&quot;&gt;Hex Fiend&lt;/a&gt; - Fast and clever open source hex editor. &lt;a href=&quot;https://github.com/ridiculousfish/HexFiend/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/hex-fiend/id1342896380?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/specialunderwear/Hosts.prefpane&quot;&gt;Hosts.prefpane&lt;/a&gt; - System preference pane to manage your hosts file. &lt;a href=&quot;https://github.com/specialunderwear/Hosts.prefpane&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/icon-preview&quot;&gt;Icon Preview&lt;/a&gt; - Preview your app icon and menu bar icon. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id6480373509?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://en.toolinbox.net/iHosts/&quot;&gt;iHosts&lt;/a&gt; - The only &lt;code&gt;/etc/hosts&lt;/code&gt; editor on Mac App Store. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1102004240?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nickustinov/itsyconnect-macos&quot;&gt;Itsyconnect&lt;/a&gt; - App Store Connect client for metadata, TestFlight, reviews, analytics, and localization. &lt;a href=&quot;https://github.com/nickustinov/itsyconnect-macos&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sanehosts.com&quot;&gt;SaneHosts&lt;/a&gt; - Hosts-based ad and tracker blocker. &lt;a href=&quot;https://github.com/sane-apps/SaneHosts&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.illacloud.com/&quot;&gt;ILLA Cloud&lt;/a&gt; - Low-code internal tool builder. &lt;a href=&quot;https://github.com/illacloud/illa-builder&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://imhex.werwolv.net/&quot;&gt;ImHex&lt;/a&gt; - Hex Editor for reverse engineers and programmers. &lt;a href=&quot;https://github.com/WerWolv/ImHex/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://peacockmedia.software/mac/integrity/free.html&quot;&gt;Integrity&lt;/a&gt; - Free website link checker for Mac. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://jsonstudio.js.org/&quot;&gt;JsonStudio&lt;/a&gt; - Local-first JSON workspace for formatting, editing, diffing, converting, validating, and extracting JSON from logs. &lt;a href=&quot;https://github.com/sundegan/JsonStudio&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.kaleidoscopeapp.com/&quot;&gt;Kaleidoscope&lt;/a&gt; - Compare text, images, and folders.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://koala-app.com&quot;&gt;Koala&lt;/a&gt; - GUI application for Less, Sass, Compass and CoffeeScript compilation. &lt;a href=&quot;https://github.com/oklai/koala/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.cunningo.com/locastudio/index.html&quot;&gt;Loca Studio&lt;/a&gt; - Analyze, review, and edit app translations. &lt;a href=&quot;https://apps.apple.com/app/id1465684707?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.linqpad.net/&quot;&gt;LINQPad&lt;/a&gt; - .NET scratchpad for running code, queries, and database exploration. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/smughead/Loupe&quot;&gt;Loupe&lt;/a&gt; - Accessibility inspector that generates AI-agent-ready output. &lt;a href=&quot;https://github.com/smughead/Loupe&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/kaunteya/MacSystemColors&quot;&gt;MacSystemColors&lt;/a&gt; - Mac app that shows all system colors in light and dark mode for Cocoa developers. &lt;a href=&quot;https://github.com/kaunteya/MacSystemColors&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nuance-dev/medio&quot;&gt;Medio&lt;/a&gt; - A native, lightweight text diff tool with a clean UI and real-time highlighting. &lt;a href=&quot;https://github.com/nuance-dev/medio&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mjmlio.github.io/mjml-app/&quot;&gt;MJML&lt;/a&gt; - Create responsive emails with a semantic syntax and rich components. &lt;a href=&quot;https://github.com/mjmlio/mjml&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://namequick.app&quot;&gt;NameQuick&lt;/a&gt; - AI-powered file renaming tool for macOS&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.paintcodeapp.com/&quot;&gt;PaintCode&lt;/a&gt; - Vector drawing app that generates Objective-C or Swift code in real time.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sindresorhus/Pasteboard-Viewer&quot;&gt;Pasteboard Viewer&lt;/a&gt; - Inspect the system pasteboards. &lt;a href=&quot;https://github.com/sindresorhus/Pasteboard-Viewer&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1499215709?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/LeonardoCardoso/Poirot&quot;&gt;Poirot&lt;/a&gt; - Companion app for browsing Claude Code sessions, reviewing diffs, and rerunning commands. &lt;a href=&quot;https://github.com/LeonardoCardoso/Poirot&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/muxy-app/muxy&quot;&gt;Muxy&lt;/a&gt; - AI-native GUI for managing AI coding sessions, projects, with split panes, Git integration, and AI usage tracking.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/productdevbook/port-killer&quot;&gt;PortKiller&lt;/a&gt; - Tool for inspecting ports, managing forwards and tunnels, and stopping bound processes. &lt;a href=&quot;https://github.com/productdevbook/port-killer&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jkpang/PPRows&quot;&gt;PPRows&lt;/a&gt; - Application to calculate how many lines of code you write. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/jkpang/PPRows&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://process-spy.app/&quot;&gt;ProcessSpy&lt;/a&gt; - A clean and powerful process monitor.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pushmate.app&quot;&gt;PushMate&lt;/a&gt; - Solves common push notification problems on macOS.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://responsively.app&quot;&gt;Responsively&lt;/a&gt; - A must-have devtool for web developers for quicker responsive web development. &lt;a href=&quot;https://github.com/responsively-org/responsively-app&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/scmbreeze/scm_breeze&quot;&gt;SCM Breeze&lt;/a&gt; - Set of shell scripts (for bash and zsh) that enhance your interaction with git. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/scmbreeze/scm_breeze&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.vandyke.com/products/securecrt/&quot;&gt;SecureCRT&lt;/a&gt; - Terminal emulation which supports SSH, Telnet or other protocols.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ricks-apps.com/osx/sitesucker/&quot;&gt;Site Sucker&lt;/a&gt; - Automatically downloads websites. &lt;a href=&quot;https://apps.apple.com/in/app/sitesucker/id442168834?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.renfei.org/snippets-lab/&quot;&gt;SnippetsLab&lt;/a&gt; - Easy-to-use code snippets manager.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ethanschoonover.com/solarized&quot;&gt;Solarized&lt;/a&gt; - Clean and beautiful color theme. Works well with iTerm, JetBrains products, Vim etc.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Stmol/ssh-keys-manager-macos-app&quot;&gt;SSH Keys Manager&lt;/a&gt; - Native macOS app for managing local SSH keys and Git identities. &lt;a href=&quot;https://github.com/Stmol/ssh-keys-manager-macos-app&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://staruml.io&quot;&gt;StarUML&lt;/a&gt; - Powerful UML app.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://objectivec2swift.com/#/xcode-extension/&quot;&gt;Swiftify&lt;/a&gt; - Objective-C to Swift code converter and Xcode &amp;amp; Finder extensions.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/MarcoEidinger/SwiftPlantUML-Xcode-Extension&quot;&gt;SwiftPlantUML&lt;/a&gt; - Generate and view class diagrams from Xcode for Swift code. &lt;a href=&quot;https://github.com/MarcoEidinger/SwiftPlantUML-Xcode-Extension&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://oldj.github.io/SwitchHosts/&quot;&gt;SwitchHosts&lt;/a&gt; - Free and open-source app for hosts management &amp;amp; switching. &lt;a href=&quot;https://github.com/oldj/SwitchHosts&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/yefga/Switzy&quot;&gt;Switzy&lt;/a&gt; - Open-source tool for switching Git identities and managing SSH keys. &lt;a href=&quot;https://github.com/yefga/Switzy&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/zqqf16/SYM&quot;&gt;SYM&lt;/a&gt; - GUI Application to symbolicate iOS crash log. &lt;a href=&quot;https://github.com/zqqf16/SYM&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://furnacecreek.org/testpiler/&quot;&gt;Testpiler&lt;/a&gt; - Tool for converting XCTest test suites to Swift Testing.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.texstudio.org&quot;&gt;TeXstudio&lt;/a&gt; - Integrated writing environment for creating LaTeX documents. &lt;a href=&quot;https://sourceforge.net/projects/texstudio/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sindresorhus/touch-bar-simulator&quot;&gt;Touch Bar Simulator&lt;/a&gt; - Use the Touch Bar on any Mac. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.visual-paradigm.com/&quot;&gt;Visual Paradigm&lt;/a&gt; - All-in-one UML, SysML, BPMN modeling platform.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.woodpeck.cn&quot;&gt;Woodpecker&lt;/a&gt; - View iOS app&#39;s Sandbox files, UserDefaults, Keychain items on a Mac. &lt;a href=&quot;https://apps.apple.com/app/woodpecker/id1333548463?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/insidegui/WWDC&quot;&gt;WWDC&lt;/a&gt; - The Mac OS unofficial WWDC app. &lt;a href=&quot;https://github.com/insidegui/WWDC&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/RobotsAndPencils/XcodesApp&quot;&gt;Xcodes&lt;/a&gt; - Install and switch between multiple versions of Xcode. &lt;a href=&quot;https://github.com/RobotsAndPencils/XcodesApp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/MarcoEidinger/XCSnippetsApp&quot;&gt;XCSnippetsApp&lt;/a&gt; - Explore, view, and edit Swift and iOS code snippets for Xcode. &lt;a href=&quot;https://github.com/MarcoEidinger/XCSnippetsApp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.zeplin.io/&quot;&gt;zeplin&lt;/a&gt; - Collaboration tool for work between designers and developers. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.emtec.com/zoc/index.html&quot;&gt;ZOC Terminal&lt;/a&gt; - Terminal emulator which supports SSH, telnet, connections and other protocols.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/by/app/nib-unlocker/id1475697086?platform=mac&quot;&gt;Nib Unlocker&lt;/a&gt; - .nib to .xib converter &lt;a href=&quot;https://apps.apple.com/by/app/nib-unlocker/id1475697086?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Regular Expression Editors&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://krillapps.com/patterns/&quot;&gt;Patterns&lt;/a&gt; - Regular expression editor.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://motionobj.com/regex/&quot;&gt;Regex&lt;/a&gt; - Regular expression testing tool with an emphasis on simplicity.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.mactechnologies.com/index.php?page=downloads#regexrx&quot;&gt;RegExRX&lt;/a&gt; - Development tool for regular expressions.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/6479819388?platform=mac&quot;&gt;RegexMate&lt;/a&gt; - A regular expression testing tool with a built-in quick reference guide.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;API Development and Analysis&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.usebruno.com/&quot;&gt;bruno&lt;/a&gt; - Bruno is a offline-only, fast and git-friendly opensource API client.&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mmattozzi.github.io/cocoa-rest-client/&quot;&gt;Cocoa Rest Client&lt;/a&gt; - Free, open-source, native Apple OS X app for testing HTTP/REST endpoints. &lt;a href=&quot;https://github.com/mmattozzi/cocoa-rest-client&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://echolon.app&quot;&gt;Echolon&lt;/a&gt; - Open-source API client and Postman alternative.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://httpie.io/&quot;&gt;HTTPie&lt;/a&gt; - HTTPie is making APIs simple and intuitive for those building the tools of our time. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://docs.hoppscotch.io/documentation/clients/desktop&quot;&gt;Hoppscotch&lt;/a&gt; - A lightweight, fast, and full-featured API debugging tool. &lt;a href=&quot;https://github.com/hoppscotch/hoppscotch&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://insomnia.rest/&quot;&gt;Insomnia&lt;/a&gt; - The most intuitive cross-platform REST API Client. &lt;a href=&quot;https://github.com/getinsomnia/insomnia&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.katalon.com&quot;&gt;Katalon Studio&lt;/a&gt; - Simplify API, Web, and Mobile Automation Tests. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://maestro.dev/&quot;&gt;Maestro&lt;/a&gt; - End-to-end testing framework for mobile and web apps. &lt;a href=&quot;https://github.com/mobile-dev-inc/maestro&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mockoon.com/&quot;&gt;Mockoon&lt;/a&gt; - Create mock APIs in seconds. &lt;a href=&quot;https://github.com/mockoon/mockoon&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://paw.cloud/&quot;&gt;Paw&lt;/a&gt; - Advanced HTTP client.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.getpostman.com&quot;&gt;Postman&lt;/a&gt; - GUI platform for API development. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://reqable.com&quot;&gt;Reqable&lt;/a&gt; - Next-Gen API Development Tool, Advanced API Debugging Proxy and REST Client. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://reqresapp.com/&quot;&gt;ReqRes&lt;/a&gt; - Native macOS app to monitor, debug, and mock HTTP(S) requests and responses. &lt;a href=&quot;https://github.com/OloApps/ReqRes&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://requestly.io&quot;&gt;Requestly&lt;/a&gt; - Open-source, lightweight Git-Friendly API Client built for modern developers. &lt;a href=&quot;https://github.com/requestly/requestly&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://trayce.dev&quot;&gt;Trayce&lt;/a&gt; - Lightweight tool to monitor Docker container traffic with a built-in .bru HTTP client. &lt;a href=&quot;https://github.com/evanrolfe/trayce_gui&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://yaak.app&quot;&gt;Yaak&lt;/a&gt; - A modern API client supporting multiple protocols, offline usage, and Git integration. &lt;a href=&quot;https://github.com/mountain-loop/yaak&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Network Analysis&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.charlesproxy.com/&quot;&gt;Charles&lt;/a&gt; - HTTP proxy/monitor to view HTTP and HTTPS traffic.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/james-proxy/james&quot;&gt;James&lt;/a&gt; - Open-source proxy tool for checking and mapping requests with http as well as https. &lt;a href=&quot;https://github.com/james-proxy/james&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.obdev.at/products/littlesnitch/download.html&quot;&gt;Little Snitch&lt;/a&gt; - Network monitor with a world map for visualizing network connections.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mitmproxy.org/&quot;&gt;mitmproxy&lt;/a&gt; - Interactive intercepting HTTP proxy for penetration testers and software developers. &lt;a href=&quot;https://github.com/mitmproxy/mitmproxy&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://proxie.app&quot;&gt;Proxie&lt;/a&gt; - HTTP debugging proxy.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://proxyman.app&quot;&gt;Proxyman&lt;/a&gt; - Modern and intuitive HTTP debugging proxy for macOS. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rockxy.io&quot;&gt;Rockxy&lt;/a&gt; - Open-source HTTP(S) debugging proxy for intercepting, inspecting, modifying, and replaying requests. &lt;a href=&quot;https://github.com/LocNguyenHuu/Rockxy&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/GyulyVGC/sniffnet&quot;&gt;Sniffnet&lt;/a&gt; - Application to comfortably monitor your network traffic. &lt;a href=&quot;https://github.com/GyulyVGC/sniffnet&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/SHIINASAMA/wifi-lens&quot;&gt;WiFi Lens&lt;/a&gt; - Native open-source Wi-Fi analyzer and network diagnostics app with real-time spectrum scanning, channel congestion visualization, and BLE device tracking. &lt;a href=&quot;https://github.com/SHIINASAMA/wifi-lens&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.wireshark.org&quot;&gt;Wireshark&lt;/a&gt; - The world’s foremost and widely-used network protocol analyzer. &lt;a href=&quot;https://github.com/wireshark/wireshark&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.apidog.com/&quot;&gt;Apidog&lt;/a&gt; - All-in-One workspace for API Design, Documentation, Debug, Mock, Test.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Frameworks For Hybrid Applications&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://appjs.com/&quot;&gt;AppJS&lt;/a&gt; - Lightweight JavaScript UI library for creating mobile webapps that behave like native apps. &lt;a href=&quot;https://github.com/appjs/appjs&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/saihgupr/DMGMaker&quot;&gt;DMG Maker&lt;/a&gt; - DMG creation tool with polished visuals and CLI support. &lt;a href=&quot;https://github.com/saihgupr/DMGMaker&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sindresorhus/create-dmg&quot;&gt;create-dmg&lt;/a&gt; - Create a good-looking DMG for your macOS app in seconds. &lt;a href=&quot;https://github.com/sindresorhus/create-dmg&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://kagerou.glass/rilmazafone/&quot;&gt;Rilmazafone&lt;/a&gt; - Design DMG installers on a WYSIWYG canvas and build exactly what you drew, no scripts. &lt;a href=&quot;https://github.com/kageroumado/rilmazafone&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/id6790960011?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pojala/electrino&quot;&gt;Electrino&lt;/a&gt; - Desktop runtime for web apps using the system&#39;s browser engine. &lt;a href=&quot;https://github.com/pojala/electrino&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://electron.atom.io&quot;&gt;Electron&lt;/a&gt; - Build cross platform desktop application with JavaScript, HTML and CSS. &lt;a href=&quot;https://github.com/electron/electron&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ionicframework.com/&quot;&gt;ionic&lt;/a&gt; - Build native and web apps with Angular and open web technologies. &lt;a href=&quot;https://github.com/driftyco/ionic&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macgapproject.github.io/&quot;&gt;MacGap&lt;/a&gt; - Lightweight JavaScript API for OS X integration. &lt;a href=&quot;https://github.com/MacGapProject&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nwjs.io&quot;&gt;nw.js&lt;/a&gt; - Build desktop apps with HTML and JavaScript. &lt;a href=&quot;https://github.com/nwjs/nw.js&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.qt.io&quot;&gt;Qt&lt;/a&gt; - Cross-platform application framework.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/CanonicalLtd/react-native&quot;&gt;React Native for Ubuntu&lt;/a&gt; - Build Ubuntu desktop apps using React Native. &lt;a href=&quot;https://github.com/CanonicalLtd/react-native&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ptmt/react-native-desktop&quot;&gt;React Native macOS&lt;/a&gt; - Build OS X desktop apps using React Native and Cocoa. &lt;a href=&quot;https://github.com/ptmt/react-native-desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://reactdesktop.js.org&quot;&gt;react-desktop&lt;/a&gt; - React UI Components for macOS Sierra. &lt;a href=&quot;https://github.com/gabrielbull/react-desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://microsoft.github.io/reactxp/&quot;&gt;ReactXP&lt;/a&gt; - Microsoft platform for Web, iOS, Android, and Windows UWP. &lt;a href=&quot;https://github.com/microsoft/reactxp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tauri.app/&quot;&gt;Tauri&lt;/a&gt; - Create small, fast, secure, cross-platform applications &lt;a href=&quot;https://github.com/tauri-apps/tauri&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Version Control&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.zennaware.com/cornerstone/&quot;&gt;Cornerstone&lt;/a&gt; - Powerful version control with a gorgeous interface.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://git-fork.com/&quot;&gt;Fork&lt;/a&gt; - Fast and friendly Git client for Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://git-cola.github.io/&quot;&gt;Git Cola&lt;/a&gt; - Powerful, Fast, Lightweight and Friendly Git GUI. For those caffeine adicting users. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Shikkic/gitbar&quot;&gt;Gitbar&lt;/a&gt; - Open-source，display GitHub contribution statistics on your menu bar. &lt;a href=&quot;https://github.com/Shikkic/gitbar&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://gitbutler.com/&quot;&gt;GitButler&lt;/a&gt; - Change management with parallel and stacked branches, unlimited undo, agent integrations. &lt;a href=&quot;https://github.com/gitbutlerapp/gitbutler&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://gitfinder.com/&quot;&gt;GitFinder&lt;/a&gt; - Fast and lightweight Git client for Mac with Finder integration.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.gitfox.app&quot;&gt;Gitfox&lt;/a&gt; - Commit faster, improve your code quality with superior diffs - and look good doing it. &lt;a href=&quot;https://apps.apple.com/app/gitfox/id1475511261?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://desktop.github.com/&quot;&gt;GitHub Desktop&lt;/a&gt; - The official GitHub GUI. &lt;a href=&quot;https://github.com/desktop/desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.gitkraken.com/&quot;&gt;GitKraken&lt;/a&gt; - The most popular Git GUI for Windows, Mac and Linux.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://gitup.co/&quot;&gt;GitUp&lt;/a&gt; - A simple &amp;amp; powerful Git client。&lt;a href=&quot;https://github.com/git-up/GitUp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rowanj.github.io/gitx/&quot;&gt;GitX-dev&lt;/a&gt; - Fork of &lt;a href=&quot;https://github.com/pieter/gitx&quot;&gt;Pieter&#39;s&lt;/a&gt; nice git GUI for OS X. Includes branch/tag sidebar and various fixes. &lt;a href=&quot;https://github.com/rowanj/gitx&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://hub.github.com/&quot;&gt;Hub&lt;/a&gt; - Command-line wrapper for Git that makes you better at GitHub. &lt;a href=&quot;https://github.com/github/hub&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rela.dev/&quot;&gt;RelaGit&lt;/a&gt; - The elegant solution to graphical version control. Built by developers, for developers. &lt;a href=&quot;https://github.com/relagit/relagit&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.syntevo.com/smartgit/&quot;&gt;SmartGit&lt;/a&gt; - Git client with support.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.sourcetreeapp.com/&quot;&gt;SourceTree&lt;/a&gt; - Free Git &amp;amp; Mercurial client for Windows or Mac. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.sublimemerge.com/&quot;&gt;Sublime Merge&lt;/a&gt; - Git client, from the makers of Sublime Text.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/maoyama/Changes&quot;&gt;Changes&lt;/a&gt; - GUI Git client. Replace the Git CLI with a clear UI and AI assist. &lt;a href=&quot;https://github.com/maoyama/Changes&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.git-tower.com/&quot;&gt;Tower2&lt;/a&gt; - The most powerful Git client for Mac and Windows.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://vershd.io/&quot;&gt;Vershd&lt;/a&gt; - The free for personal use effortless Git GUI, for Windows, Mac, &amp;amp; Linux. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.versionsapp.com/&quot;&gt;Versions&lt;/a&gt; - Mac Subversion (SVN) Client.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Virtualization&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.docker.com/&quot;&gt;Docker&lt;/a&gt; - Powerful, performs operating-system-level virtualization. &lt;a href=&quot;https://github.com/docker&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/veggiemonk/awesome-docker#readme&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://berthly.net&quot;&gt;Berthly&lt;/a&gt; - Native GUI for Apple&#39;s container tool, with menu bar monitoring and drag-and-drop image builds. &lt;a href=&quot;https://github.com/henrywang/Berthly&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/getgantry/gantry&quot;&gt;Gantry&lt;/a&gt; - Docker management client for local and SSH remote hosts with built-in MCP server support for agent workflows. &lt;a href=&quot;https://github.com/getgantry/gantry&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/J-x-Z/cocoa-way&quot;&gt;Cocoa-Way&lt;/a&gt; - Wayland compositor for running Linux GUI apps without a virtual machine. &lt;a href=&quot;https://github.com/J-x-Z/cocoa-way&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/groundwater/GhostVM&quot;&gt;GhostVM&lt;/a&gt; - Virtualization tool for creating and managing isolated macOS virtual machine workspaces. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://naden.co&quot;&gt;MacVirtue&lt;/a&gt; - Run free and unlimited Virtual Machines on your Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/us/mocker&quot;&gt;Mocker&lt;/a&gt; - Container manager built on Apple&#39;s Containerization framework. &lt;a href=&quot;https://github.com/us/mocker&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://multipass.run/&quot;&gt;Multipass&lt;/a&gt; - Ubuntu VMs on demand for any workstation. &lt;a href=&quot;https://github.com/canonical/multipass&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://orbstack.dev/&quot;&gt;OrbStack&lt;/a&gt; - Fast, light, and simple way to run Docker containers and Linux machines on macOS. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.parallels.com/&quot;&gt;Parallels&lt;/a&gt; - Powerful, easy-to-use VM. No free upgrade for each new Mac OS.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://podman-desktop.io/&quot;&gt;Podman Desktop&lt;/a&gt; - Open-source graphical tool for managing containers and Kubernetes. &lt;a href=&quot;https://github.com/containers/podman-desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rancherdesktop.io&quot;&gt;Rancher Desktop&lt;/a&gt; - Container management and Kubernetes on the desktop. &lt;a href=&quot;https://github.com/rancher-sandbox/rancher-desktop/raw/main/LICENSE&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/lima-vm/lima&quot;&gt;Lima&lt;/a&gt; - Lima launches Linux virtual machines with automatic file sharing and port forwarding. &lt;a href=&quot;https://github.com/lima-vm/lima&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.qemu.org/&quot;&gt;QEMU&lt;/a&gt; - A free and open-source emulator and virtualizer that can perform hardware virtualization. &lt;a href=&quot;https://github.com/qemu/qemu&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mac.getutm.app/&quot;&gt;UTM&lt;/a&gt; - UTM is an easy-to-use GUI for QEMU and can run ARM64, x64 and other VMs on M1 Macs. &lt;a href=&quot;https://github.com/utmapp/UTM&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.vagrantup.com&quot;&gt;Vagrant&lt;/a&gt; - Tool for building and distributing development environments. &lt;a href=&quot;https://github.com/mitchellh/vagrant&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/iJackUA/awesome-vagrant#readme&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://veertu.com&quot;&gt;Veertu&lt;/a&gt; - The lightest VM on Mac. Responsive, sandboxed &amp;amp; native way to run VM on your Mac. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.virtualbox.org&quot;&gt;Virtual Box&lt;/a&gt; - Powerful x86 and AMD64/Intel64 virtualization product. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.vmware.com/&quot;&gt;VMware Fusion&lt;/a&gt; - Powerful, commercial VM developed by VMware.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Databases&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://directory.apache.org/studio/&quot;&gt;Apache Directory Studio&lt;/a&gt; - LDAP browser and Active Directory client. &lt;a href=&quot;https://directory.apache.org/sources.html&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/qishibo/AnotherRedisDesktopManager&quot;&gt;Another Redis Desktop Manager&lt;/a&gt; - A faster, better and more stable redis desktop manager.&lt;a href=&quot;https://directory.apache.org/sources.html&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://menial.co.uk/base/&quot;&gt;Base 2&lt;/a&gt; - Application for creating, designing, editing and browsing SQLite 3 database files.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.beekeeperstudio.io&quot;&gt;Beekeeper Studio&lt;/a&gt; - Smooth SQL editor and database manager &lt;a href=&quot;https://github.com/beekeeper-studio/beekeeper-studio&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/bdash-app/bdash&quot;&gt;Bdash&lt;/a&gt; - Modern SQL client application, supports MySQL, PostgreSQL (Redshift) and BigQuery.&lt;a href=&quot;https://github.com/bdash-app/bdash&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/yoichiro/chrome_mysql_admin&quot;&gt;Chrome MySQL Admin&lt;/a&gt; - Powerful Chrome app to manage your MySQL. &lt;a href=&quot;https://github.com/yoichiro/chrome_mysql_admin&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ChristianKienle/Core-Data-Editor&quot;&gt;Core Data Editor&lt;/a&gt; - Core Data Editor lets you easily view, edit and analyze applications‘ data. &lt;a href=&quot;https://github.com/luin/medis&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://dataflare.app&quot;&gt;Dataflare&lt;/a&gt; - Simple database client supporting Postgres, MySQL, DuckDB, libSQL, Cloudflare D1, and more.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sqlitebrowser.org/&quot;&gt;DB Browser for SQLite&lt;/a&gt; - Official home of the DB Browser for SQLite. &lt;a href=&quot;https://github.com/sqlitebrowser/sqlitebrowser&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://dbeaver.io/&quot;&gt;DBeaver&lt;/a&gt; - Universal SQL Client.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://dbpro.app&quot;&gt;DB Pro&lt;/a&gt; - Database client for querying and managing SQL databases.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://garrylachman.github.io/ElectroCRUD/&quot;&gt;ElectroCRUD&lt;/a&gt; - Modern MySQL CRUD application. &lt;a href=&quot;https://github.com/garrylachman/ElectroCRUD&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://fastonosql.com/&quot;&gt;FastoNoSQL&lt;/a&gt; - Cross-platform GUI client for various key-value databases. &lt;a href=&quot;https://github.com/fastogt/fastonosql&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://fastoredis.com/&quot;&gt;FastoRedis&lt;/a&gt; - Cross-platform professional GUI management tool for Redis. &lt;a href=&quot;https://github.com/fastogt/fastoredis&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.jackdb.com/&quot;&gt;JackDB&lt;/a&gt; - Secure, collaborative environment for your queries and data-driven insights. &lt;a href=&quot;https://github.com/yoichiro/chrome_mysql_admin&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.macexplorer.co/en/mdb-explorer.php&quot;&gt;MDB Explorer&lt;/a&gt; - MDB tool to open, read, export your MDB files to other formats and databases.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getmedis.com&quot;&gt;Medis&lt;/a&gt; - GUI Manager for Redis. &lt;a href=&quot;https://github.com/luin/medis&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mingo.io/&quot;&gt;Mingo&lt;/a&gt; - Easy to use MongoDB GUI with mind-blowing features.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://gcollazo.github.io/mongodbapp/&quot;&gt;mongoDB.app&lt;/a&gt; - The easiest way to get started with mongoDB on the Mac. &lt;a href=&quot;https://github.com/gcollazo/mongodbapp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.mongodb.com&quot;&gt;MongoDB&lt;/a&gt; - Scalable, flexible document database with querying and indexing. &lt;a href=&quot;https://github.com/gcollazo/mongodbapp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/ramnes/awesome-mongodb#desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://dev.mysql.com/downloads/workbench/&quot;&gt;MySQL Workbench&lt;/a&gt; - The official MySQL GUI.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.navicat.com/en/products/navicat-data-modeler&quot;&gt;Navicat Data Modeler&lt;/a&gt; - Cost-effective database design tool for high-quality data models.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://neo4j.com&quot;&gt;neo4j&lt;/a&gt; - The leading graph database! &lt;a href=&quot;https://github.com/neo4j/neo4j&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://guillim.github.io/products/paul&quot;&gt;Paul&lt;/a&gt; - AI-first PostgreSQL client for getting fast answers from your database with read-only access by default.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pgmagic.app/?ref=awesomemac&quot;&gt;pgMagic🪄&lt;/a&gt; - Chat to Postgres in natural language or SQL.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pgmodeler.io&quot;&gt;pgModeler&lt;/a&gt; - pgModeler is an open source data modeling tool designed for PostgreSQL. &lt;a href=&quot;https://github.com/pgmodeler/pgmodeler&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://postgresapp.com/&quot;&gt;Postgres.app&lt;/a&gt; - The easiest way to get started with PostgreSQL on the Mac. &lt;a href=&quot;https://github.com/PostgresApp/PostgresApp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://eggerapps.at/postico/&quot;&gt;Postico&lt;/a&gt; - Modern PostgreSQL client for Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.psequel.com/&quot;&gt;PSequel&lt;/a&gt; - PostgreSQL GUI tool for Mac OS X. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://redis.io/insight/&quot;&gt;Redis Insight&lt;/a&gt; - Official Redis tool for browsing, debugging, and visualizing data. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/UUGU/redis-client-app&quot;&gt;RedisClient&lt;/a&gt; - Redis client application on mac, windows and linux. &lt;a href=&quot;https://github.com/UUGU/redis-client-app&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://redisdesktop.com&quot;&gt;RedisDesktopManager&lt;/a&gt; - Cross-platform GUI management tool for Redis. &lt;a href=&quot;https://github.com/uglide/RedisDesktopManager&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.sequelpro.com/&quot;&gt;Sequel Pro&lt;/a&gt; - MySQL database management for Mac OS X. &lt;a href=&quot;https://github.com/sequelpro/sequelpro&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Sequel-Ace/Sequel-Ace&quot;&gt;Sequel Ace&lt;/a&gt; - The maintained &quot;sequel&quot; to the longtime macOS tool Sequel Pro. &lt;a href=&quot;https://github.com/Sequel-Ace/Sequel-Ace&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://aurvan.com/sqlight/&quot;&gt;SQLight&lt;/a&gt; - SQLite database manager tool. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.sqlprostudio.com/&quot;&gt;SQLPro Studio&lt;/a&gt; - Simple, powerful database manager for macOS.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://studio3t.com/&quot;&gt;Studio 3T&lt;/a&gt; - the Ultimate GUI for MongoDB. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/surrealdb/surrealdb&quot;&gt;SurrealDB&lt;/a&gt; - A scalable, distributed, collaborative, document-graph database, for the realtime web. &lt;a href=&quot;https://github.com/surrealdb/surrealdb&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tableplus.io&quot;&gt;TablePlus&lt;/a&gt; - Supports: PostgreSQL, MySQL, RedShift, MariaDB... High-end security ensured.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/datlechin/TablePro&quot;&gt;TablePro&lt;/a&gt; - Fast database client with AI-assisted SQL editing and support for major SQL/NoSQL engines. &lt;a href=&quot;https://github.com/datlechin/TablePro&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://trailbase.io&quot;&gt;TrailBase&lt;/a&gt; - Open-source backend platform with type-safe APIs, auth, and admin tools built on SQLite. &lt;a href=&quot;https://github.com/trailbaseio/trailbase&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/cmushroom/redis-pro&quot;&gt;redis-pro&lt;/a&gt; - Small, easy to use Redis management, written with SwiftUI, support Dark mode. &lt;a href=&quot;https://github.com/cmushroom/redis-pro&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Terminal Apps&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jwilm/alacritty&quot;&gt;alacritty&lt;/a&gt; - A cross-platform, GPU-accelerated terminal emulator. &lt;a href=&quot;https://github.com/jwilm/alacritty&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/AwalTerminal/Awal-terminal&quot;&gt;Awal Terminal&lt;/a&gt; - AI-native terminal emulator with multi-provider profiles and voice input. &lt;a href=&quot;https://github.com/AwalTerminal/Awal-terminal&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://commandbookapp.com&quot;&gt;Command Book&lt;/a&gt; - A terminal companion for long-running terminal commands (freemium)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://electerm.github.io/electerm/&quot;&gt;electerm&lt;/a&gt; - Terminal, SSH, and SFTP client. &lt;a href=&quot;https://github.com/electerm/electerm&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ghostty-org/ghostty&quot;&gt;Ghostty&lt;/a&gt; - Fast GPU-accelerated terminal emulator. &lt;a href=&quot;https://github.com/ghostty-org/ghostty&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://hyper.is&quot;&gt;hyper&lt;/a&gt; - A terminal built on web technologies. &lt;a href=&quot;https://github.com/zeit/hyper&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.iterm2.com&quot;&gt;iTerm2&lt;/a&gt; - iTerm2 is an amazing terminal emulator for OS X. &lt;a href=&quot;https://github.com/gnachman/iTerm2&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/kovidgoyal/kitty&quot;&gt;kitty&lt;/a&gt; - A cross-platform, fast, feature full, GPU based terminal emulator. &lt;a href=&quot;https://github.com/kovidgoyal/kitty&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.kubeswitch.com/&quot;&gt;KubeSwitch&lt;/a&gt; - The fastest way to switch between Kubernetes contexts and namespaces on macOS. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Eugeny/tabby&quot;&gt;Tabby (formerly Terminus)&lt;/a&gt; - Free terminal tool, built with TypeScript, heavily inspired by Hyper. &lt;a href=&quot;https://github.com/Eugeny/terminus&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.termius.com/&quot;&gt;Termius&lt;/a&gt; - A beautiful SSH and SFTP client for Mac. It is also available for mobile. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/termius-terminal-ssh-client/id549039908?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/l0ng-ai/tty7&quot;&gt;tty7&lt;/a&gt; - A GPU-rendered, daemon-backed terminal in pure Rust with sessions that stay alive without tmux. &lt;a href=&quot;https://github.com/l0ng-ai/tty7&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/vestaterm/Vesta&quot;&gt;Vesta&lt;/a&gt; - Native macOS terminal built on libghostty for running coding agents in parallel. &lt;a href=&quot;https://github.com/vestaterm/Vesta&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.warp.dev&quot;&gt;Warp&lt;/a&gt; - Warp is a blazingly fast, rust-based terminal reimagined from the ground up to work like a modern app. &lt;a href=&quot;https://www.github.com/warpdotdev/warp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/wavetermdev/waveterm&quot;&gt;Wave&lt;/a&gt; - Open-source terminal with built-in file previews, web browsing, and AI tools. &lt;a href=&quot;https://github.com/wavetermdev/waveterm&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://wezfurlong.org/wezterm/&quot;&gt;WezTerm&lt;/a&gt; - A GPU-accelerated cross-platform terminal emulator and multiplexer implemented in Rust. &lt;a href=&quot;https://github.com/wez/wezterm&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Design and Product&lt;/h2&gt; 
&lt;h3&gt;Design Tools&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://secure.flyingmeat.com/acorn/&quot;&gt;Acorn&lt;/a&gt; - Great Mac OS X picture and photo editor, built for humans.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://affinity.serif.com/en-us/designer/&quot;&gt;Affinity Designer&lt;/a&gt; - Professional graphic design software for Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://affinity.serif.com/en-us/photo/&quot;&gt;Affinity Photo&lt;/a&gt; - Professional image editing software for Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://al.chemy.org/&quot;&gt;Alchemy&lt;/a&gt; - Experimental, open-source drawing application with an emphasis on creating conceptual art. &lt;a href=&quot;https://svn.al.chemy.org/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://amadine.com&quot;&gt;Amadine&lt;/a&gt; - Vector drawing app with an intuitive interface for graphic designers.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.belightsoft.com/art-text/&quot;&gt;Art Text 3&lt;/a&gt; - Graphic design software for lettering, typography, and text effects.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.blender.org/&quot;&gt;Blender&lt;/a&gt; - Free and open 3D creation software. &lt;a href=&quot;https://developer.blender.org/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://colorpicker.fr/&quot;&gt;Colorpicker&lt;/a&gt; - Colorpicker is a complete open-source colors manipulation tool with picking! &lt;a href=&quot;https://github.com/toinane/colorpicker&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.darktable.org&quot;&gt;darktable&lt;/a&gt; - darktable is an open source photography workflow application and raw developer. &lt;a href=&quot;https://github.com/darktable-org/darktable&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://convergencelab.gumroad.com/l/droply&quot;&gt;Droply&lt;/a&gt; - Offline batch background remover for images.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jgraph/drawio-desktop&quot;&gt;Draw.io&lt;/a&gt; Drawio is a diagramming and whiteboarding desktop app &lt;a href=&quot;https://github.com/jgraph/drawio-desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.figma.com/&quot;&gt;Figma&lt;/a&gt; - The collaborative interface design tool, for vector graphics and UI prototyping. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://fontforge.github.io/&quot;&gt;FontForge&lt;/a&gt; - Free, open-source font editor. &lt;a href=&quot;https://github.com/fontforge&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.gimp.org&quot;&gt;GIMP&lt;/a&gt; - The GNU Image Manipulation Program. &lt;a href=&quot;https://www.gimp.org/source/#gimp-source-code&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tenonedesign.com/inklet.php&quot;&gt;inklet&lt;/a&gt; - Turn your Mac trackpad into drawing board.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://inkscape.org/en/&quot;&gt;Inkscape&lt;/a&gt; - Professional vector graphics editor. &lt;a href=&quot;https://launchpad.net/inkscape&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://itspaintmac.com/&quot;&gt;ItsPaint&lt;/a&gt; - Native paint and screenshot markup: step badges, pixelate redaction, Instant Alpha. No account or telemetry. &lt;a href=&quot;https://github.com/joshlin2201/itspaint&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://krita.org/en/&quot;&gt;Krita&lt;/a&gt; - Open-source digital painting software for concept artists, digital painters, and illustrators. &lt;a href=&quot;https://github.com/KDE/krita&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macsvg.org/&quot;&gt;macSVG&lt;/a&gt; - Designing HTML5 SVG art and animation. &lt;a href=&quot;https://github.com/dsward2/macSVG&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ephtracy.github.io/&quot;&gt;MagicaVoxel&lt;/a&gt; - Free, lightweight 8-bit voxel editor and interactive path tracing renderer.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.makehumancommunity.org&quot;&gt;MakeHuman&lt;/a&gt; - Powerful and free 3D human modeler. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://monodraw.helftone.com&quot;&gt;Monodraw&lt;/a&gt; - Powerful ASCII art editor designed for the Mac. &lt;a href=&quot;https://apps.apple.com/app/monodraw/id920404675?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nikcollection.dxo.com/&quot;&gt;Nik Collection&lt;/a&gt; - Nik Collection by DxO.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://paintbrush.sourceforge.net/&quot;&gt;Paintbrush&lt;/a&gt; - Bitmap image editor. &lt;a href=&quot;https://sourceforge.net/projects/paintbrush/files/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.pencil2d.org&quot;&gt;Pencil2D&lt;/a&gt; - A easy, intuitive tool to make 2D hand-drawn animations. &lt;a href=&quot;https://github.com/pencil2d/pencil&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.pixelmator.com/mac/&quot;&gt;Pixelmator&lt;/a&gt; - Full-featured image editor for Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pixenapp.com/mac/&quot;&gt;Pixen&lt;/a&gt; - Native pixel art and animation editor for Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://principleformac.com/&quot;&gt;Principle&lt;/a&gt; - Application for designing animated and interactive user interfaces.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://superhighfives.com/pika&quot;&gt;Pika&lt;/a&gt; - An open-source color picker app. &lt;a href=&quot;https://github.com/superhighfives/pika&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.apple.com/app/pika/id6739170421?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rawtherapee.com/&quot;&gt;RawTherapee&lt;/a&gt; - A powerful cross-platform raw photo processing program! &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/Beep6581/RawTherapee&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/duyquoc/ScreenToLayers&quot;&gt;ScreenToLayers&lt;/a&gt; - Easily export your screen into a layered PSD file. &lt;a href=&quot;https://github.com/duyquoc/ScreenToLayers&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/screentolayers/id1077317077?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.sketchapp.com/&quot;&gt;Sketch&lt;/a&gt; - Professional digital design for mac. 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://yo-op.github.io/sketchcachecleaner/&quot;&gt;Sketch Cache Cleaner&lt;/a&gt; - Deletes hidden Sketch history files. &lt;a href=&quot;https://github.com/yo-op/sketchcachecleaner&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://utom.design/measure/&quot;&gt;Measure Plugin&lt;/a&gt; - Make it a fun to create spec for developers and teammates. &lt;a href=&quot;https://github.com/utom/sketch-measure&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://sketchtoolbox.com/&quot;&gt;Sketch Toolbox Plugin Manager&lt;/a&gt; - Simple plugin manager for Sketch. &lt;a href=&quot;https://github.com/buzzfeed/Sketch-Toolbox&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://abynim.github.io/UserFlows/&quot;&gt;User Flows Plugin&lt;/a&gt; - Generating flow diagrams from Artboards. &lt;a href=&quot;https://github.com/abynim/UserFlows&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.sketchbook.com/?locale=en-US&quot;&gt;SketchBook&lt;/a&gt; - Drawing software for concept design, comic art, and digital sketching. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sparkleapp.com/&quot;&gt;Sparkle&lt;/a&gt; - Pro visual web design.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sindresorhus/System-Color-Picker&quot;&gt;System Color Picker&lt;/a&gt; - The macOS color picker as an app with more features. &lt;a href=&quot;https://github.com/sindresorhus/System-Color-Picker&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1545870783?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.tayasui.com/sketches/&quot;&gt;Tayasui Sketches&lt;/a&gt; - Professional drawing software.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.vectornator.io/&quot;&gt;Vectornator: Design Software&lt;/a&gt; - The Most Intuitive and Precise Illustration Software in the Galaxy. &lt;a href=&quot;https://apps.apple.com/us/app/vectornator-design-software/id1219074514?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://vectr.com/&quot;&gt;Vectr&lt;/a&gt; - Free graphics editor used to create vector graphics easily and intuitively. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/cartesiancs/nugget-app&quot;&gt;Nugget&lt;/a&gt; - Video editing software designed for motion effects and versatility. &lt;a href=&quot;https://github.com/yo-op/sketchcachecleaner&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;OSS&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://icons8.com/lunacy&quot;&gt;Lunacy&lt;/a&gt; - Vector design tool with built-in assets and real-time collaboration. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/lunacy-graphic-design-editor/id1582493835?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Prototyping and Mind-Mapping Tools&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.adobe.com/products/experience-design.html&quot;&gt;Adobe XD&lt;/a&gt; - Tool for designing and prototyping websites and mobile apps.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.axure.com&quot;&gt;Axure RP 8&lt;/a&gt; - Prototypes, specifications and diagrams in one tool.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://balsamiq.com/products/mockups/&quot;&gt;Balsamiq Mockups&lt;/a&gt; - Wire-framing tool that helps you work faster and smarter.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.flinto.com/&quot;&gt;Flinto&lt;/a&gt; - Quickly create interactive prototypes of mobile, desktop, or web apps.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://framerjs.com/&quot;&gt;Framer&lt;/a&gt; - Tool for interactive prototyping.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.justinmind.com&quot;&gt;Justinmind&lt;/a&gt; - Prototyping platform for web and mobile apps.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://kiteapp.co/&quot;&gt;Kite&lt;/a&gt; - Powerful animation and prototyping application for Mac &amp;amp; iOS.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lighten-test.xmind.net&quot;&gt;Lighten&lt;/a&gt; - The best way to clarify thinking, boost productivity, brainstorm, and visualize concepts.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://marvelapp.com/&quot;&gt;Marvel&lt;/a&gt; - Simple design, prototyping and collaboration.&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mindnode.com/&quot;&gt;MindNode&lt;/a&gt; - Mind-mapping software with an emphasis on simplicity and ease-of-use.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.mockflow.com&quot;&gt;MockFlow&lt;/a&gt; - Online prototyping suite for web-design and usability testing.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.mockplus.com&quot;&gt;Mockplus&lt;/a&gt; - Prototype faster, smarter and easier.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.omnigroup.com/omnigraffle&quot;&gt;OmniGraffle&lt;/a&gt; - Diagramming and graphic design for Mac, iPhone, and iPad.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://origami.design/&quot;&gt;Origami Studio&lt;/a&gt; - Tool for designing modern interfaces, built and used by designers at Facebook.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pencil.evolus.vn/&quot;&gt;pencil&lt;/a&gt; - Free, open-source tool for making diagrams and GUI prototyping. &lt;a href=&quot;https://github.com/evolus/pencil&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.protopie.io/&quot;&gt;ProtoPie&lt;/a&gt; - Create the most advanced prototypes as easy as Pie.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://quikflow.app&quot;&gt;QuikFlow&lt;/a&gt; - Create flowcharts with a mind-mapping workflow.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.literatureandlatte.com/scapple.php&quot;&gt;Scapple&lt;/a&gt; - Practical mind-mapping software with free whiteboard-like layout.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://simplemind.eu/&quot;&gt;SimpleMind&lt;/a&gt; - The world leader in cross platform Mind Mapping tools.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://writemapper.com/&quot;&gt;WriteMapper&lt;/a&gt; - Get from idea to final draft in no time.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.xmind.net&quot;&gt;XMind&lt;/a&gt; - The most popular mind-mapping tool on the planet.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.simplediagrams.com/&quot;&gt;Simple Diagrams&lt;/a&gt; - Diagramming tool for quick hand-drawn-style sketches.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.yworks.com/products/yed&quot;&gt;yGraph Editor&lt;/a&gt; - High quality diagrams made easy.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Screenshot Tools&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://capcap.skyrin.fun&quot;&gt;capcap&lt;/a&gt; - Native menu bar screenshot tool with double-tap Command capture, annotation, scrolling capture, beautify, pinning, and image-host upload. &lt;a href=&quot;https://github.com/realskyrin/capcap&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cleanshot.com/&quot;&gt;CleanShot X&lt;/a&gt; - Discover a superior way to capture your Mac&#39;s screen.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.getcloudapp.com/&quot;&gt;CloudApp&lt;/a&gt; - Work at the speed of sight. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.dropbox.com/&quot;&gt;Dropbox&lt;/a&gt; - Dropbox app offers easy screenshot capturing and sharing &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flameshot-org/flameshot&quot;&gt;Flameshot&lt;/a&gt; - Powerful yet simple to use screenshot software. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://app.prntscr.com/&quot;&gt;Lightshot&lt;/a&gt; - The fastest way to take a customizable screenshot. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sw33tlie/macshot&quot;&gt;macshot&lt;/a&gt; - Screenshot and annotation tool with screen recording, scrolling capture, and OCR. &lt;a href=&quot;https://github.com/sw33tlie/macshot&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://wangchujiang.com/scap/&quot;&gt;Scap&lt;/a&gt; - Screenshot annotation and canvas tool with blur, mosaic, and watermark features. &lt;a href=&quot;https://apps.apple.com/app/Scap/6758053530?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://shottr.cc/&quot;&gt;Shottr&lt;/a&gt; - Screen capture application with features like Scrolling capture, OCR and markup.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://evernote.com/skitch/&quot;&gt;Skitch&lt;/a&gt; - Screen capture application with a powerful annotation capabilities. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://snip.qq.com/&quot;&gt;Snip&lt;/a&gt; - Application for sharing captured images on QQ Mail. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.snipaste.com&quot;&gt;Snipaste&lt;/a&gt; - Simple but powerful snipping tool. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://teampaper.me/snap/&quot;&gt;Teampaper Snap&lt;/a&gt; - Let your screenshots speak up. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/monosnap/id1199502670?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tuji.app/&quot;&gt;Tuji&lt;/a&gt; - Take a screenshot, annotate it, and beautify it. &lt;a href=&quot;https://apps.apple.com/us/app/tuji/id6479216439?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://xnipapp.com/&quot;&gt;Xnip&lt;/a&gt; - Handy Screenshot App. &lt;a href=&quot;https://apps.apple.com/app/xnip-handy-screenshot-app/id1221250572?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Screen Recording&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://jsattler.github.io/BetterCapture/&quot;&gt;BetterCapture&lt;/a&gt; - Free and open source screen recorder with professional encoding support. &lt;a href=&quot;https://github.com/jsattler/BetterCapture&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://capty.app/&quot;&gt;Capty&lt;/a&gt; - Screen capture and recording tool with built-in editing and annotations.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/lzhgus/Capso&quot;&gt;Capso&lt;/a&gt; - Open-source screenshot and screen recording tool with annotations, OCR, and webcam overlays. &lt;a href=&quot;https://github.com/lzhgus/Capso&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://gifox.app&quot;&gt;Gifox&lt;/a&gt; - Gif Recording and Sharing.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getkap.co/&quot;&gt;Kap&lt;/a&gt; - Open-source screen-recorder built with web technology. &lt;a href=&quot;https://github.com/wulkano/kap&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/keycastr/keycastr&quot;&gt;KeyCastr&lt;/a&gt; - KeyCastr, an open-source keystroke visualizer. &lt;a href=&quot;https://github.com/keycastr/keycastr&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/vishaltelangre/Kyapchar&quot;&gt;Kyapchar&lt;/a&gt; - Simple screen and microphone audio recorder for Mac. &lt;a href=&quot;https://github.com/vishaltelangre/Kyapchar&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.cockos.com/licecap/&quot;&gt;Licecap&lt;/a&gt; - Screen recorder that exports directly to GIF. &lt;a href=&quot;https://github.com/justinfrankel/licecap&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://monosnap.com/&quot;&gt;Monosnap&lt;/a&gt; - Make screenshots. Draw on it. Shoot video and share your files. It&#39;s fast, easy and free. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/monosnap/id540348655?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/obsproject/obs-studio&quot;&gt;OBS Studio&lt;/a&gt; - A free and open source software for live streaming and screen recording. &lt;a href=&quot;https://github.com/obsproject/obs-studio&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/siddharthvaddem/openscreen&quot;&gt;OpenScreen&lt;/a&gt; - Open-source tool for creating polished screen demos and walkthrough videos. &lt;a href=&quot;https://github.com/siddharthvaddem/openscreen&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lihaoyun6.github.io/quickrecorder/&quot;&gt;Quick Recorder&lt;/a&gt; - A lightweight and high-performance screen recorder for macOS &lt;a href=&quot;https://github.com/lihaoyun6/QuickRecorder&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://recordly.dev/&quot;&gt;Recordly&lt;/a&gt; - Open-source screen recorder and editor for polished demos, tutorials, and product videos. &lt;a href=&quot;https://github.com/webadderallorg/Recordly&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://reframed.dev&quot;&gt;Reframed&lt;/a&gt; - Screen recorder with a built-in editor. &lt;a href=&quot;https://github.com/jkuri/Reframed&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.screen.studio/&quot;&gt;Screen Studio&lt;/a&gt; - Screen recorder for polished videos with automatic motion effects.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.screenkite.com/&quot;&gt;ScreenKite&lt;/a&gt; - Native screen recorder and editor with auto-zoom, AI enhancements, device mockups, and teleprompter. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://screensage.pro/&quot;&gt;ScreenSage Pro&lt;/a&gt; - A screen recording tool for creating polished videos in minutes.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://syi0808.github.io/screenize/&quot;&gt;Screenize&lt;/a&gt; - Open-source screen recorder with auto-zoom, cursor effects, and timeline editing. &lt;a href=&quot;https://github.com/syi0808/screenize&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/screenpipe/screenpipe&quot;&gt;Screenpipe&lt;/a&gt; - Local screen and microphone recorder with AI search. &lt;a href=&quot;https://github.com/screenpipe/screenpipe&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.techsmith.com/screen-capture.html&quot;&gt;Snagit&lt;/a&gt; - Screen Capture and Recording Software. Simple and Powerful.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tight.studio/&quot;&gt;Tight Studio&lt;/a&gt; - Screen recorder with smart zoom, captions, and AI voiceovers.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://zapier.com/zappy&quot;&gt;Zappy&lt;/a&gt; - Zappy is a screenshot and screen recording app all in one. Has some simple editing tools built in.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Other Tools&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/amazing-ai&quot;&gt;Amazing AI&lt;/a&gt; - Generate images from text using Stable Diffusion. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1660147028?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mancunianetz/APNGb&quot;&gt;APNGb&lt;/a&gt; - PNG image assembler/disassembler app. &lt;a href=&quot;https://github.com/mancunianetz/APNGb&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://aspect.bildhuus.com&quot;&gt;Aspect&lt;/a&gt; - Photo organization app with peer-to-peer sync. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://assetizr.com&quot;&gt;Assetizr&lt;/a&gt; - Resizing images and optimising them for web and mobile applications. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/julyx10/lap&quot;&gt;Lap&lt;/a&gt; - Local photo manager for browsing and organizing personal media libraries offline. &lt;a href=&quot;https://github.com/julyx10/lap&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://couleursapp.com&quot;&gt;Couleurs&lt;/a&gt; - Simple app for grabbing and tweaking the colors you see on your screen. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/codeforreal1/compressO&quot;&gt;CompressO&lt;/a&gt; - Open-source tool for compressing videos and images to smaller sizes. &lt;a href=&quot;https://github.com/codeforreal1/compressO&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://diffusionbee.com/&quot;&gt;Diffusion Bee&lt;/a&gt; - The easiest way to generate AI art on your computer with Stable Diffusion. &lt;a href=&quot;https://github.com/divamgupta/diffusionbee-stable-diffusion-ui/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://en.eagle.cool/&quot;&gt;Eagle App&lt;/a&gt; - Asset manager for images, videos, audio, fonts, and design files.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://exifcleaner.com&quot;&gt;ExifCleaner&lt;/a&gt; - Remove exif metadata from images and videos with drag and drop. &lt;a href=&quot;https://github.com/szTheory/exifcleaner&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/heic-converter&quot;&gt;HEIC Converter&lt;/a&gt; - Convert HEIC images to JPEG or PNG. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/heic-converter-to-jpeg-or-png/id1294126402?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://iconset.io&quot;&gt;Iconset&lt;/a&gt; - Free, cross-platform and fast SVG icon organizer and manager for Mac and Windows.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://geticonjar.com/&quot;&gt;Iconjar&lt;/a&gt; - Icon management tool to organize or search your icons.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://appersian.net/&quot;&gt;IconKit&lt;/a&gt; - App icon generator. &lt;a href=&quot;https://apps.apple.com/app/iconkit-icon-resizer-for-app/id507135296?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.img2icnsapp.com&quot;&gt;Image2icon&lt;/a&gt; - Create and personalize icons from your pictures. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pngmini.com/&quot;&gt;ImageAlpha&lt;/a&gt; - Compress images with PNG format and remove transparency. &lt;a href=&quot;https://github.com/pornel/ImageAlpha&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://imageoptim.com/mac&quot;&gt;ImageOptim&lt;/a&gt; - Compress images and remove EXIF information. &lt;a href=&quot;https://github.com/ImageOptim/ImageOptim&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://en.toolinbox.net/iPic/&quot;&gt;iPic&lt;/a&gt; - Easily upload images with Markdown supported. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1101244278?ls=1&amp;amp;at=1000lv4R&amp;amp;ct=iPic_me&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.jpegmini.com/&quot;&gt;JPEGmini&lt;/a&gt; - Reduce image size by up to 80%, without compromising quality.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getmarkman.com/&quot;&gt;Mark Man&lt;/a&gt; - Measure &amp;amp; Spec Fast.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://recouse.me/apps/mottie/&quot;&gt;Mottie&lt;/a&gt; - A native Lottie animation player with Quick Look extension for dotLottie files. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/apple-store/id6743446238?pt=120474400&amp;amp;ct=awesome-mac&amp;amp;mt=8&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nucleoapp.com/&quot;&gt;Nucleo&lt;/a&gt; - Icon manager. Import, export, customize and convert icon libraries.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.presetbrewery.com&quot;&gt;Preset Brewery&lt;/a&gt; - Tool to convert Lightroom presets to Adobe Camera Raw.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://interversehq.com/qview/&quot;&gt;qView&lt;/a&gt; - qView is an image viewer designed with minimalism and usability in mind. &lt;a href=&quot;https://github.com/jurplel/qView&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.boltnev.com/resizemaster/&quot;&gt;Resize Master&lt;/a&gt; - Batch resize and watermark your images fast and easy. &lt;a href=&quot;https://apps.apple.com/app/resize-master/id1025306797?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rightfontapp.com/&quot;&gt;RightFont&lt;/a&gt; - Preview, sync, install and manage fonts on Mac, Dropbox or Google Drive.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.techsmith.com/snagit.html&quot;&gt;Snagit&lt;/a&gt; - Simple, Powerful Screen Capture Software and Screen Recorder.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.svgs.us/&quot;&gt;svgus&lt;/a&gt; - Organize, clean and transform your SVGs. &lt;a href=&quot;https://apps.apple.com/app/svgsus/id1106867065?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/kyleduo/TinyPNG4Mac&quot;&gt;TinyPNG4Mac&lt;/a&gt; - Open-source tool to compress images. &lt;a href=&quot;https://github.com/kyleduo/TinyPNG4Mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tropy.org/&quot;&gt;Tropy&lt;/a&gt; - Research Photo Management. &lt;a href=&quot;https://github.com/tropy/tropy&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Molunerfinn/PicGo&quot;&gt;PicGo&lt;/a&gt; - Support for common cdn image hosting tool. &lt;a href=&quot;https://github.com/Molunerfinn/PicGo&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/shotbuilder/id1294179975?platform=mac&quot;&gt;AppIconBuilder&lt;/a&gt; - Export icons for multi-platform&lt;a href=&quot;https://apps.apple.com/app/shotbuilder/id1294179975?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/gee1k/uPic&quot;&gt;uPic&lt;/a&gt; - macOS native app, powerful terse image hosting client. &lt;a href=&quot;https://github.com/gee1k/uPic&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://zipic.app/&quot;&gt;Zipic&lt;/a&gt; - Batch image compression tool with presets and automation.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;AI Tools&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://agentteams.live/&quot;&gt;Agent Teams AI&lt;/a&gt; - Open-source desktop app for coordinating autonomous AI coding agents through team messaging, task boards, and code review. &lt;a href=&quot;https://github.com/777genius/agent-teams-ai&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://luoyuctl.github.io/agenttrace/&quot;&gt;Agenttrace&lt;/a&gt; - Local-first TUI for inspecting AI coding agent sessions, costs, tokens, latency, tool failures, health, and diffs. &lt;a href=&quot;https://github.com/luoyuctl/agenttrace&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.theappleai.tech/&quot;&gt;AppleAi&lt;/a&gt; - Access multiple AI assistants from your menu bar with one shortcut. &lt;a href=&quot;https://github.com/bunnysayzz/AppleAI&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/gety-ai/apple-on-device-openai&quot;&gt;Apple On-Device OpenAI&lt;/a&gt; - Runs Apple on-device models behind an OpenAI-compatible API. &lt;a href=&quot;https://github.com/gety-ai/apple-on-device-openai&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://app.aqbot.top/&quot;&gt;AQBot&lt;/a&gt; - Open-source desktop AI workspace for multi-provider chat, agent workflows, knowledge bases, MCP tools, and an OpenAI-compatible API gateway. &lt;a href=&quot;https://github.com/AQBot-Desktop/AQBot&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/AtomicBot-ai/Atomic-Chat&quot;&gt;Atomic Chat&lt;/a&gt; - Open-source AI chat client for local and cloud models with MCP support. &lt;a href=&quot;https://github.com/AtomicBot-ai/Atomic-Chat&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://openbitfun.com/&quot;&gt;BitFun&lt;/a&gt; - Open-source AI agent that gives each task its own interactive workspace with chat linked to live state. &lt;a href=&quot;https://github.com/GCWing/BitFun&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://boltai.com&quot;&gt;BoltAI&lt;/a&gt; - A beautiful &amp;amp; powerful ChatGPT app for Mac. Stay ahead by integrating AI into your workflow today.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://openai.com/chatgpt/mac/&quot;&gt;ChatGPT&lt;/a&gt; - A conversational AI system that listens, learns, and challenges&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://claude.ai/download&quot;&gt;Claude&lt;/a&gt; - Your AI partner on desktop. Fast, focused, and designed for deep work.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://claudegod.app&quot;&gt;Claude God&lt;/a&gt; - Monitor Claude usage, costs, and session stats. &lt;a href=&quot;https://github.com/Lcharvol/Claude-God&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Bread-bang/claude-usage&quot;&gt;Claude Usage&lt;/a&gt; - Menu bar app for Claude Code that keeps per-pane context (in the status line) and session/weekly usage always visible — no usage or context command to run. &lt;a href=&quot;https://github.com/Bread-bang/claude-usage&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/theDanButuc/Claude-Usage-Monitor&quot;&gt;Claude Usage Monitor&lt;/a&gt; - Track Claude usage with a live counter. &lt;a href=&quot;https://github.com/theDanButuc/Claude-Usage-Monitor&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/cordwainersmith/claudoscope&quot;&gt;Claudoscope&lt;/a&gt; - Tool for browsing and analyzing Claude Code sessions. &lt;a href=&quot;https://github.com/cordwainersmith/claudoscope&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://clawdhome.app/&quot;&gt;ClawdHome&lt;/a&gt; - Manage multiple isolated OpenClaw gateway instances from one control panel. &lt;a href=&quot;https://github.com/ThinkInAIXYZ/clawdhome&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/krisbradley/clawpypaste&quot;&gt;clawpypaste&lt;/a&gt; - Menu bar block picker and session browser for Claude Code. &lt;a href=&quot;https://github.com/krisbradley/clawpypaste&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.cherry-ai.com/&quot;&gt;Cherry Studio&lt;/a&gt; - A desktop client that supports multiple large language model (LLM) providers. &lt;a href=&quot;https://github.com/CherryHQ/cherry-studio&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://chatboxai.app&quot;&gt;Chatbox&lt;/a&gt; - User-friendly Desktop Client App for AI Models/LLMs (GPT, Claude, Gemini, Ollama...). &lt;a href=&quot;https://github.com/chatboxai/chatbox&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://codexbar.app&quot;&gt;CodexBar&lt;/a&gt; - Show usage stats for OpenAI Codex and Claude Code, without having to login. &lt;a href=&quot;https://github.com/steipete/CodexBar&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cursorvoice.app&quot;&gt;Cursor Voice&lt;/a&gt; - Voice assistant that lives by your cursor, sees your screen, and can control apps via the OpenAI Realtime API. &lt;a href=&quot;https://github.com/cursorvoice/cursor-voice&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/yaroshevych/desktopctl&quot;&gt;Desktop Control&lt;/a&gt; - GPU-accelerated CLI for AI agents to control any macOS app via screen, mouse, and keyboard.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://fazm.ai&quot;&gt;Fazm&lt;/a&gt; - Open-source voice-controlled AI agent for apps, files, and workflows. &lt;a href=&quot;https://github.com/m13v/fazm&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Divagation/flock&quot;&gt;Flock&lt;/a&gt; - Terminal multiplexer for running multiple Claude Code and shell sessions in one workspace. &lt;a href=&quot;https://github.com/Divagation/flock&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://fluentmac.app&quot;&gt;Fluent&lt;/a&gt; - AI assistant that works across apps with model and context integration.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/FirenzeLor/gemini-collector&quot;&gt;Gemini Collector&lt;/a&gt; - Back up Google Gemini conversations, attachments, and AI-generated media locally as JSON. &lt;a href=&quot;https://github.com/FirenzeLor/gemini-collector&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://groask.com&quot;&gt;GroAsk&lt;/a&gt; - Menu bar launcher that sends selected text to AI assistants and CLI agents.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://recurse.chat&quot;&gt;RecurseChat&lt;/a&gt; - Local-first AI chat app with customizable workflows.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/runtime-org/runtime&quot;&gt;Runtime&lt;/a&gt; - AI taskmate and take control of the web &amp;amp; your office tools&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://priyans-hu.github.io/tokenmeter/&quot;&gt;TokenMeter&lt;/a&gt; - Track Claude Code usage, rate limits, costs, and activity heatmaps. &lt;a href=&quot;https://github.com/Priyans-hu/tokenmeter&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.tokentracker.cc&quot;&gt;TokenTracker&lt;/a&gt; - Local-first menu bar app and CLI that tracks token usage and cost across 20+ AI coding tools. &lt;a href=&quot;https://github.com/mm7894215/TokenTracker&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://turaai.net/&quot;&gt;Tura&lt;/a&gt; - Tura is a local, open-source coding agent for developers who are tired of vague skill claims, token-saving extensions with no evidence, and agents that change a repository before understanding it. &lt;a href=&quot;https://github.com/Tura-AI/tura&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/f-is-h/Usage4Claude&quot;&gt;Usage4Claude&lt;/a&gt; - Real-time monitoring of Claude usage quotas across time windows and plans. &lt;a href=&quot;https://github.com/f-is-h/Usage4Claude&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://jan.ai/&quot;&gt;Jan&lt;/a&gt; - An open-source alternative to ChatGPT that runs entirely offline on your computer. &lt;a href=&quot;https://github.com/menloresearch/jan&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://royzhao1991.github.io/LingShu/&quot;&gt;LingShu&lt;/a&gt; - Open-source, model-agnostic macOS agent for verified code, documents, slides, and computer actions. &lt;a href=&quot;https://github.com/RoyZhao1991/LingShu&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.lokalbot.com/&quot;&gt;LokalBot&lt;/a&gt; - On-device meeting notes, dictation, inline autocomplete, and searchable work memory for macOS. &lt;a href=&quot;https://github.com/stevyhacker/lokalbot&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://runmaestro.ai&quot;&gt;Maestro&lt;/a&gt; - Multi-agent AI coding tool with spec-driven workflows. &lt;a href=&quot;https://github.com/pedramamini/Maestro&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://miniclaw.bot&quot;&gt;MiniClaw&lt;/a&gt; - Local-first personal AI agent with memory and automation tools. &lt;a href=&quot;https://github.com/augmentedmike/miniclaw-os&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getoffgridai.co/desktop&quot;&gt;Off Grid AI Desktop&lt;/a&gt; - Private, local-first AI for your Mac: local LLM chat, image generation, voice dictation, and memory search, all on-device. &lt;a href=&quot;https://github.com/off-grid-ai/off-grid-ai-desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://orchard.5km.tech/&quot;&gt;Orchard&lt;/a&gt; - MCP server that connects AI assistants to Apple apps.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://prevail.sh&quot;&gt;Prevail&lt;/a&gt; - Local-first AI life OS: any model per life-domain over a plain-markdown vault on your Mac. Signed and notarized. &lt;a href=&quot;https://github.com/fru-dev3/prevail-desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nbonamy/witsy&quot;&gt;Witsy&lt;/a&gt; - desktop AI assistant / universal MCP client. &lt;a href=&quot;https://github.com/nbonamy/witsy&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.remio.ai/?utm_source=github_list&quot;&gt;remio&lt;/a&gt; - Local-first AI chat client that answers from your knowledge base. &lt;a href=&quot;https://www.remio.ai/?utm_source=github_list&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://karatsidhu.gumroad.com/l/warden&quot;&gt;Warden&lt;/a&gt; - A Native Swift macOS app that lets you run multiple LLM models using your own API keys. &lt;a href=&quot;https://github.com/SidhuK/WardenApp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Communication&lt;/h2&gt; 
&lt;h3&gt;Collaboration and Team Tools&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://adium.im/&quot;&gt;Adium&lt;/a&gt; - Free instant messaging application for Mac OS X. Connect to AIM, MSN, SMPP, Yahoo and more. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.blurscreen.app&quot;&gt;BlurScreen App&lt;/a&gt; - Instantly blur sensitive on-screen content for recording or screen sharing.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sindresorhus/caprine&quot;&gt;Caprine&lt;/a&gt; - Third-party privacy-focused Facebook Messenger app. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.dingtalk.com/en&quot;&gt;DingTalk&lt;/a&gt; - Team communication and collaboration platform. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://discordapp.com/&quot;&gt;Discord&lt;/a&gt; - Voice, text, and community chat platform.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://element.io/&quot;&gt;Element&lt;/a&gt; - Create, share communicate. Chat and call securely. &lt;a href=&quot;https://github.com/vector-im&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ferdium.org/&quot;&gt;Ferdium&lt;/a&gt; - Messaging workspace that combines multiple web apps in one place. &lt;a href=&quot;https://github.com/ferdium/ferdium-app&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://meetfranz.com/&quot;&gt;Franz&lt;/a&gt; - Messaging app that combines multiple chat services in one place. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://gitter.im&quot;&gt;Gitter&lt;/a&gt; - Chat platform for developers and GitHub communities. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://keybase.io/&quot;&gt;Keybase&lt;/a&gt; - Secure groups, files, and chat for everyone! &lt;a href=&quot;https://github.com/keybase&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://krisp.ai/&quot;&gt;Krisp&lt;/a&gt; - An AI-powered noise cancelling app that mutes background noise during calls.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.larksuite.com/en_us/&quot;&gt;Lark&lt;/a&gt; - The Next-Gen Collaboration Suite. All your chats, meetings, calendars, docs, and emails in one place. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://limechat.net/mac/&quot;&gt;LimeChat&lt;/a&gt; - Open-source IRC client for Mac OS X. &lt;a href=&quot;https://github.com/psychs/limechat&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mastodon.social/&quot;&gt;Mastodon&lt;/a&gt; - Your self-hosted, globally interconnected microblogging community &lt;a href=&quot;https://joinmastodon.org/apps&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/mastodon/mastodon&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://matrix.org/&quot;&gt;Matrix&lt;/a&gt; - An open network for secure, decentralised communication! &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mattermost.com/download/&quot;&gt;Mattermost&lt;/a&gt; - Open-source team collaboration platform. &lt;a href=&quot;https://github.com/mattermost/mattermost&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://misskey-hub.net/&quot;&gt;Misskey&lt;/a&gt; - 🌎 A completely free and open interplanetary microblogging platform 🚀 &lt;a href=&quot;https://github.com/misskey-dev/misskey&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://muzzleapp.com/&quot;&gt;Muzzle&lt;/a&gt; - A simple mac app to silence embarrassing notifications while screensharing.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://presentify.compzets.com/&quot;&gt;Presentify&lt;/a&gt; - A mac app to draw on your screen while on calls, highlight your cursor, and more. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rambox.pro/&quot;&gt;Rambox&lt;/a&gt; - Messaging and emailing app that combines common web applications into one. &lt;a href=&quot;https://github.com/saenzramiro/rambox&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://signal.org/download/&quot;&gt;Signal Desktop&lt;/a&gt; - Fast, simple, secure. Privacy that fits in your pocket. &lt;a href=&quot;https://github.com/signalapp/Signal-Desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://slack.com/downloads/mac&quot;&gt;Slack&lt;/a&gt; - Awesome tool for team collaboration and communication. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getstack.app/&quot;&gt;Stack&lt;/a&gt; - Workspace browser for organizing multiple web apps on one screen.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://teams.live.com/&quot;&gt;Teams&lt;/a&gt; - Free online meetings and video calls&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.teambition.com&quot;&gt;Teambition&lt;/a&gt; - Team collaboration tool for tasks, schedules, files, and discussions. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://desktop.telegram.org&quot;&gt;Telegram&lt;/a&gt; - Messaging app with a focus on speed and security. &lt;a href=&quot;https://github.com/overtake/TelegramSwift&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.apple.com/us/app/telegram/id747648890?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/us/app/textual-7/id1262957439?platform=mac&quot;&gt;Textual&lt;/a&gt; - Internet Relay Chat (IRC) client. &lt;a href=&quot;https://github.com/Codeux-Software/Textual&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.apple.com/us/app/telegram/id747648890?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://furnacecreek.org/unite/&quot;&gt;Unite&lt;/a&gt; - The only native GroupMe app for Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://wavebox.io&quot;&gt;Wavebox&lt;/a&gt; - Browser workspace for organizing web apps and team tools.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/wechat/id836500024?platform=mac&quot;&gt;WeChat&lt;/a&gt; - Official WeChat app for Mac. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://weechat.org/&quot;&gt;WeeChat&lt;/a&gt; - The extensible command-line chat client. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/us/app/whatsapp-desktop/id1147396723?platform=mac&quot;&gt;WhatsApp Desktop&lt;/a&gt; - Available in the Mac App Store, Whatsapp for Desktop. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mezon.ai/&quot;&gt;Mezon&lt;/a&gt; - A new way to communicate with your team. It&#39;s free, faster, better organized, better for WFH. &lt;a href=&quot;https://github.com/mezonai/mezon&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Email Clients&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://airmailapp.com&quot;&gt;Airmail&lt;/a&gt; - Fast email client. For both Mac OS and iOS.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://canarymail.io/&quot;&gt;CanaryMail&lt;/a&gt; - Secure email app for Mac and iPhone with built-in PGP Support and AI assistance. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/canary-mail-email-meet-ai/id1236045954?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/vladimiry/ElectronMail&quot;&gt;ElectronMail&lt;/a&gt; - An Electron-based unofficial desktop client for ProtonMail. &lt;a href=&quot;https://github.com/vladimiry/ElectronMail&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.foxmail.com/mac/en&quot;&gt;Foxmail&lt;/a&gt; - Fast email client. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://smallcubed.com/&quot;&gt;MailTags&lt;/a&gt; - Use tags to organize email and schedule.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getmailspring.com/&quot;&gt;Mailspring&lt;/a&gt; - A beautiful, fast, and fully open source mail client. &lt;a href=&quot;https://github.com/Foundry376/Mailspring&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.nylas.com/&quot;&gt;N1&lt;/a&gt; - Extensible, open-source mail app, free for developers and $7/month for Pro. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nylas.com/nylas-mail/&quot;&gt;Nylas Mail&lt;/a&gt; - Extensible desktop mail app built on the modern web. &lt;a href=&quot;https://github.com/nylas/nylas-mail&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://polymail.io/&quot;&gt;Polymail&lt;/a&gt; - Simple, beautiful and powerful email client. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.postbox-inc.com&quot;&gt;Postbox&lt;/a&gt; - Powerful, simple and beautiful email client, need to pay for a license.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sparkmailapp.com/&quot;&gt;Spark&lt;/a&gt; - Fast email client. For both Mac OS and iOS.&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.mozilla.org/en-US/thunderbird/&quot;&gt;ThunderBird&lt;/a&gt; - Software that makes email easier. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tutanota.com/&quot;&gt;Tutanota&lt;/a&gt; - Encrypted email focused on security and privacy. &lt;a href=&quot;https://github.com/tutao/tutanota&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mail.edison.tech/mac&quot;&gt;Edison Mail&lt;/a&gt; - A customisable, simple, and beautiful email client. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://skiff.com/mail&quot;&gt;Skiff Mail&lt;/a&gt; - Encrypted &amp;amp; Decentralized Email -- available on web, iOS/Android, and macOS. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/skiff-org/skiff-mail&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;File Sharing&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cyberduck.io&quot;&gt;Cyberduck&lt;/a&gt; - Free FTP, SFTP, WebDAV, S3, Backblaze B2, Azure and OpenStack Swift browser. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://dropshare.app&quot;&gt;Dropshare&lt;/a&gt; - File sharing tool for screenshots, screen recordings, and other files.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://fivedetails.com/flow/&quot;&gt;Flow&lt;/a&gt; - Award-winning, beautiful, fast, and reliable FTP + SFTP client.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://localsend.org/&quot;&gt;LocalSend&lt;/a&gt; - An open-source cross-platform alternative to AirDrop. &lt;a href=&quot;https://github.com/localsend/localsend&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/grishka/NearDrop&quot;&gt;NearDrop&lt;/a&gt; - An unofficial Google Nearby Share/Quick Share app for macOS. &lt;a href=&quot;https://github.com/localsend/localsend&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rcloneui.com/&quot;&gt;Rclone UI&lt;/a&gt; - The GUI for Rclone &amp;amp; S3. &lt;a href=&quot;https://apps.apple.com/app/rclone-ui/id6756127598?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/rclone-ui/rclone-ui&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://panic.com/transmit/&quot;&gt;Transmit&lt;/a&gt; - Highly flexible and intuitive FTP client, supports SFTP, S3 and iDisk/WebDAV.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Data Recovery Tools&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.prosofteng.com/mac-data-recovery&quot;&gt;Data Rescue&lt;/a&gt; - Comprehensive and professional data recovery tool for most cases.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.alsoft.com/DiskWarrior/&quot;&gt;DiskWarrior&lt;/a&gt; - The world’s most advanced repair and recovery tool for Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.r-studio.com/data_recovery_macintosh/&quot;&gt;R-Studio for Mac&lt;/a&gt; - Data recovery tool for damaged, deleted, or formatted disks.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://shirt-pocket.com/SuperDuper/SuperDuperDescription.html&quot;&gt;SuperDuper!&lt;/a&gt; - Painless fully bootable disk backups.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.cleverfiles.com/&quot;&gt;Disk Drill&lt;/a&gt; - Free data recovery tool. Also has a PRO version. &lt;a href=&quot;https://apps.apple.com/us/app/disk-drill-media-recovery/id431224317?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Audio and Video Tools&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macroplant.com/adapter&quot;&gt;Adapter&lt;/a&gt; - Free audio, video and image conversion software. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Aegisub/Aegisub&quot;&gt;Aegisub&lt;/a&gt; - Open-source subtitle editor with timing and styling tools. &lt;a href=&quot;https://github.com/Aegisub/Aegisub/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/us/app/audio-profile-manager/id1484150558?ls=1&amp;amp;platform=mac&quot;&gt;Audio Profile Manager&lt;/a&gt; - Audio device manager for saving input and output setups. &lt;a href=&quot;https://apps.apple.com/us/app/audio-profile-manager/id1484150558?ls=1&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ardour.org/&quot;&gt;Ardour&lt;/a&gt; - Cross-platform audio software for multi-track recording and editing. &lt;a href=&quot;https://github.com/Ardour/ardour&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.audacityteam.org/&quot;&gt;Audacity&lt;/a&gt; - Free, open-source, cross-platform audio software for multi-track recording and editing. &lt;a href=&quot;https://github.com/audacity/audacity&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.rogueamoeba.com/audiohijack/&quot;&gt;Audio Hijack&lt;/a&gt; - Record any application&#39;s audio, including VoIP calls from Skype, web streams from Safari, and much more.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.bemyears.cn/&quot;&gt;BeMyEars&lt;/a&gt; - Live captioning tool with on-device transcription and multilingual support. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ExistentialAudio/BlackHole&quot;&gt;BlackHole&lt;/a&gt; - Freemium, open-source virtual output/input audio driver for recording/routing internal audio. &lt;a href=&quot;https://github.com/ExistentialAudio/BlackHole&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/ExistentialAudio/BlackHole&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/camera-preview&quot;&gt;Camera Preview&lt;/a&gt; - Preview your webcam, take photos, and use it as a mirror. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1632827132?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/AnaghSharma/Carol&quot;&gt;Carol&lt;/a&gt; - A minimal and beautiful lyrics app for macOS. &lt;a href=&quot;https://github.com/AnaghSharma/Carol&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cogx.org/&quot;&gt;Cog&lt;/a&gt; - Free, open-source audio player. &lt;a href=&quot;https://github.com/losnoco/cog&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/cog-kode54/id1630499622?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.blackmagicdesign.com/products/davinciresolve/&quot;&gt;DaVinci Resolve&lt;/a&gt; - Free, cross-platform video editing, color grading, video effects and audio editing software.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mac.eltima.com/media-player.html&quot;&gt;Elmedia Player&lt;/a&gt; - Media player with broad audio and video format support.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pantafive/fader&quot;&gt;Fader&lt;/a&gt; - Menu bar volume mixer with per-app volume, one-click output switching, and Bluetooth headphone control. &lt;a href=&quot;https://github.com/pantafive/fader&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ronitsingh10/FineTune&quot;&gt;FineTune&lt;/a&gt; - Per-app volume controller with multi-device output and 10-band EQ. &lt;a href=&quot;https://github.com/ronitsingh10/FineTune&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://freetubeapp.io/&quot;&gt;FreeTube&lt;/a&gt; - Open source desktop YouTube client built with privacy in mind. &lt;a href=&quot;https://github.com/FreeTubeApp/FreeTube&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sindresorhus/gifski-app&quot;&gt;Gifski&lt;/a&gt; - Convert videos to high-quality GIFs. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/no/app/gifski/id1351639930?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://handbrake.fr/&quot;&gt;HandBrake&lt;/a&gt; - Video transcoder for converting media to modern formats. &lt;a href=&quot;https://github.com/HandBrake/HandBrake&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://hydrogen-music.org/&quot;&gt;Hydrogen&lt;/a&gt; - Professional yet simple and intuitive pattern-based drum programming for GNU/Linux. &lt;a href=&quot;https://github.com/hydrogen-music/hydrogen&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.ffworks.net/&quot;&gt;ffWorks&lt;/a&gt; - Comprehensive Media Tool for macOS. Making High Quality Video Encoding Accessible for Everyone.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://iina.io/&quot;&gt;IINA&lt;/a&gt; - The modern video player for macOS. Based on mpv, the powerful media player project. &lt;a href=&quot;https://github.com/iina/iina&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jellyfin/jellyfin&quot;&gt;Jellyfin&lt;/a&gt; - The Free Software Media System. &lt;a href=&quot;https://jellyfin.org&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sozercan/kaset&quot;&gt;Kaset&lt;/a&gt; - Native YouTube Music client for macOS. &lt;a href=&quot;https://github.com/sozercan/kaset&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://kodi.tv/&quot;&gt;Kodi&lt;/a&gt; - Open-source media center for video, music, pictures, and more. &lt;a href=&quot;https://github.com/xbmc/xbmc&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lmms.io&quot;&gt;LMMS&lt;/a&gt; - Open-source digital audio workstation for music production. &lt;a href=&quot;https://github.com/lmms/lmms&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mifi/lossless-cut&quot;&gt;LosslessCut&lt;/a&gt; - Cross platform tool for quick and lossless video and audio trimming using ffmpeg. &lt;a href=&quot;https://github.com/mifi/lossless-cut&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ateymoori/lyricglow&quot;&gt;LyricGlow&lt;/a&gt; - Synced lyrics player with word-by-word glow effects. &lt;a href=&quot;https://github.com/ateymoori/lyricglow&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ddddxxx/LyricsX&quot;&gt;LyricsX&lt;/a&gt; - Lyrics for iTunes, Spotify and Vox. &lt;a href=&quot;https://github.com/ddddxxx/LyricsX&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/samzong/macmusicplayer&quot;&gt;MacMusicPlayer&lt;/a&gt; - A clean, lightweight music player for macOS users. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/section83/MacYTDL&quot;&gt;MacYTDL&lt;/a&gt; - A macOS GUI front-end for the youtube-dl video downloader. &lt;a href=&quot;https://github.com/section83/MacYTDL&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/TheAcharya/MarkerData&quot;&gt;Marker Data&lt;/a&gt; - The avant-garde Marker extraction application crafted for Final Cut Pro. &lt;a href=&quot;https://github.com/TheAcharya/MarkerData&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://markvapps.com/metadatics&quot;&gt;Metadatics&lt;/a&gt; - Advanced Audio Metadata Editor. &lt;a href=&quot;https://apps.apple.com/us/app/metadatics/id554883654?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mp3tag.app/&quot;&gt;Mp3tag&lt;/a&gt; - A powerful and easy-to-use tool to edit metadata of audio files. &lt;a href=&quot;https://apps.apple.com/app/id1532597159/?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mixxx.org/&quot;&gt;Mixxx&lt;/a&gt; - The most advanced free DJ software. &lt;a href=&quot;https://github.com/mixxxdj/mixxx&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://evilcult.github.io/moviecatcher/&quot;&gt;Movie Catcher&lt;/a&gt; - Tool for finding, streaming, and offline downloading movies. &lt;a href=&quot;https://github.com/EvilCult/moviecatcher&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.mpv.io/&quot;&gt;mpv&lt;/a&gt; - Free, open-source, and cross-platform media player. &lt;a href=&quot;https://github.com/mpv-player/mpv&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://musescore.org/&quot;&gt;MuseScore&lt;/a&gt; - Free, open-source music notation software. &lt;a href=&quot;https://github.com/musescore/MuseScore&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://museeks.io&quot;&gt;Museeks&lt;/a&gt; - A simple, clean and cross-platform music player. &lt;a href=&quot;https://github.com/martpie/museeks&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://muxie.duhnnie.com&quot;&gt;Muxie&lt;/a&gt; - &lt;a href=&quot;http://Last.fm&quot;&gt;Last.fm&lt;/a&gt; scrobbler for Apple Music, Spotify Desktop, iPod Classic, Rockbox devices and some others. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://natrongithub.github.io/&quot;&gt;Natron&lt;/a&gt; - Open-source node-based compositing software. &lt;a href=&quot;https://github.com/MrKepzie/Natron&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nuclear.js.org/&quot;&gt;Nuclear&lt;/a&gt; - Streaming music player that finds free music for you. &lt;a href=&quot;https://github.com/nukeop/nuclear&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://perian.org/#download&quot;&gt;Perian&lt;/a&gt; - (&lt;strong&gt;No longer under active development&lt;/strong&gt;) &lt;s&gt;Let QuickTime play all the common formats of free plug-ins&lt;/s&gt;. &lt;a href=&quot;https://github.com/MaddTheSane/perian&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://picard.musicbrainz.org/&quot;&gt;MusicBrainz Picard&lt;/a&gt; - Cross-platform music tagger written in Python. &lt;a href=&quot;https://github.com/metabrainz/picard&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/photangralenphie/MyMedia&quot;&gt;MyMedia&lt;/a&gt; - Display and watch your local movie and TV show library. &lt;a href=&quot;https://github.com/photangralenphie/MyMedia&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mafintosh.github.io/playback/&quot;&gt;Playback&lt;/a&gt; - Experimental video player. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/mafintosh/playback&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://plugformac.com&quot;&gt;Plug&lt;/a&gt; - Discover and listen to music from Hype Machine. &lt;a href=&quot;https://github.com/wulkano/Plug&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1514182074?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/kushalpandya/Petrichor&quot;&gt;Petrichor&lt;/a&gt; - Offline music player with broad format support, lyrics, playlists, and queue management. &lt;a href=&quot;https://github.com/kushalpandya/Petrichor&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://popcorn-time.site/&quot;&gt;Popcorn Time&lt;/a&gt; - Streaming app for browsing and watching torrent-based movies.&lt;a href=&quot;https://github.com/popcorn-official/popcorn-desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://okaapps.com/product/1612400976&quot;&gt;Potplayer X&lt;/a&gt;- a Video Audio Player. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/cn/app/potplayer-x-%E9%9F%B3%E8%A7%86%E9%A2%91%E6%92%AD%E6%94%BE%E5%99%A8/id1612400976?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/bazalp/pulp/releases&quot;&gt;Pulp&lt;/a&gt; - Audio sample manager. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/bazalp/pulp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/YashvardhanATRgithub/Sangeet&quot;&gt;Sangeet&lt;/a&gt; - A beautiful audiophile music player with 10-band EQ, karaoke mode, and time-synced lyrics. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.telestream.net/screenflow/&quot;&gt;ScreenFlow&lt;/a&gt; - Screencasting and video editing software.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.shotcut.org&quot;&gt;Shotcut&lt;/a&gt; - Free open-source video editor. &lt;a href=&quot;https://github.com/mltframework/shotcut&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sonoramac/Sonora&quot;&gt;Sonora&lt;/a&gt; - Minimal, beautifully designed music player. &lt;a href=&quot;https://github.com/sonoramac/Sonora&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ralph/Spotifly&quot;&gt;Spotifly&lt;/a&gt; - Lightweight Spotify player focused on fast playback control. &lt;a href=&quot;https://github.com/ralph/Spotifly&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/kmikiy/SpotMenu&quot;&gt;SpotMenu&lt;/a&gt; - Spotify and iTunes in your menu bar. &lt;a href=&quot;https://github.com/kmikiy/SpotMenu&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.stremio.com/&quot;&gt;Stremio&lt;/a&gt; - Media center for movies, TV, live channels, and streaming sources. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://stringed.buenosapps.com/&quot;&gt;Stringed 2&lt;/a&gt; - Music practice software designed to help users learn how to play their favorite songs.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://synfig.org&quot;&gt;Synfig Studio&lt;/a&gt; - Synfig Studio is free, open-source 2D animation software. &lt;a href=&quot;https://github.com/synfig/synfig&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nbonamy/trax&quot;&gt;trax&lt;/a&gt; - Music library manager with audio conversion and tag editing. &lt;a href=&quot;https://github.com/nbonamy/trax&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.catnapgames.com/tiny-player-for-mac/&quot;&gt;Tiny Player&lt;/a&gt; - As the name suggests, a tiny player. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.tuneful.dev&quot;&gt;Tuneful&lt;/a&gt; - Controller for Spotify and Apple Music from the menu bar or mini player. &lt;a href=&quot;https://apps.apple.com/app/tuneful/id6739804295?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.videolan.org/index.html&quot;&gt;VLC&lt;/a&gt; - Open-source multimedia player for most audio, video, and streaming formats. &lt;a href=&quot;https://github.com/videolan/vlc&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://vox.rocks/mac-music-player&quot;&gt;VOX Player&lt;/a&gt; - High-definition audio player for Mac and iPhone. Music just sounds better! &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/VidCrop/6752624705?platform=mac&quot;&gt;VidCrop&lt;/a&gt; - A simple video cropping tool that supports multiple formats and precise trimming.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tmkk.undo.jp/xld/index_e.html&quot;&gt;XLD&lt;/a&gt; - Tool to decode, convert and play various &#39;lossless&#39; audio files. &lt;a href=&quot;https://code.google.com/archive/p/xld/source&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/recordia&quot;&gt;Recordia&lt;/a&gt; - Record audio directly from the menu bar or with a global keyboard shortcut. &lt;a href=&quot;https://apps.apple.com/app/id1529006487?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://okaapps.com/product/1470926410#&quot;&gt;Omniplayer&lt;/a&gt; - Best media player on Mac, support almost all format. &lt;a href=&quot;https://apps.apple.com/app/id1470926410?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sozercan/kaset&quot;&gt;Kaset&lt;/a&gt; - Open-source YouTube Music client with library, lyrics, podcasts, and playback controls. &lt;a href=&quot;https://github.com/sozercan/kaset&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://th-ch.github.io/youtube-music/&quot;&gt;YouTube Music&lt;/a&gt; - Desktop player for YouTube Music with plugin support. &lt;a href=&quot;https://github.com/th-ch/youtube-music/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ytmdesktop.app/&quot;&gt;YouTube Music Desktop&lt;/a&gt; - Free cross platform Desktop Player for YouTube Music. &lt;a href=&quot;https://github.com/ytmdesktop/ytmdesktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.engineerdraft.com/en/yplayer/&quot;&gt;YPlayer&lt;/a&gt; - A multifunctional app for live captions, audio/video transcription, and subtitle translation.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/musicer/6745227444?platform=mac&quot;&gt;Musicer&lt;/a&gt; - A lightweight local music player that supports multiple formats for enjoying music anytime.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/wandercn/fmusic&quot;&gt;Fmusic&lt;/a&gt; - A fmusic is a open source music player on SwiftUI.&lt;a href=&quot;https://github.com/wandercn/fmusic&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Audio Record and Process&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/CapSoftware/&quot;&gt;CapSoftware&lt;/a&gt; - An open-source alternative to Loom. Beautiful, shareable screen recording tool. &lt;a href=&quot;https://github.com/CapSoftware/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.apple.com/mac/garageband/&quot;&gt;GarageBand&lt;/a&gt; - Digital audio workstation for recording and music production. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/cn/app/garageband/id682658836?l=zh&amp;amp;ls=1&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.apple.com/logic-pro/&quot;&gt;Logic Pro X&lt;/a&gt; - Professional digital audio workstation for music and audio production. &lt;a href=&quot;https://apps.apple.com/cn/app/logic-pro-x/id634148309?l=zh&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://segue.npearce.me/&quot;&gt;Segue&lt;/a&gt; - Broadcast audio playout with crossfade, trim, ramp timers, and pause beds for live radio and podcasts. &lt;a href=&quot;https://github.com/pearcenuk/Segue&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/stargatedaw/stargate&quot;&gt;Stargate DAW&lt;/a&gt; - An all-in-one digital audio workstation (DAW) and plugin suite. &lt;a href=&quot;https://github.com/aria2&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://denzam.github.io/SystemEQ-for-Mac/&quot;&gt;SystemEQ for Mac&lt;/a&gt; - Free, open-source system-wide parametric equalizer with AutoEQ presets, hearing calibration, and real-time visualization. &lt;a href=&quot;https://github.com/denzam/SystemEQ-for-Mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Download Management Tools&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://aria2.github.io/&quot;&gt;aria2&lt;/a&gt; - Lightweight multi-protocol &amp;amp; multi-source command-line download utility. &lt;a href=&quot;https://github.com/aria2&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://software.charliemonroe.net/downie.php&quot;&gt;Downie&lt;/a&gt; - Video downloader for macOS with support for YouTube and other 1200 sites.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://deluge-torrent.org/&quot;&gt;Deluge&lt;/a&gt; - Deluge is a lightweight, Free Software, cross-platform BitTorrent client. &lt;a href=&quot;https://dev.deluge-torrent.org/wiki/Development&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mac.eltima.com/download-manager.html&quot;&gt;FOLX&lt;/a&gt; - Free download manager for Mac OS X with a true Mac-style interface. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.freedownloadmanager.org/&quot;&gt;Free Download Manager&lt;/a&gt; - A powerful, easy-to-use, and completely free download accelerator and manager. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/thsnkhn/harbor&quot;&gt;Harbor&lt;/a&gt; - Open-source download manager for HTTP(S), magnet links, and &lt;code&gt;.torrent&lt;/code&gt; files. &lt;a href=&quot;https://github.com/thsnkhn/harbor&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://jdownloader.org/&quot;&gt;JDownloader&lt;/a&gt; - Open-source download manager for links, files, and hosted content. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://motrix.app/&quot;&gt;Motrix&lt;/a&gt; - Download manager for HTTP, FTP, BitTorrent, magnet links, and more. &lt;a href=&quot;https://github.com/agalwood/Motrix&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.neatdownloadmanager.com/&quot;&gt;Neat Download Manager&lt;/a&gt; - Lightweight download manager with an optimized transfer engine. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.qbittorrent.org/&quot;&gt;qBittorrent&lt;/a&gt; - A project aims to provide an open-source software alternative to µTorrent. &lt;a href=&quot;https://github.com/qbittorrent/qBittorrent&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://fiplab.com/apps/download-shuttle-for-mac&quot;&gt;Shuttle&lt;/a&gt; - Easy Download Manager for any links.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://swads.app/&quot;&gt;Swads&lt;/a&gt; - Synology Download Station Client, modern, native, and intuitively redesign.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.transmissionbt.com/&quot;&gt;Transmission&lt;/a&gt; - Fast, easy, free BitTorrent Client. &lt;a href=&quot;https://github.com/transmission/transmission&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://xgetter.com/&quot;&gt;XGetter&lt;/a&gt; - Media downloader for video and audio from major websites. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://you-get.org/&quot;&gt;You-Get&lt;/a&gt; - Tiny command-line utility to download media contents (videos, audios, images) from the web. &lt;a href=&quot;https://github.com/soimort/you-get&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rg3/youtube-dl/&quot;&gt;youtube-dl&lt;/a&gt; - Command-line program to download videos from &lt;a href=&quot;http://YouTube.com&quot;&gt;YouTube.com&lt;/a&gt; and other video sites &lt;a href=&quot;https://github.com/rg3/youtube-dl/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Cloud Storage&lt;/h2&gt; 
&lt;p&gt;&lt;em&gt;I recommend using online storage with Mac clients&lt;/em&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.arqbackup.com/&quot;&gt;Arq&lt;/a&gt; - Cloud storage backup client that supports AWS, GCP, DropBox, and more.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.carbonite.com/learn/how-to-backup-mac/&quot;&gt;Carbonite&lt;/a&gt; - Carbonite can protect your Mac from all of the most common forms of data loss.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.dropbox.com/&quot;&gt;Dropbox&lt;/a&gt; - Cloud storage and file synchronization service. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mega.nz&quot;&gt;Mega&lt;/a&gt; - Free cloud service, offers 50GB free storage. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nextcloud.com/&quot;&gt;NextCloud&lt;/a&gt; - Actively maintained fork of ownCloud, faster and completely open-source &lt;a href=&quot;https://github.com/nextcloud&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://owncloud.org&quot;&gt;ownCloud&lt;/a&gt; - Cloud storage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.seafile.com/&quot;&gt;Seafile&lt;/a&gt; - Reliable and High Speed File Sync and Share.&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Input Methods&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/utatti/kawa&quot;&gt;Kawa&lt;/a&gt; - Better input source switcher for OS X. &lt;a href=&quot;https://github.com/utatti/kawa&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/reg2005/langSwitcher&quot;&gt;LangSwitcher&lt;/a&gt; - Keyboard layout converter for mistyped text. &lt;a href=&quot;https://github.com/reg2005/langSwitcher&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://matthewpalmer.net/rocket/&quot;&gt;Rocket&lt;/a&gt; - Makes typing emoji faster and easier using Slack-style shortcuts. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/lessmess-dev/touch-emoji&quot;&gt;Touch Emoji&lt;/a&gt; - Emoji picker for MacBook Pro Touch Bar. &lt;a href=&quot;https://github.com/lessmess-dev/touch-emoji&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.houdah.com/type2Phone/&quot;&gt;Type2Phone&lt;/a&gt; - Use Your Mac as Keyboard for iPhone, iPad &amp;amp; Apple TV.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Serpentiel/betterglobekey&quot;&gt;betterglobekey&lt;/a&gt; - Make macOS Globe key great again! &lt;a href=&quot;https://github.com/Serpentiel/betterglobekey&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://inputsource.pro/&quot;&gt;InputSourcePro&lt;/a&gt; - Tool for automatically switching input sources by app or website. &lt;a href=&quot;https://github.com/runjuu/InputSourcePro&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Voice-to-Text&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/aiko&quot;&gt;Aiko&lt;/a&gt; - High-quality on-device transcription. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1666327168?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/azex-ai/speech&quot;&gt;Azex Speech&lt;/a&gt; - Voice input tuned for mixed Chinese-English dictation in AI and crypto work. &lt;a href=&quot;https://github.com/azex-ai/speech&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/chidiwilliams/buzz&quot;&gt;buzz&lt;/a&gt; - Transcribes and translates audio offline on your personal computer. Powered by OpenAI&#39;s Whisper. &lt;a href=&quot;https://github.com/chidiwilliams/buzz&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://enviouswispr.com&quot;&gt;EnviousWispr&lt;/a&gt; - Sub-second dictation running Whisper/Parakeet locally with privacy-first AI text polish. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/evoleinik/fnkey&quot;&gt;FnKey&lt;/a&gt; - Push-to-talk voice input tool that pastes transcribed text instantly. &lt;a href=&quot;https://github.com/evoleinik/fnkey&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/kdcokenny/OpenDictation&quot;&gt;OpenDictation&lt;/a&gt; - Open-source dictation utility with local and cloud speech-to-text. &lt;a href=&quot;https://github.com/kdcokenny/OpenDictation&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/larryxiao/openquack&quot;&gt;OpenQuack&lt;/a&gt; - Privacy-first voice dictation tool that transcribes locally with WhisperKit and inserts text at the cursor with a hotkey. &lt;a href=&quot;https://github.com/larryxiao/openquack&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/tover0314-w/opentypeless&quot;&gt;OpenTypeless&lt;/a&gt; - Open-source AI voice input that types polished text into any app. &lt;a href=&quot;https://github.com/tover0314-w/opentypeless&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ottex.ai&quot;&gt;Ottex&lt;/a&gt; - AI dictation tool that formats text for the app or site you are using.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rcourtman/presspeech&quot;&gt;Presspeech&lt;/a&gt; - Native push-to-talk local dictation app for Apple Silicon Macs using Parakeet TDT v3 (CoreML/ANE). &lt;a href=&quot;https://github.com/rcourtman/presspeech&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://spokenly.app/&quot;&gt;Spokenly&lt;/a&gt; - Voice-to-text with 100+ languages, offline mode, and AI-powered formatting.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tambourinevoice.com/&quot;&gt;Tambourine&lt;/a&gt; - Open-source, customizable AI voice dictation that works in any app. &lt;a href=&quot;https://github.com/kstonekuan/tambourine-voice/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.typewhisper.com&quot;&gt;TypeWhisper&lt;/a&gt; - Local Whisper-based speech-to-text with a global hotkey. &lt;a href=&quot;https://github.com/TypeWhisper/typewhisper-mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tryvoiceink.com/&quot;&gt;VoiceInk&lt;/a&gt; - Real-time speech-to-text app. &lt;a href=&quot;https://github.com/Beingpax/VoiceInk&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/xingbofeng/VoxFlow&quot;&gt;VoxFlow&lt;/a&gt; - Open-source voice input workspace with local and cloud ASR, OCR, history, and coding-agent workflows. &lt;a href=&quot;https://github.com/xingbofeng/VoxFlow&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/hehehai/voxt&quot;&gt;Voxt&lt;/a&gt; - Hold-to-talk voice input tool with AI transcription rules per app and URL, and built-in translation. &lt;a href=&quot;https://github.com/hehehai/voxt&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://epicenter.md/whispering/&quot;&gt;Whispering&lt;/a&gt; - Multi-provider speech-to-text with AI transformations and keyboard shortcuts. &lt;a href=&quot;https://github.com/EpicenterHQ/epicenter/tree/main/apps/whispering&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://willowvoice.com/&quot;&gt;Willow Voice&lt;/a&gt; - AI dictation with automatic editing, style-matching, and noise optimization.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Browsers&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://arc.net/&quot;&gt;Arc&lt;/a&gt; - Browser with a distinctive workspace-style interface. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://brave.com/&quot;&gt;Brave&lt;/a&gt; - Web browser with an emphasis on privacy and speed. &lt;a href=&quot;https://github.com/brave/brave-browser/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://chatgpt.com/atlas/&quot;&gt;ChatGPT Atlas&lt;/a&gt; - Browser with ChatGPT built in. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.google.com/chrome/&quot;&gt;Chrome&lt;/a&gt; - Chrome, developed by Google &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.chromium.org/Home&quot;&gt;Chromium&lt;/a&gt; - Open-source browser project behind Google Chrome. &lt;a href=&quot;https://chromium.googlesource.com/chromium/src/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://github.com/ungoogled-software/ungoogled-chromium&quot;&gt;ungoogled-chromium&lt;/a&gt; - A lightweight approach to removing Google web service dependency. &lt;a href=&quot;https://github.com/ungoogled-software/ungoogled-chromium&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.firefox.com/&quot;&gt;Firefox&lt;/a&gt; - A free and open-source web browser developed by Mozilla. &lt;a href=&quot;https://hg.mozilla.org/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://librewolf.net&quot;&gt;LibreWolf&lt;/a&gt; - A fork of Firefox, focused on privacy, security and freedom. &lt;a href=&quot;https://gitlab.com/librewolf-community&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://helium.computer/&quot;&gt;Helium&lt;/a&gt; - Privacy-focused Chromium browser with built-in ad blocking. &lt;a href=&quot;https://github.com/imputnet/helium&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.microsoft.com/edge&quot;&gt;Microsoft Edge&lt;/a&gt; - Microsoft Edge, based on Chromium, but built by MS &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://minbrowser.org/&quot;&gt;Min&lt;/a&gt; - Fast, minimal browser that protects your privacy. &lt;a href=&quot;https://github.com/minbrowser/min&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.opera.com&quot;&gt;Opera&lt;/a&gt; - Experience faster, distraction-free browsing with Ad blocking, and browse privately. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.orabrowser.com/&quot;&gt;Ora&lt;/a&gt; - Open-source browser with spaces, tab management, and a vertical sidebar. &lt;a href=&quot;https://github.com/the-ora/browser&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://browser.kagi.com/&quot;&gt;Orion&lt;/a&gt; - Lightweight WebKit-based browser with support for Chrome and Firefox extensions. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.qutebrowser.org/&quot;&gt;qutebrowser&lt;/a&gt; - A keyboard-driven, vim-like browser based on Python and Qt. &lt;a href=&quot;https://github.com/qutebrowser/qutebrowser&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.apple.com/safari/&quot;&gt;Safari&lt;/a&gt; - Native browser for Macs. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/learn-anything/safari-extensions#readme&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tabbitbrowser.com/&quot;&gt;Tabbit&lt;/a&gt; - An AI-native browser that understands your context, chats with webpages, and automates tasks. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.torproject.org/projects/torbrowser.html&quot;&gt;Tor Browser&lt;/a&gt; - Privacy browser designed for anonymous web browsing. &lt;a href=&quot;https://gitlab.torproject.org/tpo/applications/tor-browser/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mullvad.net/en/download/browser/&quot;&gt;Mullvad Browser&lt;/a&gt; - Privacy browser focused on anti-fingerprinting protection. &lt;a href=&quot;https://gitlab.torproject.org/tpo/applications/mullvad-browser/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nuance-dev/Web&quot;&gt;Web&lt;/a&gt; - Minimal AI browser for macOS, built with SwiftUI. &lt;a href=&quot;https://github.com/nuance-dev/Web&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://vivaldi.com&quot;&gt;Vivaldi&lt;/a&gt; - The browser that puts you in control. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://browser.yandex.com/&quot;&gt;Yandex&lt;/a&gt; - The quick and secure browser from Yandex for computers. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://zen-browser.app/&quot;&gt;Zen&lt;/a&gt; - A beautifully designed, privacy-focused, and feature-rich browser &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/zen-browser/desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Translation Tools&lt;/h2&gt; 
&lt;p&gt;&lt;em&gt;(Or you could just use the Mac OS built-in dictionary)&lt;/em&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.deepl.com/en/app/&quot;&gt;DeepL&lt;/a&gt; - Best quality translations &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/tisfeng/Easydict&quot;&gt;Easydict&lt;/a&gt; - A concise dictionary and translator for looking up words and translating text. &lt;a href=&quot;https://github.com/tisfeng/Easydict&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://app.grammarly.com/&quot;&gt;Grammarly&lt;/a&gt; - Refine your english&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.itranslate.com/&quot;&gt;iTranslate&lt;/a&gt; - Translation app for text and web pages in multiple languages. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/umutcetinkaya/live-translator&quot;&gt;Live Translator&lt;/a&gt; - Real-time on-screen translation of any system audio (YouTube, podcasts, meetings) using OpenAI or Gemini. &lt;a href=&quot;https://github.com/umutcetinkaya/live-translator&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ludwig.guru&quot;&gt;Ludwig&lt;/a&gt; - Linguistic search engine that helps you to write better in English.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://gikken.co/mate-translate/mac&quot;&gt;Mate Translate&lt;/a&gt; - Translate in Safari and any app on macOS between 103 languages.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/cosZone/MoePeek&quot;&gt;MoePeek&lt;/a&gt; - Translation tool with text selection, OCR, clipboard, and manual input support. &lt;a href=&quot;https://github.com/cosZone/MoePeek&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nani.now&quot;&gt;Nani&lt;/a&gt; - Fast AI translation with explanations.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/yetone/openai-translator&quot;&gt;OpenAI Translator&lt;/a&gt; - Translation app and browser extension powered by AI models. &lt;a href=&quot;https://github.com/yetone/openai-translator&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://screentranslate.filient.ai/&quot;&gt;ScreenTranslate&lt;/a&gt; - Capture any area or select text to translate instantly, fully on-device. &lt;a href=&quot;https://github.com/hcmhcs/screenTranslate&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://translatium.app&quot;&gt;Translatium&lt;/a&gt; - Translation app for words, phrases, and images in 100+ languages. &lt;a href=&quot;https://github.com/webcatalog/translatium-desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.apple.com/us/app/translatium/id1547052291?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Education&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://leafyapp.uk/&quot;&gt;Leafy&lt;/a&gt; - Look up any word on screen with ⌥A, including in PDFs and images, and save it to a searchable local library. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://wokabulary.com/&quot;&gt;Wokabulary&lt;/a&gt; - Collect, practice, and organize your individual foreign language vocabulary. &lt;a href=&quot;https://apps.apple.com/app/apple-store/id1667619825?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Finance&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.pulseticker.app/&quot;&gt;Pulse&lt;/a&gt; - Native menu bar market tracker for US, Hong Kong and China stocks, crypto, indices, ETFs and portfolio P&amp;amp;L. &lt;a href=&quot;https://github.com/fatwang2/Pulse&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://submanager.app&quot;&gt;SubManager&lt;/a&gt; - Subscription tracker with renewal reminders. &lt;a href=&quot;https://apps.apple.com/app/submanager-subscription-list/id1632853914?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/sublist-subscription-list/id6757860829?platform=mac&quot;&gt;SubList&lt;/a&gt; - Track subscriptions, renewals, and spending in one place with reminders, analytics, and iCloud sync.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/simonsruggi/StockDock&quot;&gt;StockDock&lt;/a&gt; - Menu bar app for real-time stocks, ETFs, crypto and portfolio P&amp;amp;L. Privacy-first, no account, multi-currency. &lt;a href=&quot;https://github.com/simonsruggi/StockDock&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Encryption&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cryptomator.org/&quot;&gt;Cryptomator&lt;/a&gt; - Multi-platform transparent client-side encryption of your files in the cloud. &lt;a href=&quot;https://github.com/cryptomator/cryptomator/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/alichtman/deadbolt&quot;&gt;Deadbolt&lt;/a&gt; - Open-source file encryption tool. &lt;a href=&quot;https://github.com/alichtman/deadbolt&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Security Tools&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cleanerone.trendmicro.com/antivirus-one-for-mac/?utm_source=github&amp;amp;utm_medium=referral&amp;amp;utm_campaign=githubproject&quot;&gt;Antivirus One&lt;/a&gt; - Security scanner for malware, adware, and web threats. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/apple-store/id1068435535?pt=444218&amp;amp;ct=GitHub&amp;amp;mt=8&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://objective-see.com/products/blockblock.html&quot;&gt;BlockBlock&lt;/a&gt; - Me: &quot;Please alert me whenever anything is persistently installed.&quot; BlockBlock: &quot;You got it&quot; &lt;a href=&quot;https://github.com/objective-see/BlockBlock&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://craigjbass.github.io/clearancekit/&quot;&gt;ClearanceKit&lt;/a&gt; - Policy-based file access control tool for protected paths. &lt;a href=&quot;https://github.com/craigjbass/clearancekit&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://objective-see.com/products/dhs.html&quot;&gt;Dylib Hijack Scanner&lt;/a&gt; - Utility for scanning apps vulnerable to dylib hijacking. &lt;a href=&quot;https://github.com/objective-see/DylibHijackScanner&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://objective-see.com/products/kextviewr.html&quot;&gt;KextViewer&lt;/a&gt; - View all modules on that are loaded in the OS kernel. &lt;a href=&quot;https://github.com/objective-see/KextViewr&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://objective-see.com/products/knockknock.html&quot;&gt;KnockKnock&lt;/a&gt; - See what&#39;s persistently installed on your Mac. &lt;a href=&quot;https://github.com/objective-see/KnockKnock&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://halo.github.io/LinkLiar&quot;&gt;LinkLiar&lt;/a&gt; - Link-Layer MAC spoofing GUI for macOS. &lt;a href=&quot;https://github.com/halo/LinkLiar&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://objective-see.com/products/lockdown.html&quot;&gt;LockDown&lt;/a&gt; - Open-source tool for El Capitan that audits and remediates security configuration settings. &lt;a href=&quot;https://bitbucket.org/objective-see/lockdown&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getlockpaw.com&quot;&gt;Lockpaw&lt;/a&gt; - Menu bar screen guard for macOS — lock and unlock your screen with a hotkey. &lt;a href=&quot;https://github.com/sorkila/lockpaw&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dutkiewiczmaciej/MakLock&quot;&gt;MakLock&lt;/a&gt; - Lock any macOS app with Touch ID, Apple Watch proximity, or password. Full-screen blur overlay on all monitors. &lt;a href=&quot;https://github.com/dutkiewiczmaciej/MakLock&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://objective-see.com/products/lulu.html&quot;&gt;LuLu&lt;/a&gt; - LuLu is the free macOS firewall that aims to block unauthorized (outgoing) network traffic. &lt;a href=&quot;https://github.com/objective-see/LuLu&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/1&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.malwarebytes.com/mac-download/&quot;&gt;MalwareBytes&lt;/a&gt; - Malware scanner and removal tool. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.manasecurity.com/&quot;&gt;Mana Security&lt;/a&gt; - vulnerability management app for individuals. &lt;a href=&quot;https://github.com/manasecurity/mana-security-app&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://vulert.com&quot;&gt;Vulert&lt;/a&gt; - Dependency vulnerability monitoring service for open-source packages.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/No-Box-Dev/Noxkey&quot;&gt;NoxKey&lt;/a&gt; - Keychain-based secret manager for API keys and tokens with Touch ID. &lt;a href=&quot;https://github.com/No-Box-Dev/Noxkey&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://objective-see.com/products/oversight.html&quot;&gt;OverSight&lt;/a&gt; - Tool for monitoring microphone and webcam access. &lt;a href=&quot;https://github.com/objective-see/OverSight&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://paretosecurity.com/&quot;&gt;ParetoSecurity&lt;/a&gt; - A MenuBar app to automatically audit your Mac for basic security hygiene. &lt;a href=&quot;https://github.com/ParetoSecurity/pareto-mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/momenbasel/puresnitch&quot;&gt;PureSnitch&lt;/a&gt; - Open-source application firewall with a Little Snitch-style world map, rule manager, DNS over HTTPS, and pf-based blocking, with no telemetry. &lt;a href=&quot;https://github.com/momenbasel/puresnitch&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://objective-see.com/products/ransomwhere.html&quot;&gt;RansomWhere?&lt;/a&gt; - Generic Ransomware Detection. &lt;a href=&quot;https://github.com/objective-see/RansomWhere&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://northpole.security/&quot;&gt;Santa&lt;/a&gt; - Binary and file access authorization system. &lt;a href=&quot;https://github.com/northpolesec/santa&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/alichtman/stronghold&quot;&gt;stronghold&lt;/a&gt; - Easily configure MacOS security settings from the terminal. &lt;a href=&quot;https://github.com/alichtman/stronghold&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.mothersruin.com/software/SuspiciousPackage/&quot;&gt;Suspicious Package&lt;/a&gt; - An application for inspecting macOS installer packages. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Lennolium/swiftGuard&quot;&gt;swiftGuard&lt;/a&gt; - Tool for protecting USB ports from unauthorized access. &lt;a href=&quot;https://github.com/Lennolium/swiftGuard&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://objective-see.com/products/taskexplorer.html&quot;&gt;TaskExplorer&lt;/a&gt; - Explore all processes running on your Mac with TaskExplorer. &lt;a href=&quot;https://github.com/objective-see/TaskExplorer&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/HMAKT99/UnTouchID&quot;&gt;TouchBridge&lt;/a&gt; - Authenticate with your phone&#39;s fingerprint as a free Touch ID keyboard alternative. &lt;a href=&quot;https://github.com/HMAKT99/UnTouchID&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://objective-see.com/products/whatsyoursign.html&quot;&gt;What&#39;s Your Sign?&lt;/a&gt; - Finder extension for viewing a file&#39;s code-signing information. &lt;a href=&quot;https://github.com/objective-see/WhatsYourSign&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Proxy and VPN Tools&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/trailofbits/algo&quot;&gt;Algo&lt;/a&gt; - Personal IPSEC VPN in the cloud. &lt;a href=&quot;https://github.com/trailofbits/algo&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://clashbar.vercel.app/&quot;&gt;ClashBar&lt;/a&gt; - mihomo-powered menu bar proxy client. &lt;a href=&quot;https://github.com/Sitoi/ClashBar&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://clashx.tech&quot;&gt;ClashX Guide&lt;/a&gt; - Guides and troubleshooting tools for ClashX. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://1.1.1.1/&quot;&gt;Cloudflare WARP&lt;/a&gt; - Secure network service that routes traffic through Cloudflare. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getdashvpn.com/&quot;&gt;DashVPN&lt;/a&gt; - Smart-routing proxy client with support for VLESS, Shadowsocks, and HTTPS subscriptions. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/dash-vpn-for-outline-vless/id6758860923?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/hiddify/hiddify-app&quot;&gt;Hiddify&lt;/a&gt; - Multi-platform proxy client for managing subscriptions and multiple proxy protocols. &lt;a href=&quot;https://github.com/hiddify/hiddify-app&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://jumpervpn.com/&quot;&gt;Jumper VPN&lt;/a&gt; - VPN Client for Mac and other platforms, secure, fast VPN proxy.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getlantern.org&quot;&gt;Lantern&lt;/a&gt; - Free application that delivers fast, reliable and secure access to the open internet. &lt;a href=&quot;https://github.com/getlantern/lantern&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mullvad.net&quot;&gt;Mullvad VPN&lt;/a&gt; - Privacy-focused VPN service with anonymous accounts and flat-rate access. &lt;a href=&quot;https://github.com/mullvad/mullvadvpn-app&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getoutline.org/&quot;&gt;Outline&lt;/a&gt; - Outline makes it easy to create a VPN server, giving anyone access to the free and open internet. &lt;a href=&quot;https://github.com/Jigsaw-Code&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nadenco.gumroad.com/l/rerouteme&quot;&gt;RerouteMe&lt;/a&gt; - An easy one-click macOS Proxy Configuration app. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/qiuyuzhou/ShadowsocksX-NG&quot;&gt;ShadowsocksX-NG&lt;/a&gt; - Next generation of ShadowsocksX. &lt;a href=&quot;https://github.com/qiuyuzhou/ShadowsocksX-NG&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://shadowsocks.org/&quot;&gt;ShadowsocksX&lt;/a&gt; - Secure socks5 proxy, designed to protect your internet traffic. &lt;a href=&quot;https://github.com/shadowsocks/shadowsocks&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.shimovpn.com/&quot;&gt;Shimo&lt;/a&gt; - VPN Client for Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/zhuhaow/SpechtLite&quot;&gt;SpechtLite&lt;/a&gt; - Rule-based proxy app for macOS. &lt;a href=&quot;https://github.com/shadowsocks&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nssurge.com/&quot;&gt;Surge&lt;/a&gt; - Web developer tool and proxy utility for iOS 9.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.tinc-vpn.org&quot;&gt;tinc&lt;/a&gt; - Secure mesh VPN software. &lt;a href=&quot;https://www.tinc-vpn.org/git/browse?p=tinc&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://trusttunnel.org/&quot;&gt;TrustTunnel&lt;/a&gt; - A modern, open-source VPN protocol originally developed by AdGuard VPN. &lt;a href=&quot;https://github.com/TrustTunnel/TrustTunnel&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.tunnelbear.com&quot;&gt;Tunnelbear&lt;/a&gt; - Simple VPN service for secure browsing and location switching. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tunnelblick.net/downloads.html&quot;&gt;Tunnelblick&lt;/a&gt; - Free, open-source graphic user interface for OpenVPN on OS X. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/GeiserX/VPN-Bypass&quot;&gt;VPN Bypass&lt;/a&gt; - Menu bar app to route specific domains and services around your VPN. &lt;a href=&quot;https://github.com/GeiserX/VPN-Bypass&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://windscribe.com&quot;&gt;Windscribe&lt;/a&gt; - VPN and proxy service with ad blocking and flexible server switching. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tailscale.com/&quot;&gt;Tailscale&lt;/a&gt; - Mesh VPN for securely connecting devices, services, and users. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Utilities&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/glinford/dns-easy-switcher&quot;&gt;DNS Easy Switcher&lt;/a&gt; - Menu bar tool for switching DNS providers or custom resolvers. &lt;a href=&quot;https://github.com/glinford/dns-easy-switcher&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pilotmoon.com/dropshelf/&quot;&gt;Dropshelf&lt;/a&gt; - A drag and drop helper app for macOS. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://dropoverapp.com/&quot;&gt;Dropover&lt;/a&gt; - Temporary shelf for collecting and moving dragged files, text, and links. &lt;a href=&quot;https://apps.apple.com/us/app/dropover-easier-drag-drop/id1355679052?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/cmd-x/id6754665762?platform=mac&quot;&gt;cmd+x&lt;/a&gt; - Launch Activity Monitor with Ctrl+Opt+Delete, cut and move files in Finder with Cmd+X.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Clipboard Tools&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://samirpatil2000.github.io/products/buffer/&quot;&gt;Buffer&lt;/a&gt; - Lightweight native clipboard manager with bookmarks and OCR for images. &lt;a href=&quot;https://github.com/samirpatil2000/Buffer&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cleanclip.cc&quot;&gt;CleanClip&lt;/a&gt; - The cleanest Clipboard Manager on macOS, ever! &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getclipboard.app/&quot;&gt;Clipboard&lt;/a&gt; - Easy-to-use terminal clipboard manager for all platforms. &lt;a href=&quot;https://github.com/Slackadays/Clipboard&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.clipmenu.com&quot;&gt;ClipMenu&lt;/a&gt; - Clipboard manager for Mac OS X. &lt;a href=&quot;https://github.com/naotaka/ClipMenu&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/yarasaa/Clippy&quot;&gt;Clippy&lt;/a&gt; - Smart clipboard manager with content-aware previews, AI transformations, a built-in screenshot editor, and file converter. &lt;a href=&quot;https://github.com/yarasaa/Clippy&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/weiykong/ClipHistory&quot;&gt;ClipHistory&lt;/a&gt; - Lightweight native clipboard manager with instant hotkey popup, search, pinning, and text/image history. &lt;a href=&quot;https://github.com/weiykong/ClipHistory&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macmost.com/cliptools&quot;&gt;ClipTools&lt;/a&gt; - Clipboard utility set for quick copy, paste, and text cleanup tasks. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/cliptools/id1619348240?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://clipy-app.com/&quot;&gt;Clipy&lt;/a&gt; - Clipy is a Clipboard extension app for macOS. Based on ClipMenu. &lt;a href=&quot;https://github.com/Clipy/Clipy&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://hluk.github.io/CopyQ&quot;&gt;CopyQ&lt;/a&gt; - Clipboard Manager with Advanced Features. &lt;a href=&quot;https://github.com/hluk/CopyQ&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/cn/app/icopy-%E5%89%AA%E5%88%87%E6%9D%BF-%E5%BF%AB%E6%8D%B7%E5%9B%9E%E5%A4%8D%E5%B7%A5%E5%85%B7/id1638023723?platform=mac&quot;&gt;iCopy&lt;/a&gt; - Clipboard management, quick reply, efficiency multiplier artifact &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/cn/app/icopy-%E5%89%AA%E5%88%87%E6%9D%BF-%E5%BF%AB%E6%8D%B7%E5%9B%9E%E5%A4%8D%E5%B7%A5%E5%85%B7/id1638023723?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://en.toolinbox.net/iPaste&quot;&gt;iPaste&lt;/a&gt; - Lightweight and efficient clipboard tool. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1056935452?ls=1&amp;amp;at=1000lv4R&amp;amp;ct=iPaste_me&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://wangchujiang.com/paste-quick/&quot;&gt;Paste Quick&lt;/a&gt; - A simple, privacy-first clipboard manager. &lt;a href=&quot;https://apps.apple.com/app/paste-quick/6723903021?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pasteapp.me&quot;&gt;Paste&lt;/a&gt; - Smart clipboard history &amp;amp; snippets manager. &lt;a href=&quot;https://apps.apple.com/us/app/paste-clipboard-history-manager/id967805235?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/PasteBar/PasteBarApp&quot;&gt;PasteBar&lt;/a&gt; - Limitless, Free Clipboard Manager for Mac and Windows. &lt;a href=&quot;https://github.com/PasteBar/PasteBarApp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tapbots.com/pastebot/&quot;&gt;PasteBot&lt;/a&gt; - Powerful clipboard manager. &lt;a href=&quot;https://apps.apple.com/us/app/pastebot/id1179623856?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/pure-paste&quot;&gt;Pure Paste&lt;/a&gt; - Paste as plain text by default. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1611378436?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://saneclip.com&quot;&gt;SaneClip&lt;/a&gt; - Clipboard manager with history, privacy protections, and sensitive data detection. &lt;a href=&quot;https://github.com/sane-apps/SaneClip&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getsnippetcraft.com&quot;&gt;SnippetCraft&lt;/a&gt; - System-wide text expansion, snippet management, and clipboard history for macOS.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/TermiT/Flycut&quot;&gt;Flycut&lt;/a&gt; - Clean and simple clipboard manager for developers. &lt;a href=&quot;https://github.com/TermiT/Flycut&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://maccy.app/&quot;&gt;Maccy&lt;/a&gt; - Lightweight clipboard manager for macOS. &lt;a href=&quot;https://github.com/p0deje/Maccy&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://hukdoesn.github.io/Nimclip/&quot;&gt;Nimclip&lt;/a&gt; - Local-first clipboard history manager with search, tags, and image support. &lt;a href=&quot;https://github.com/hukdoesn/Nimclip&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Wcowin/OneClip&quot;&gt;OneClip&lt;/a&gt; - A simple and professional macOS clipboard manager. &lt;a href=&quot;https://github.com/Wcowin/OneClip&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://okaapps.com/product/1503649026&quot;&gt;uPaste&lt;/a&gt; - Clipboard history and snippets manager for organizing reusable copied content. &lt;a href=&quot;https://apps.apple.com/app/id1503649026?pt=119209922&amp;amp;ct=github&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mattDavo/Yippy&quot;&gt;Yippy&lt;/a&gt; - Clipboard manager with user-friendly UI. &lt;a href=&quot;https://github.com/mattDavo/Yippy&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/praneeth552/clipflow&quot;&gt;ClipFlow&lt;/a&gt; - Free clipboard history manager with terminal-style navigation. &lt;a href=&quot;https://github.com/praneeth552/clipflow&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/momenbasel/pesty&quot;&gt;Pesty&lt;/a&gt; - Free and open-source clipboard manager inspired by Paste, with a slide-up color-coded strip, pinboards, and search. &lt;a href=&quot;https://github.com/momenbasel/pesty&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Menu Bar Tools&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/tristan666666/agent-island&quot;&gt;Agent Island&lt;/a&gt; - MacBook notch companion for Claude Code and Codex sessions, showing live status and auto-resuming selected long-running tasks. &lt;a href=&quot;https://github.com/tristan666666/agent-island&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://anvilformac.com/&quot;&gt;Anvil&lt;/a&gt; - Tool for serving local static sites and Rack apps with simple URLs. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Ebullioscopic/Atoll&quot;&gt;Atoll&lt;/a&gt; - Turns the notch into a Dynamic Island-style hub for media controls, live activities, and quick utilities. &lt;a href=&quot;https://github.com/Ebullioscopic/Atoll&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.macbartender.com&quot;&gt;Bartender&lt;/a&gt; - Organize or hide menu bar icons on your Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cctop.app&quot;&gt;cctop&lt;/a&gt; - Open-source menu bar monitor that shows live status for AI coding sessions (Claude Code, Codex, opencode, pi) and jumps to the right terminal pane or editor window. &lt;a href=&quot;https://github.com/st0012/cctop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/CrashSystemZ/ChargeMonitor&quot;&gt;ChargeMonitor&lt;/a&gt; - Menu bar battery monitor with real-time charging stats and energy impact insights. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/CrashSystemZ/ChargeMonitor&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ericjypark/codex-island&quot;&gt;CodexIsland&lt;/a&gt; - Turns the MacBook notch into a Dynamic Island-style live activity for Claude Code and Codex CLI rate limits and spend, computed locally with no telemetry. &lt;a href=&quot;https://github.com/ericjypark/codex-island&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sanebar.com&quot;&gt;SaneBar&lt;/a&gt; - Privacy-first menu bar manager with hidden zones and automation rules. &lt;a href=&quot;https://github.com/sane-apps/SaneBar&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/sharptooth-bluetooth-hotkeys/id6748440814?platform=mac&quot;&gt;Sharptooth&lt;/a&gt; - Menu bar tool for managing Bluetooth devices with hotkeys and automation. &lt;a href=&quot;https://apps.apple.com/app/sharptooth-bluetooth-hotkeys/id6748440814?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/beardedspice/beardedspice&quot;&gt;BeardedSpice&lt;/a&gt; - Control web players and supported apps with your keyboard media keys. &lt;a href=&quot;https://github.com/beardedspice/beardedspice&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://theboring.name/&quot;&gt;Boring Notch&lt;/a&gt; - Turn your MacBook notch into a music and file control center. &lt;a href=&quot;https://github.com/TheBoredTeam/boring.notch&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/designsbymuzeer/Bye-Mac-App&quot;&gt;Bye AppQuit&lt;/a&gt; - A minimal menu bar app to quickly view and kill running processes. &lt;a href=&quot;https://github.com/designsbymuzeer/Bye-Mac-App&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://wangchujiang.com/daybar/&quot;&gt;DayBar&lt;/a&gt; - An application that can display the local date and reminder events in the menu bar. &lt;a href=&quot;https://apps.apple.com/app/daybar/6739052447?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://iordv.github.io/Droppy/&quot;&gt;Droppy&lt;/a&gt; - Turns your screen&#39;s notch (or Dynamic Island) into a multifunctional tool. &lt;a href=&quot;https://github.com/iordv/Droppy&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/dato&quot;&gt;Dato&lt;/a&gt; - A better menu bar clock with calendar, events, and time zones. &lt;a href=&quot;https://apps.apple.com/us/app/dato/id1470584107?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Mortennn/Dozer&quot;&gt;Dozer&lt;/a&gt; - Hide MacOS menubar items. &lt;a href=&quot;https://github.com/Mortennn/Dozer&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://dynamichorizon.app&quot;&gt;DynamicHorizon&lt;/a&gt; - Adds media controls, notifications, and system indicators to the notch area.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://adelmaer.com/eyetimer&quot;&gt;Eye Timer&lt;/a&gt; - Take Breaks to prevent Eye Strain timer for Mac. &lt;a href=&quot;https://apps.apple.com/us/app/eye-timer/id1485856873?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fikrikarim/repose&quot;&gt;Repose&lt;/a&gt; - Menu bar break timer that dims your screen and pauses during calls. &lt;a href=&quot;https://github.com/fikrikarim/repose&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ff.1zilc.top&quot;&gt;Fishing Funds&lt;/a&gt; - Display real-time trends of Chinese funds in the menubar. &lt;a href=&quot;https://github.com/1zilc/fishing-funds&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/saihgupr/GoogleDriveSync&quot;&gt;GoogleDriveSync&lt;/a&gt; - A menu bar app for seamless Google Drive syncing. &lt;a href=&quot;https://github.com/saihgupr/GoogleDriveSync&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/folder-peek&quot;&gt;Folder Peek&lt;/a&gt; - Quickly access documents, files, folders, and apps from the menu bar. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1615988943?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dwarvesf/hidden&quot;&gt;Hidden&lt;/a&gt; - A ultra-light MacOS utility that helps hide menu bar icons. &lt;a href=&quot;https://github.com/dwarvesf/hidden&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/gb/app/hue-in-the-menu/id1534707384?platform=mac&quot;&gt;Hue in the Menu&lt;/a&gt; - Philips Hue light management in the menu bar with multi-room support. &lt;a href=&quot;https://apps.apple.com/gb/app/hue-in-the-menu/id1534707384?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jordanbaird/Ice&quot;&gt;Ice&lt;/a&gt; - Menu bar manager for hiding icons and organizing layouts. &lt;a href=&quot;https://github.com/jordanbaird/Ice&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.mowglii.com/itsycal/&quot;&gt;Itsycal&lt;/a&gt; - Tiny calendar for your Mac&#39;s menu bar. &lt;a href=&quot;https://github.com/sfsam/itsycal&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://itsyhome.app&quot;&gt;Itsyhome&lt;/a&gt; - Control your HomeKit and Home Assistant smart home from the menu bar. &lt;a href=&quot;https://github.com/nickustinov/itsyhome-macos&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.apple.com/app/itsyhome/id6758070650?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://itsytv.app/&quot;&gt;Itsytv&lt;/a&gt; - Control your Apple TV from the menu bar. &lt;a href=&quot;https://github.com/nickustinov/itsytv-macos&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://keystats.vercel.app&quot;&gt;KeyStats&lt;/a&gt; - Menu bar tracker for daily keystrokes, clicks, movement, and scrolling. &lt;a href=&quot;https://github.com/debugtheworldbot/keyStats&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getlater.app/&quot;&gt;Later&lt;/a&gt; - Save all your Mac apps for later with one click. &lt;a href=&quot;https://github.com/alyssaxuu/later/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/lukebuild/LuxShot&quot;&gt;LuxShot&lt;/a&gt; - Native and privacy-first menu bar OCR tool. &lt;a href=&quot;https://github.com/lukebuild/LuxShot&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ggbond268/MacTools&quot;&gt;MacTools&lt;/a&gt; - Open-source menu bar toolkit with plugins for display controls, system toggles, cleanup, device status, and everyday utilities. &lt;a href=&quot;https://github.com/ggbond268/MacTools&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/us/app/mask-this/id6759096128&quot;&gt;Mask This&lt;/a&gt; - Menu bar app that masks sensitive information in the clipboard. &lt;a href=&quot;https://github.com/tseylerd/MaskThis&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/mask-this/id6759096128&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://meetingbar.onrender.com&quot;&gt;MeetingBar&lt;/a&gt; - Menu bar app for your calendar meetings &lt;a href=&quot;https://github.com/leits/MeetingBar&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/menu-bar-calendar&quot;&gt;Menu Bar Calendar&lt;/a&gt; - A monthly calendar right in your menu bar. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1558360383?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ksterx/MenubarCC&quot;&gt;MenubarCC&lt;/a&gt; - Menu bar crab that shows your Claude Code sessions at a glance: walking while Claude works, bouncing when it needs you. &lt;a href=&quot;https://github.com/ksterx/MenubarCC&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://menubarx.app/&quot;&gt;MenubarX&lt;/a&gt; - A powerful Mac menu bar browser, pin webpage like an App. &lt;a href=&quot;https://apps.apple.com/us/app/menubarx/id1575588022?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://menuscores.vercel.app/&quot;&gt;MenuScores&lt;/a&gt; - A menu bar app that delivers real-time sports news and scores. &lt;a href=&quot;https://github.com/daniyalmaster693/MenuScores&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/bsnkhua/mole-widget&quot;&gt;Mole Widget&lt;/a&gt; - Lightweight system monitor with live CPU, memory, disk, network, battery, and process stats in a resizable desktop widget managed from the menu bar. &lt;a href=&quot;https://github.com/bsnkhua/mole-widget&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/MonitorControl/MonitorControl/&quot;&gt;MonitorControl&lt;/a&gt; - Control external display brightness and volume directly. &lt;a href=&quot;https://github.com/MonitorControl/MonitorControl/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/1989v/muxbar&quot;&gt;muxbar&lt;/a&gt; - Menu bar app for tmux session management — list, attach, kill sessions, live preview, and a closed-lid mode for in-bag work. &lt;a href=&quot;https://github.com/1989v/muxbar&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/alishansnsn/mysa&quot;&gt;mysa&lt;/a&gt; - A macOS menu bar app for quick breathing breaks, with a frosted screen overlay and handwritten quotes. &lt;a href=&quot;https://github.com/alishansnsn/mysa&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.ranagmbh.de/netfluss/&quot;&gt;NetFluss&lt;/a&gt; - Native menu bar app for real-time upload/download speeds and top bandwidth-using apps. &lt;a href=&quot;https://github.com/rana-gmbh/netfluss&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lo.cafe/notchnook&quot;&gt;NotchNook&lt;/a&gt; - Customizes your Mac&#39;s menu bar to seamlessly integrate with the notch design.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://notchly.xyz&quot;&gt;Notchly&lt;/a&gt; - Lightweight Dynamic Island for macOS with AI coding agent notifications. &lt;a href=&quot;https://github.com/Notchly/Notchly&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/one-thing&quot;&gt;One Thing&lt;/a&gt; - Put a single task or goal in your menu bar. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1604176982?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://fireball.studio/oneswitch&quot;&gt;One Switch&lt;/a&gt; - Mac menu bar app that adds various switches to the Mac&#39;s menu bar.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jacklandrin/OnlySwitch&quot;&gt;OnlySwitch&lt;/a&gt; - ⚙️ All-in-One menu bar app, hide 💻MacBook Pro&#39;s notch, dark mode, AirPods, Shortcuts&lt;a href=&quot;https://github.com/jacklandrin/OnlySwitch&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/pandan&quot;&gt;Pandan&lt;/a&gt; - Time awareness in your menu bar. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1569600264?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Celve/Peninsula&quot;&gt;Peninsula&lt;/a&gt; - Dynamic Peninsula for macOS, focusing on window switching, notifications, and file storage. &lt;a href=&quot;https://github.com/Celve/Peninsula&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://naden.co&quot;&gt;PowerMeister&lt;/a&gt; - Conserve energy and improve Battery-Life on your MacBook.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/yefga/Profisor&quot;&gt;Profisor&lt;/a&gt; - Switch Xcode provisioning profiles for the current project from the menu bar. &lt;a href=&quot;https://github.com/yefga/Profisor&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://quickgif.app/&quot;&gt;Quickgif&lt;/a&gt; - Quickly Find and Share GIFs. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id6744745027?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/DamascenoRafael/reminders-menubar/&quot;&gt;Reminders MenuBar&lt;/a&gt; - Simple macOS menu bar app to view and interact with reminders. &lt;a href=&quot;https://github.com/DamascenoRafael/reminders-menubar/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rewritebar.com/&quot;&gt;RewriteBar&lt;/a&gt; - A macOS menu bar app that helps you write your text with the assistance of AI.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/second-clock&quot;&gt;Second Clock&lt;/a&gt; - Show a second clock for a different time zone in your menu bar. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id6450279539?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/stonerl/Thaw&quot;&gt;Thaw&lt;/a&gt; - A powerful menu bar management tool for hiding and showing menu bar items. &lt;a href=&quot;https://github.com/stonerl/Thaw&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/FelixKratz/SketchyBar&quot;&gt;SketchyBar&lt;/a&gt; - A highly customizable macOS status bar replacement. &lt;a href=&quot;https://github.com/FelixKratz/SketchyBar&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/spaced&quot;&gt;Spaced&lt;/a&gt; - Organize your menu bar items into groups. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1666327168?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jamieweavis/streaker&quot;&gt;Streaker&lt;/a&gt; - GitHub contribution streak tracking menubar app. &lt;a href=&quot;https://github.com/jamieweavis/streaker&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/swiftbar/SwiftBar/&quot;&gt;SwiftBar&lt;/a&gt; - Powerful macOS menu bar customization tool. &lt;a href=&quot;https://github.com/swiftbar/SwiftBar/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tactile.masn.studio/&quot;&gt;Tactile&lt;/a&gt; - Adds subtle trackpad haptic taps over clickable elements, with optional visual cues for accessibility. &lt;a href=&quot;https://github.com/Mason363/Tactile&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://textsniper.app/&quot;&gt;TextSniper&lt;/a&gt; - Simple yet powerful OCR app in your Menu Bar. Instantly copy and paste text from anywhere. &lt;a href=&quot;https://apps.apple.com/app/id1528890965?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/today&quot;&gt;Today&lt;/a&gt; - View today’s schedule and calendar events from the menu bar. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id6443714928?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ivoronin/TomatoBar&quot;&gt;TomatoBar&lt;/a&gt; - World&#39;s neatest Pomodoro timer for macOS menu bar. &lt;a href=&quot;https://github.com/ivoronin/TomatoBar&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://typecue.app&quot;&gt;TypeCue&lt;/a&gt; - Types a prepared script into any app, one hotkey press per line, as real keystrokes at a human pace, for demo recordings and live presentations. &lt;a href=&quot;https://github.com/alexpolonsky/TypeCue&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/utc-time&quot;&gt;UTC Time&lt;/a&gt; - Show the time in UTC in the menu bar or a widget. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1538245904?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://matthewpalmer.net/vanilla/&quot;&gt;Vanilla&lt;/a&gt; - Hide menu bar icons on your Mac. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://vorssaint.com&quot;&gt;Vorssaint&lt;/a&gt; - Open-source menu bar toolkit for per-app volume, system monitoring, window control, clipboard history, keeping awake, and app cleanup. &lt;a href=&quot;https://github.com/vorssaint/vorssaint-utils&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/week-number&quot;&gt;Week Number&lt;/a&gt; - The current week number in your menu bar. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id6502579523?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/niteoweb/work-hours-mac&quot;&gt;Work Hours&lt;/a&gt; - Simple app that tracks your work hours from the menu bar. &lt;a href=&quot;https://github.com/niteoweb/work-hours-mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://xbarapp.com/&quot;&gt;Xbar&lt;/a&gt; - Put the output from any script or program into your macOS Menu Bar (the BitBar reboot). &lt;a href=&quot;https://github.com/matryer/xbar&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/us/app/funkey-mechanical-keyboard-app/id6469420677?platform=mac&quot;&gt;FunKey&lt;/a&gt; - Keyboard sound tool that adds mechanical-style typing audio. &lt;a href=&quot;https://apps.apple.com/us/app/funkey-mechanical-keyboard-app/id6469420677?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Cleanup and Uninstall&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://freemacsoft.net/appcleaner/&quot;&gt;AppCleaner&lt;/a&gt; - Thoroughly uninstall apps. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/kamjin3086/AppUninstaller&quot;&gt;App Uninstaller&lt;/a&gt; - Lightweight app uninstaller with drag-and-drop support. Built with Swift and SwiftUI. &lt;a href=&quot;https://github.com/kamjin3086/AppUninstaller&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macpaw.com/cleanmymac&quot;&gt;CleanMyMac&lt;/a&gt; - Delete megatons of junk, malware, and make your Mac faster &amp;amp; more organized &lt;a href=&quot;https://apps.apple.com/us/app/cleanmymac/id1339170533?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/iliyami/MacClean&quot;&gt;Mac Clean&lt;/a&gt; - Free, open-source cleaner, optimizer, and malware scanner. &lt;a href=&quot;https://github.com/iliyami/MacClean&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/apple-store/id1133028347?pt=444218&amp;amp;ct=GitHub&amp;amp;mt=8&amp;amp;platform=mac&quot;&gt;Cleaner One&lt;/a&gt; - Disk cleaning and Mac optimization. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/apple-store/id1133028347?pt=444218&amp;amp;ct=GitHub&amp;amp;mt=8&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/waylybaye/XcodeCleaner-SwiftUI&quot;&gt;Cleaner for Xcode&lt;/a&gt; - Remove unwanted Xcode files. &lt;a href=&quot;https://github.com/waylybaye/XcodeCleaner-SwiftUI&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/bysiber/cleardisk&quot;&gt;ClearDisk&lt;/a&gt; - Visualize and clean developer caches to quickly reclaim disk space. &lt;a href=&quot;https://github.com/bysiber/cleardisk&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://daisydiskapp.com/&quot;&gt;DaisyDisk&lt;/a&gt; - Disk usage analyzer and cleaner.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://harbofly.app/&quot;&gt;Harbofly&lt;/a&gt; - Menu bar app that auto-discovers and frees the disk space dev build artifacts and caches hog (DerivedData, node_modules, SPM/Homebrew caches). Zero telemetry, notarized. &lt;a href=&quot;https://github.com/carloshpdoc/Harbofly&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/kaunteya/MacCacheCleaner&quot;&gt;Mac Cache Cleaner&lt;/a&gt; - Cache cleaner for Mac &lt;a href=&quot;https://github.com/kaunteya/MacCacheCleaner&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/AlexTkDev/MacOSCleaner&quot;&gt;MacOSCleaner&lt;/a&gt; - Free, open-source macOS cleaner with disk analyzer, app uninstaller, and smart cleanup. &lt;a href=&quot;https://github.com/AlexTkDev/MacOSCleaner&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lcharvol.github.io/MacSift/&quot;&gt;MacSift&lt;/a&gt; - Open-source disk cleaner that groups files by app and moves them to the Trash. &lt;a href=&quot;https://github.com/Lcharvol/MacSift&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.omnigroup.com/more&quot;&gt;OmniDiskSweeper&lt;/a&gt; - Scans files by size so you can quickly find space hogs. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://itsalin.com/appInfo/?id=pearcleaner&quot;&gt;Pearcleaner&lt;/a&gt; - A free, source-available and fair-code licensed mac app cleaner. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/alienator88/Pearcleaner&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/momenbasel/PureMac&quot;&gt;PureMac&lt;/a&gt; - Free, open-source macOS cleaner with no telemetry. Cleans system and user caches, Xcode junk, Homebrew cache, mail attachments, and finds large or old files. Supports scheduled auto-cleaning. &lt;a href=&quot;https://github.com/momenbasel/PureMac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;File Organization Tools&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/wzh4869/AppPorts&quot;&gt;AppPorts&lt;/a&gt; - Move apps to external storage while keeping working launch links in &lt;code&gt;/Applications&lt;/code&gt;. &lt;a href=&quot;https://github.com/wzh4869/AppPorts&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macitbetter.com/&quot;&gt;BetterZip&lt;/a&gt; - Archive tool supports ZIP, TAR, TGZ, TBZ, TXZ (new), 7-ZIP, RAR.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ezip.awehunt.com&quot;&gt;eZip&lt;/a&gt; - Lightweight archive tool for ZIP, RAR, 7Z, and other common formats. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.fileside.app&quot;&gt;Fileside&lt;/a&gt; - A modern, tiling file manager with unlimited panes.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://foldersapp.dev&quot;&gt;Folders File Manager&lt;/a&gt; - A file manager with an expandable folder tree, similar to that of Windows Explorer.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.noodlesoft.com&quot;&gt;Hazel&lt;/a&gt; - Automated file organization for your Mac. Responsibly and beautifully designed.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.keka.io&quot;&gt;Keka&lt;/a&gt; - Open-source compression and extraction tool with broad format support. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/keka/id470158793?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.mucommander.com&quot;&gt;muCommander&lt;/a&gt; - Lightweight file manager with a dual-pane interface. &lt;a href=&quot;https://github.com/mucommander/mucommander&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/raguay/ModalFileManager/&quot;&gt;Modal File Manager&lt;/a&gt; - Dual-pane file manager with Vim-style hotkeys and customizable extensions. &lt;a href=&quot;https://GitHub.com/raguay/ModalFileManager&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://okaapps.com/product/1441507725&quot;&gt;Oka Unarchiver&lt;/a&gt; - Archive utility with RAR support, batch extraction, and password-protected archives. &lt;a href=&quot;https://apps.apple.com/app/id1441507725?pt=119209922&amp;amp;ct=github&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/JulianKahnert/PDF-Archiver&quot;&gt;PDF Archiver&lt;/a&gt; - Nice tool for tagging and archiving tasks. &lt;a href=&quot;https://github.com/JulianKahnert/PDF-Archiver&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.apple.com/app/pdf-archivar/id1352719750?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rapidmg.branchseer.com/&quot;&gt;Rapidmg&lt;/a&gt; 1-Click extracting apps from DMG images to the &quot;Applications&quot; folder. &lt;a href=&quot;https://apps.apple.com/app/rapidmg/id6451349778?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://shuffleapp.co&quot;&gt;Shuffle&lt;/a&gt; - Fast, GPU-rendered file manager and Finder alternative built in Rust. &lt;a href=&quot;https://github.com/WizenPainter/shuffle&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://theunarchiver.com/&quot;&gt;The Unarchiver&lt;/a&gt; - Unarchive many different kinds of archive files. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/the-unarchiver/id425424353?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cleanerone.trendmicro.com/unarchiver-one/?utm_source=github&amp;amp;utm_medium=referral&amp;amp;utm_campaign=githubproject&quot;&gt;Unarchive One&lt;/a&gt; - Archive utility for extracting and compressing many common formats. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/apple-store/id1127253508?pt=444218&amp;amp;ct=GitHub&amp;amp;mt=8&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://marta.sh&quot;&gt;Marta&lt;/a&gt; - File Manager for macOS written entirely in Swift &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;General Tools&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.airserver.com/Download&quot;&gt;AirServer&lt;/a&gt; - Most advanced screen mirroring software receiver for Mac, PC and Xbox One.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cadranapp.com&quot;&gt;Cadran&lt;/a&gt; - Renders 22 customizable clock faces on your Mac desktop wallpaper and screensaver.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.appecosys.com/apps/dns-optimizer/&quot;&gt;DNS Optimizer&lt;/a&gt; - A DNS changer and performance‑benchmarking tool for Apple devices (macOS &amp;amp; iOS). &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/dns-optimizer/id6741016224?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://devknife.app&quot;&gt;DevKnife&lt;/a&gt; - A native Mac app for dozens of daily dev tasks, from network scans to JSON formatting.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ObuchiYuki/DevToysMac&quot;&gt;DevToysMac&lt;/a&gt; - Offline toolbox that helps developers in daily tasks. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://devutils.com/&quot;&gt;DevUtils.app&lt;/a&gt; - Developer toolbox for formatting, converting, and debugging everyday data. &lt;a href=&quot;https://github.com/DevUtilsApp/DevUtils-app&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/devutils-app/id1533756032?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/Deskmark/6755948110?platform=mac&quot;&gt;Deskmark&lt;/a&gt; - Add watermarks to the desktop, ideal for recording videos. &lt;a href=&quot;https://apps.apple.com/app/Deskmark/6755948110?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.balena.io/etcher/&quot;&gt;Etcher&lt;/a&gt; - Flash OS images to SD cards &amp;amp; USB drives, safely and easily. &lt;a href=&quot;https://github.com/balena-io/etcher&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rlxone/Equinox&quot;&gt;Equinox&lt;/a&gt; - Create dynamic wallpapers for macOS. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/equinox-create-wallpaper/id1591510203?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.httrack.com&quot;&gt;HTTrack&lt;/a&gt; - Useful tool for downloading a whole website and offline browsing. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mangerlahn/Latest&quot;&gt;Latest&lt;/a&gt; - A tiny app that checks if all your apps from any source are up to date. &lt;a href=&quot;https://github.com/mangerlahn/Latest&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/lungo&quot;&gt;Lungo&lt;/a&gt; - Prevent your Mac from going to sleep. &lt;a href=&quot;https://apps.apple.com/us/app/lungo/id1263070803?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/RoversX/LaunchNext&quot;&gt;LaunchNext&lt;/a&gt; - Classic Launchpad experience, relive old macOS. &lt;a href=&quot;https://github.com/RoversX/LaunchNext&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lo.cafe/lo-rain&quot;&gt;lo-rain&lt;/a&gt; - Create a customizable rain over your desktop and apps, with splash over the dock.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://memo-app.net/&quot;&gt;Memo&lt;/a&gt; - Simple and elegant app. Unlock memos even more quickly using Touch ID. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1212409035?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://numi.io/&quot;&gt;Numi&lt;/a&gt; - Beautiful calculator app for Mac. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nextdns.io/&quot;&gt;NextDNS&lt;/a&gt; - The new firewall for the modern Internet. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/nextdns/id1464122853?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://opendisplay.app&quot;&gt;OpenDisplay&lt;/a&gt; - Use a spare iPhone or iPad as a second display for your Mac, wired (USB) or over WiFi, with touch input. &lt;a href=&quot;https://github.com/peetzweg/opendisplay&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://kagerou.glass/phosphene/&quot;&gt;Phosphene&lt;/a&gt; - Use any video as your macOS wallpaper on the desktop and the lock screen, picked directly from System Settings. &lt;a href=&quot;https://github.com/kageroumado/phosphene&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/plash&quot;&gt;Plash&lt;/a&gt; - Make any website your desktop wallpaper. &lt;a href=&quot;https://github.com/sindresorhus/Plash&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/plash/id1494023538?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jasonjmcghee/rem&quot;&gt;rem&lt;/a&gt; - An open source approach to locally record and enable searching everything you view on your Mac. &lt;a href=&quot;https://github.com/jasonjmcghee/rem&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.rewind.ai/&quot;&gt;Rewind&lt;/a&gt; - Searchable history of your screen and audio activity.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dteoh/SlowQuitApps&quot;&gt;SlowQuitApps&lt;/a&gt; - An OS X app that adds a global delay of 1 second to the Cmd-Q shortcut. &lt;a href=&quot;https://github.com/dteoh/SlowQuitApps&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/speediness&quot;&gt;Speediness&lt;/a&gt; - Check your internet speed. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1596706466?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Swift-open-source/UltraTabSaver&quot;&gt;Ultra TabSaver&lt;/a&gt; - The Open Source Tab Manager for Safari &lt;a href=&quot;https://github.com/Swift-open-source/UltraTabSaver&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/upscayl/upscayl&quot;&gt;Upscayl&lt;/a&gt; - Free and open-source AI image upscaling tool. &lt;a href=&quot;https://github.com/upscayl/upscayl&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/Vidwall/6747587746?platform=mac&quot;&gt;Vidwall&lt;/a&gt; - Easily import MP4/MOV videos as system wallpapers and lock screen animations. &lt;a href=&quot;https://github.com/jaywcjlove/vidwall&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://jipika.github.io/WaifuX&quot;&gt;WaifuX&lt;/a&gt; - Open-source ACG app for wallpapers, animated backgrounds, and anime videos. &lt;a href=&quot;https://github.com/jipika/WaifuX&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/gkpln3/CapsLockNoDelay&quot;&gt;CapsLockNoDelay&lt;/a&gt; - Removes caps-lock key activation delay for fast typers. &lt;a href=&quot;https://github.com/gkpln3/CapsLockNoDelay&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://seodisias.com&quot;&gt;Seodisias&lt;/a&gt; - SEO crawler that audits sites for technical issues and optimization opportunities. &lt;a href=&quot;https://seodisias.com&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;To-Do Lists&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.2doapp.com/&quot;&gt;2Do&lt;/a&gt; - Nice todo app.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.shauninman.com/archive/2016/10/20/day_o_2_mac_menu_bar_clock&quot;&gt;Day-O 2&lt;/a&gt; - Menu bar clock replacement with built-in calendar. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://flexibits.com/fantastical&quot;&gt;Fantastical&lt;/a&gt; - The calendar app you won&#39;t be able to live without.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://meaningful-things.com/focus&quot;&gt;Focus&lt;/a&gt; - Beautiful pomodoro-based time manager. &lt;a href=&quot;https://apps.apple.com/us/app/focus-productivity-timer/id777233759?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://focusedwork.app&quot;&gt;Focused Work: Focus Timer&lt;/a&gt; - A simple, flexible Focus Timer. &lt;a href=&quot;https://apps.apple.com/us/app/focused-work-focus-timer/id1523968394?uo=4&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lunatask.app&quot;&gt;Lunatask&lt;/a&gt; - An all-in-one encrypted to-do list, habit and mood tracker, journaling and notes app. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/lunatask-a-better-to-do-list/id1583719331?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://todo.microsoft.com/&quot;&gt;Microsoft To-Do&lt;/a&gt; - Microsoft&#39;s successor to Wunderlist. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/de/app/microsoft-to-do/id1274495053?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nozbe.com&quot;&gt;Nozbe&lt;/a&gt; - GTD task manager for individuals and teams. &lt;a href=&quot;https://apps.apple.com/pl/app/nozbe-tasks-projects-team/id508957583?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.omnigroup.com/omnifocus/&quot;&gt;OmniFocus&lt;/a&gt; - Nice GTD app, made by OmniGroups.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/one-task&quot;&gt;One Task&lt;/a&gt; - Conquer one task at a time. &lt;a href=&quot;https://apps.apple.com/app/id6465745322?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://super-productivity.com&quot;&gt;Super Productivity&lt;/a&gt; - Task manager with timeboxing and time tracking. &lt;a href=&quot;https://github.com/johannesjo/super-productivity&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/cn/app/super-productivity/id1482572463?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.taskade.com&quot;&gt;Taskade&lt;/a&gt; - Real-time collaborative editor for teams.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.taskpaper.com/&quot;&gt;TaskPaper&lt;/a&gt; - Plain text to-do lists.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://culturedcode.com/things/&quot;&gt;Things&lt;/a&gt; - Delightful and easy to use task manager. (&lt;strong&gt;Award-winning App&lt;/strong&gt;)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://todoist.com/mac&quot;&gt;Todoist&lt;/a&gt; - Cross-platform todo list app. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/todoist-to-do-list-tasks/id585829637?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://tomato2.app&quot;&gt;Tomato 2&lt;/a&gt; - Beautiful and simple Pomodoro timer. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/tomato-2-pomodoro-timer/id1494210770?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ticktick.com/&quot;&gt;TickTick&lt;/a&gt; - Simple and effective to-do list and task manager that helps you organize all aspects of life. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id966085870?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Productivity&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://1440app.com/&quot;&gt;1440 Minutes Left Today&lt;/a&gt; - Show how many minutes are left in the day from your menu bar. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/1440/id1483764819?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://activitywatch.net/&quot;&gt;ActivityWatch&lt;/a&gt; - Cross-platform, extensible, and privacy-focused time-tracker. &lt;a href=&quot;https://github.com/ActivityWatch/activitywatch&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.alfredapp.com/&quot;&gt;Alfred&lt;/a&gt; - Launcher and automation tool with hotkeys, snippets, and search. &lt;a href=&quot;https://github.com/learn-anything/alfred-workflows#readme&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://indiegoodies.com/atomic&quot;&gt;Atomic&lt;/a&gt; - A habit tracker app to build good habits, break bad ones, and stay on top of your daily routines.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rewhex/better-launchpad&quot;&gt;Better Launchpad&lt;/a&gt; - Customizable app launcher with fast search.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://better-mouse.com&quot;&gt;BetterMouse&lt;/a&gt; - Customize scrolling, acceleration, buttons, and gestures for third-party mice.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://folivora.ai/&quot;&gt;BetterTouchTool&lt;/a&gt; - Customize gestures, shortcuts, and input actions across trackpads, mice, and keyboards.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cerebroapp.com/&quot;&gt;Cerebro&lt;/a&gt; - Open-source productivity booster with a brain. &lt;a href=&quot;https://github.com/cerebroapp/cerebro&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.choosyosx.com&quot;&gt;Choosy&lt;/a&gt; - UI, URL API and a browser extension set for managing rules where and how to open links.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://currentkey.com&quot;&gt;CurrentKey&lt;/a&gt; - Add custom names and icons to Spaces and track app usage time. &lt;a href=&quot;https://apps.apple.com/us/app/currentkey/id1456226992?mt=12&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.plentycom.jp/en/cursorsense/index.html&quot;&gt;CursorSense&lt;/a&gt; - Mouse &amp;amp; trackpad driver that lets you tweak the acceleration curve and more.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/day-progress&quot;&gt;Day Progress&lt;/a&gt; - Time remaining today in your menu bar. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id6450280202?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://aptonic.com&quot;&gt;Dropzone&lt;/a&gt; - Create a popup grid of customizable actions. Scriptable in Ruby &amp;amp; Python.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/viarotel-org/escrcpy&quot;&gt;escrcpy&lt;/a&gt; -📱 Graphical Scrcpy to display and control Android devices, powered by Electron.&lt;a href=&quot;https://github.com/viarotel-org/escrcpy&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.focalboard.com/&quot;&gt;Focalboard&lt;/a&gt; - Open source, self-hosted alternative to Trello, Notion, and Asana. &lt;a href=&quot;https://github.com/mattermost/focalboard&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://focusfirewall.com&quot;&gt;Focus Firewall&lt;/a&gt; - A minimalist focus app to block social media and other distractions during work. &lt;a href=&quot;%5Bhttps://apps.apple.com/app/apple-store/id6476942786?pt=124015613&amp;amp;ct=awesome-mac&amp;amp;mt=8&amp;amp;platform=mac%5D(https://apps.apple.com/app/apple-store/id6476942786?pt=124015613&amp;amp;ct=awesome-mac&amp;amp;mt=8&amp;amp;platform=mac)&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/kotique123/FnKeyboard&quot;&gt;FnKeyboard&lt;/a&gt; - Quick access to function keys from the menu bar. &lt;a href=&quot;https://github.com/kotique123/FnKeyboard&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://freeter.io/&quot;&gt;Freeter&lt;/a&gt; - Organize apps, links, and files by project in one workspace. &lt;a href=&quot;https://github.com/FreeterApp/Freeter&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.hammerspoon.org/&quot;&gt;Hammerspoon&lt;/a&gt; - Tool for powerful OSX automation with the Lua scripting engine. &lt;a href=&quot;https://github.com/Hammerspoon/hammerspoon&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/niw/HapticKey/releases&quot;&gt;HapticKey&lt;/a&gt; - Add haptic feedback when using the Touch Bar. &lt;a href=&quot;https://github.com/niw/HapticKey&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://hazeover.com&quot;&gt;HazeOver&lt;/a&gt; - App that dims your background app windows so you can focus more on your main task! &lt;a href=&quot;https://apps.apple.com/ph/app/hazeover-distraction-dimmer/id430798174?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://hookproductivity.com/&quot;&gt;Hook for Mac&lt;/a&gt; - Link related files, emails, and notes for quick navigation.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://zhengying.github.io/hungrymark&quot;&gt;Hungrymark&lt;/a&gt; - Bookmark files, folders, and links for quick menu bar access. &lt;a href=&quot;https://apps.apple.com/us/app/hungrymark/id1482778901?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://hyperkey.app/&quot;&gt;Hyperkey&lt;/a&gt; - Turn Caps Lock or another modifier into a Hyper key. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://icmd.app&quot;&gt;iCMD&lt;/a&gt; - Global fuzzy menu search with Vim-style navigation.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://gowithjourney.com&quot;&gt;Journey Navigation&lt;/a&gt; - Route planner with weather, traffic, and turn-by-turn guidance. &lt;a href=&quot;https://apps.apple.com/us/app/journey-navigation/id1662059644?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pqrs.org/osx/karabiner/&quot;&gt;Karabiner&lt;/a&gt; - Powerful and stable keyboard customizer for OS X. &lt;a href=&quot;https://github.com/tekezo/Karabiner&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/zenangst/KeyboardCowboy&quot;&gt;Keyboard Cowboy&lt;/a&gt; - The missing keyboard shortcut utility for macOS. &lt;a href=&quot;https://github.com/zenangst/KeyboardCowboy&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.keyboardmaestro.com&quot;&gt;Keyboard Maestro&lt;/a&gt; - Automate repetitive tasks with triggers and macros.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://keytty.com&quot;&gt;Keytty&lt;/a&gt; - App to keep your hands on the keyboard. Move, click, scroll, drag and more with a few strokes.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apple.co/3PLI2AH&quot;&gt;Launchy&lt;/a&gt; - An app launcher and switcher that utilizes a radial menu.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.lazy-app.com/&quot;&gt;Lazy&lt;/a&gt; - Keyboard-driven commands to manage your surroundings directly from your mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://linearmouse.app/&quot;&gt;Linear Mouse&lt;/a&gt; - Full control of mouse. Change the speed, scrolling direction, pointer type and much more. &lt;a href=&quot;https://github.com/linearmouse/linearmouse&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macaify.com&quot;&gt;Macaify&lt;/a&gt; - Fast use of ChatGPT, lightweight, clean, keyboard-first. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.mousefix.org/&quot;&gt;Mac Mouse Fix&lt;/a&gt; - A simple way to make your mouse better. &lt;a href=&quot;https://github.com/noah-nuebling/mac-mouse-fix&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/memo-widget&quot;&gt;Memo Widget&lt;/a&gt; - Sticky notes on your desktop. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id6465682248?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mindmac.app/&quot;&gt;MindMac&lt;/a&gt; - AI chat client for multiple providers in one place.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mos.caldis.me/&quot;&gt;Mos&lt;/a&gt; - Simple tool can offer the smooth scrolling and reverse the mouse scrolling direction on your Mac. &lt;a href=&quot;https://github.com/Caldis/Mos&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macpacker.app&quot;&gt;MacPacker&lt;/a&gt; - Archive manager that supports previewing and extracting archive files &lt;a href=&quot;https://github.com/sarensw/macpacker&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://magic-switch.com/&quot;&gt;Magic Switch&lt;/a&gt; - Switch Magic Keyboard, Mouse, and Trackpad between multiple Macs.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.nearnorthsoftware.com/software/screenshots.php&quot;&gt;nnScreenshots&lt;/a&gt; - Capture periodic screenshots to review your day and fill timesheets.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.omnigroup.com/omniplan/&quot;&gt;OmniPlan&lt;/a&gt; - The best way to visualize, maintain, and simplify your projects. Project Management made easy.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://loshadki.app/openin4/&quot;&gt;OpenIn&lt;/a&gt; - Take control of installed apps on your Mac &lt;a href=&quot;https://apps.apple.com/us/app/openin-4-advanced-link-handler/id1643649331?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://palettebrain.com&quot;&gt;PaletteBrain&lt;/a&gt; - Access the power of ChatGPT across all your Mac applications with the press of a shortcut.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.pie-menu.com&quot;&gt;Pie Menu&lt;/a&gt; – Control your tools with a radial menu customized for your active app.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/us/app/perplexity-ask-anything/id6714467650?platform=mac&quot;&gt;Perplexity&lt;/a&gt; - Search and discovery with AI.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jet8a/pomodoro-cycle-app&quot;&gt;Pomodoro Cycle&lt;/a&gt; - Pomodoro tracker&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/id6748314346?platform=mac&quot;&gt;ProBoard&lt;/a&gt; - Use one board to manage all your project information efficiently.&lt;a href=&quot;https://apps.apple.com/app/id6748314346?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://qotoqot.com/qbserve/&quot;&gt;Qbserve&lt;/a&gt; - Automatic time tracking with projects, timesheets, and productivity insights.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raycast.com?via=ae02&quot;&gt;Raycast&lt;/a&gt; - Launcher and command palette with extensions, snippets, notes, and AI.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/SuperCmdLabs/SuperCmd&quot;&gt;SuperCmd&lt;/a&gt; - Open-source launcher with Raycast-compatible extensions, voice workflows, text-to-speech, memory, and AI actions. &lt;a href=&quot;https://github.com/SuperCmdLabs/SuperCmd&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rustcast.app&quot;&gt;Rustcast&lt;/a&gt; - Workflow launcher for modes, quick app access, file search, clipboard history, and more. &lt;a href=&quot;https://github.com/unsecretised/rustcast&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.rescuetime.com/&quot;&gt;RescueTime&lt;/a&gt; - Track time usage and get productivity reports.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://supercorners.vercel.app/&quot;&gt;SuperCorners&lt;/a&gt; - Turn Hot Corners into custom workflow triggers. &lt;a href=&quot;https://github.com/daniyalmaster693/SuperCorners&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rize.io/&quot;&gt;Rize&lt;/a&gt; - AI time tracker that helps you focus and build better work habits.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://wangchujiang.com/rightmenu-master/&quot;&gt;RightMenu Master&lt;/a&gt; - Add more useful actions to the Finder right-click menu. &lt;a href=&quot;https://apps.apple.com/app/rightmenu-master/6737160756?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://selectric.io/&quot;&gt;Selectric&lt;/a&gt; - Private search across email, documents, and chat apps.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sensible-side-buttons.archagon.net&quot;&gt;SensibleSideButtons&lt;/a&gt; - Make mouse side buttons work for back and forward in more apps. &lt;a href=&quot;https://github.com/archagon/sensible-side-buttons&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/koekeishiya/skhd&quot;&gt;skhd&lt;/a&gt; - Simple hotkey daemon for macOS. &lt;a href=&quot;https://github.com/koekeishiya/skhd&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://khrykin.github.io/strategr/&quot;&gt;Strategr&lt;/a&gt; - Time-boxing planner for structuring your day. &lt;a href=&quot;https://github.com/khrykin/StrategrDesktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://strokemouse.com&quot;&gt;StrokeMouse&lt;/a&gt; - Custom mouse gestures that can trigger keyboard shortcuts, open apps, perform window actions, run shell commands, or execute AppleScript after drawing a stroke. &lt;a href=&quot;https://github.com/Licoy/StrokeMouse&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://swiftbiu.com/&quot;&gt;SwiftBiu&lt;/a&gt; - Text productivity tool with a customizable action bar and AI extensions. &lt;a href=&quot;https://apps.apple.com/cn/app/swiftbiu/id6754772331?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/FriesI23/mhabit&quot;&gt;Table Habit&lt;/a&gt; – Habit tracker with growth charts and offline-first sync. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/table-habit/id6744886469?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.dejal.com/timeout/&quot;&gt;Time Out&lt;/a&gt; - Easy break reminders, with micro-break and flexible customization if you want it. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/time-out-break-reminders/id402592703?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://timescribe.app/&quot;&gt;TimeScribe&lt;/a&gt; - Simple and free working time recording. &lt;a href=&quot;https://github.com/WINBIGFOX/TimeScribe&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://timingapp.com/&quot;&gt;Timing&lt;/a&gt; - Automatic time tracking with productivity insights and billing-friendly records.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://textream.fka.dev&quot;&gt;Textream&lt;/a&gt; - Free teleprompter with real-time word tracking and voice-activated scrolling. &lt;a href=&quot;https://github.com/f/textream&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://trace.techulus.xyz&quot;&gt;Trace&lt;/a&gt; - Open-source spotlight alternative and shortcut toolkit. &lt;a href=&quot;https://github.com/arjunkomath/trace&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://trello.com&quot;&gt;Trello&lt;/a&gt; - A collaboration tool that organizes your projects into Kanban boards.&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;a href=&quot;https://apps.apple.com/app/trello/id1278508951?ls=1&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://scripts.sil.org/ukelele&quot;&gt;Ukelele&lt;/a&gt; - Unicode Keyboard Layout Editor.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/velja&quot;&gt;Velja&lt;/a&gt; - Browser picker that lets you open links in a specific browser or a desktop app. &lt;a href=&quot;https://apps.apple.com/app/id1607635845?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://wox-launcher.github.io/Wox/&quot;&gt;Wox&lt;/a&gt; - Open-source cross-platform launcher with fast local search and plugin extensibility. &lt;a href=&quot;https://github.com/Wox-launcher/Wox&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://xscopeapp.com/&quot;&gt;xScope&lt;/a&gt; - Toolset for measuring, inspecting, and testing on-screen layouts and graphics.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rupa/z&quot;&gt;Z&lt;/a&gt; - Jump to frequently used directories by typing part of the path.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Window Management&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nikitabobko/AeroSpace&quot;&gt;AeroSpace&lt;/a&gt; - i3-like tiling window manager for macOS. &lt;a href=&quot;https://github.com/nikitabobko/AeroSpace&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://alt-tab-macos.netlify.app&quot;&gt;AltTab&lt;/a&gt; - Open source window switcher with window previews. &lt;a href=&quot;https://github.com/lwouis/alt-tab-macos&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://ianyh.com/amethyst/&quot;&gt;Amethyst&lt;/a&gt; - Tiling window manager. &lt;a href=&quot;https://github.com/ianyh/Amethyst&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://assignee.app&quot;&gt;Assignee&lt;/a&gt; - Simple, instant app switcher. &lt;a href=&quot;https://apps.apple.com/app/apple-store/id1491598904?pt=120234215&amp;amp;ct=awesome-mac&amp;amp;mt=8&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/varie-ai/convoker&quot;&gt;Convoker&lt;/a&gt; - Type an app name, press Enter, all its windows come to you. &lt;a href=&quot;https://github.com/varie-ai/convoker&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://contexts.co/&quot;&gt;contexts&lt;/a&gt; - App switcher for faster window and app switching across multiple screens.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nshi/dimsum&quot;&gt;Dimsum&lt;/a&gt; - Minimalist menu bar app that dims inactive windows to highlight the focused one. &lt;a href=&quot;https://github.com/nshi/dimsum&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://dockdoor.net&quot;&gt;DockDoor&lt;/a&gt; - Free and open source window peeking &amp;amp; alt-tab for macOS. &lt;a href=&quot;https://github.com/ejbills/DockDoor&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://dockit-docs.pages.dev&quot;&gt;Dockit&lt;/a&gt; - An application that can dock any window to the edge of the screen. &lt;a href=&quot;https://github.com/XiCheng148/Dockit&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.7sols.com/dissolv/&quot;&gt;Dissolv&lt;/a&gt; - Hide and close inactive apps. &lt;a href=&quot;https://apps.apple.com/app/dissolv/id1640893012?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mizage.com/divvy/&quot;&gt;Divvy&lt;/a&gt; - Window management at its finest with its amazing Divvy Grid system.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://finestructure.co/hummingbird&quot;&gt;Hummingbird&lt;/a&gt; - Easily move and resize windows without mouse clicks, from anywhere within a window. &lt;a href=&quot;https://github.com/finestructure/Hummingbird&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mightymac.app/intellidock/&quot;&gt;IntelliDock&lt;/a&gt; - Hides the Dock, Automatically.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/FelixKratz/JankyBorders&quot;&gt;JankyBorders&lt;/a&gt; - A lightweight window border system for macOS. &lt;a href=&quot;https://github.com/FelixKratz/JankyBorders&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/MrKai77/Loop&quot;&gt;Loop&lt;/a&gt; - Window management made elegant. &lt;a href=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg&quot; title=&quot;Freeware&quot;&gt;Freeware&lt;/a&gt; &lt;a href=&quot;https://github.com/MrKai77/Loop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macsyzones.com/&quot;&gt;MacsyZones&lt;/a&gt; - Organize your windows with ease and boost your productivity. &lt;a href=&quot;https://github.com/rohanrhu/MacsyZones&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://thelasso.app&quot;&gt;Lasso&lt;/a&gt; - Intuitive and easy to use grid-based window manager.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://magnet.crowdcafe.com/&quot;&gt;Magnet&lt;/a&gt; - Window manager that keeps your workspace organized. &lt;a href=&quot;https://apps.apple.com/us/app/id441258766?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Geckos-Ink/MakeItHome&quot;&gt;MakeItHome&lt;/a&gt; - Pointer-driven launcher for screen-edge quick actions and app switching. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/it/app/makeithome-screen-extender/id6444596296?l=en-GB&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://manytricks.com/moom/&quot;&gt;Moom&lt;/a&gt; - Window management tool for moving, resizing, and saving layouts.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nudge.run&quot;&gt;Nudge&lt;/a&gt; - Window manager with keyboard shortcuts and drag-to-edge snapping. &lt;a href=&quot;https://github.com/mikusnuz/nudge&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/BarutSRB/OmniWM&quot;&gt;Omni&lt;/a&gt; - Notorized Niri and Hyprland inspired tiling window manager with animations. &lt;a href=&quot;https://github.com/BarutSRB/OmniWM&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ostapondo/plonk&quot;&gt;Plonk&lt;/a&gt; - Menu bar window manager with snap zones, hotkeys, and saved workspaces that relaunch your apps and put every window back on its monitor; an AI agent can drive it over MCP. &lt;a href=&quot;https://github.com/ostapondo/plonk&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lowtechguys.com/rcmd/&quot;&gt;rcmd&lt;/a&gt; - Use the &lt;kbd&gt;⌘ Right Command&lt;/kbd&gt; key to switch applications based on their name. &lt;a href=&quot;https://apps.apple.com/us/app/rcmd-app-switcher/id1596283165?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rxhanson/Rectangle&quot;&gt;Rectangle-app&lt;/a&gt; - Rectangle is a window management app based on Spectacle, written in Swift. &lt;a href=&quot;https://github.com/rxhanson/Rectangle&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fikovnik/ShiftIt&quot;&gt;ShiftIt&lt;/a&gt; - Managing window size and position in OSX. &lt;a href=&quot;https://github.com/fikovnik/ShiftIt&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://shortcutcycle.vercel.app/&quot;&gt;ShortcutCycle&lt;/a&gt; - Switch between context-based app groups with a single hotkey. &lt;a href=&quot;https://github.com/xcv58/ShortcutCycle&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/shortcutcycle/id6758281578?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sidebarapp.net/&quot;&gt;Sidebar&lt;/a&gt; - The modern Dock replacement for your Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.irradiatedsoftware.com/sizeup/&quot;&gt;SizeUp&lt;/a&gt; - Powerful, keyboard-centric window management.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jigish/slate&quot;&gt;Slate&lt;/a&gt; - Scriptable window manager configured with JavaScript. &lt;a href=&quot;https://github.com/jigish/slate&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://snapbackapp.com&quot;&gt;Snapback&lt;/a&gt; - Save and restore entire window layouts with one keystroke. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://swiftshift.app&quot;&gt;Swift Shift&lt;/a&gt; - Move and resize windows with keyboard shortcuts and mouse gestures. &lt;a href=&quot;https://github.com/pablopunk/swiftshift&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macdev.cn/&quot;&gt;StreamWindow&lt;/a&gt; - 3D window manager with intuitive views and fluid transitions. &lt;a href=&quot;https://apps.apple.com/cn/app/streamwindow-3d-window/id6752313155?mt=12&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://freemacsoft.net/tiles/&quot;&gt;Tiles&lt;/a&gt; - Snap and rearrange windows with screen edges, shortcuts, or the menu bar. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/lihaoyun6/Topit&quot;&gt;Topit&lt;/a&gt; - Pin any window to the top of your screen &lt;a href=&quot;https://github.com/lihaoyun6/Topit&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://totalspaces.binaryage.com/&quot;&gt;Total Spaces&lt;/a&gt; - Workspace manager with hotkeys and spatial overview.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/koekeishiya/yabai&quot;&gt;yabai&lt;/a&gt; - Keyboard-driven tiling window manager. &lt;a href=&quot;https://github.com/koekeishiya/yabai/wiki&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Password Management&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://1password.com/&quot;&gt;1Password&lt;/a&gt; - Cross-platform password management tool.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://bitwarden.com&quot;&gt;Bitwarden&lt;/a&gt; - Open source password management tool for Mac OS, iOS and browsers. &lt;a href=&quot;https://github.com/bitwarden&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://buttercup.pw/&quot;&gt;Buttercup&lt;/a&gt; - The Password Manager You Deserve &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.dashlane.com&quot;&gt;Dashlane&lt;/a&gt; - Cloud-based password manager with award-winning design.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.enpass.io/&quot;&gt;Enpass&lt;/a&gt; - Cross-platform password management tool with cloud integration. &lt;a href=&quot;https://apps.apple.com/us/app/enpass-password-manager/id455566716?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/app/Keyzer/6500434773?platform=mac&quot;&gt;Keyzer&lt;/a&gt; - Simple password manager that supports saving portable password files.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://keeweb.info/&quot;&gt;Keeweb&lt;/a&gt; - Free, cross-platform password manager compatible with KeePass. &lt;a href=&quot;https://github.com/keeweb/keeweb&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://keepassxc.org/&quot;&gt;KeepassXC&lt;/a&gt; - Free, open source, cross-platform password manager. &lt;a href=&quot;https://github.com/keepassxreboot/keepassxc&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://macpass.github.io/&quot;&gt;MacPass&lt;/a&gt; - Open-source KeePass Mac OS client. &lt;a href=&quot;https://github.com/mstarke/MacPass&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://safe-in-cloud.com/en/&quot;&gt;SafeInCloud&lt;/a&gt; - Cross Platform password management, low cost app! &lt;a href=&quot;https://apps.apple.com/app/safeincloud-password-manager/id883070818?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://strongboxsafe.com/&quot;&gt;Strongbox&lt;/a&gt; - KeePass-compatible password manager with Password Safe support. &lt;a href=&quot;https://github.com/strongbox-password-safe/Strongbox&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.apple.com/us/app/strongbox/id1270075435?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://getswifty.pro/&quot;&gt;Swifty&lt;/a&gt; - Free Offline-first Password Manager for MacOS, Windows and Linux. &lt;a href=&quot;https://github.com/swiftyapp/swifty&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Finder Tools&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/command-x&quot;&gt;Command X&lt;/a&gt; - Cut and paste files in Finder. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1666327168?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.stclairsoft.com/DefaultFolderX/index.html&quot;&gt;Default Folder X&lt;/a&gt; - Quick access to your files and folders in every app.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.fileminutes.com/&quot;&gt;FileMinutes&lt;/a&gt; - Find files and take actions, all in one.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://synappser.github.io/apps/finderfix/&quot;&gt;FinderFix&lt;/a&gt; - Finally, a lasting solution for Finder windows size and position. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://saneclick.com&quot;&gt;SaneClick&lt;/a&gt; - Finder extension that adds right-click actions for file tasks, conversion, and developer tools. &lt;a href=&quot;https://github.com/sane-apps/SaneClick&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/netdcy/FlowVision&quot;&gt;FlowVision&lt;/a&gt; - RWaterfall-style Image Viewer for macOS. &lt;a href=&quot;https://github.com/netdcy/FlowVision&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://fman.io&quot;&gt;fman&lt;/a&gt; - The first dual-pane file manager to integrate features from Sublime Text.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://binarynights.com/forklift/&quot;&gt;ForkLift&lt;/a&gt; - The most advanced dual pane file manager and file transfer client for macOS.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.cocoatech.com/pathfinder/&quot;&gt;Path Finder&lt;/a&gt; - File management app.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://qspace.awehunt.com&quot;&gt;QSpace&lt;/a&gt; - A clean and efficient Multi-view File Manager. &lt;a href=&quot;https://apps.apple.com/us/app/id1469774098?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/wflixu/RClick&quot;&gt;RClick&lt;/a&gt; - Add new functionality to the macOS Finder context menu. &lt;a href=&quot;https://github.com/wflixu/RClick&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/us/app/swiftymenu/id1567748223?platform=mac&quot;&gt;SwiftyMenu&lt;/a&gt; - Finder extension for opening selected files or folders with custom app shortcuts.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://totalfinder.binaryage.com/&quot;&gt;TotalFinder&lt;/a&gt; - Chrome-styled Finder substitute.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.trankynam.com/xtrafinder/&quot;&gt;XtraFinder&lt;/a&gt; - Adds tabs and cut to Mac Finder. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Quality of Life Improvements&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/actions&quot;&gt;Actions&lt;/a&gt; - Provides many useful actions for the Shortcuts app. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1586435171?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/ai-actions&quot;&gt;AI Actions&lt;/a&gt; - AI actions for the Shortcuts app. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id6465250302&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://didriksg.github.io/Crisp/&quot;&gt;Crisp&lt;/a&gt; - Manage external displays from the menu bar: HiDPI scaling, DDC brightness, color, and presets. &lt;a href=&quot;https://github.com/didriksg/Crisp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://displaybuddy.app&quot;&gt;DisplayBuddy&lt;/a&gt; - Control external display brightness, contrast, and input source.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://feuerbacher.me/projects/dimly&quot;&gt;Dimly&lt;/a&gt; - Control brightness across mixed monitor setups from one menu bar app. &lt;a href=&quot;https://github.com/punshnut/macos-dimly&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-native-app.svg?sanitize=true&quot; alt=&quot;Native App&quot; title=&quot;Native App&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://justgetflux.com/&quot;&gt;f.lux&lt;/a&gt; - Makes the color of your computer&#39;s display adapt to the time of day. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rkbhochalya/grayscale-mode&quot;&gt;Grayscale Mode&lt;/a&gt; - Toggle a grayscale screen filter from the menu bar or a shortcut. &lt;a href=&quot;https://github.com/rkbhochalya/grayscale-mode&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/hyperduck&quot;&gt;Hyperduck&lt;/a&gt; - Receive links from your iOS &amp;amp; visionOS devices. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1666327168?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/keycastr/keycastr&quot;&gt;KeyCastr&lt;/a&gt; - Open-source keystroke visualizer. &lt;a href=&quot;https://github.com/keycastr/keycastr&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://naden.co&quot;&gt;Luminescent&lt;/a&gt; - Bring back Keyboard Backlight Shortcuts for the MacBook.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/writronic/MaCursor&quot;&gt;MaCursor&lt;/a&gt; - Custom cursor themes for macOS. &lt;a href=&quot;https://github.com/writronic/MaCursor&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lunar.fyi/&quot;&gt;Lunar&lt;/a&gt; - Help you adujst brightness, contrast and volumn of your external display. &lt;a href=&quot;https://github.com/alin23/Lunar&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://shifty.natethompson.io&quot;&gt;Shifty&lt;/a&gt; - A macOS menu bar app that gives you more control over Night Shift. &lt;a href=&quot;https://github.com/thompsonate/Shifty&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://indragie.com/snap&quot;&gt;Snap&lt;/a&gt; - Launch an app in a snap. Ridiculously easy shortcut management. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id418073146?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/shareful&quot;&gt;Shareful&lt;/a&gt; - Supercharge the system share menu with copy, save, and open actions. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id1522267256?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://mousejigglermac.com&quot;&gt;Mouse Jiggler for Mac&lt;/a&gt; - Prevent Mac from sleep with Mac Mouse Mover. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/id6740313656?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;System Related Tools&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://kagerou.glass/adrafinil/&quot;&gt;Adrafinil&lt;/a&gt; - Keep your Mac awake only while AI agents are still working, then let it sleep normally. &lt;a href=&quot;https://github.com/kageroumado/adrafinil&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apphousekitchen.com/&quot;&gt;AlDente&lt;/a&gt; - Battery charge limiter for MacBooks. &lt;a href=&quot;https://github.com/davidwernhart/AlDente&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/us/app/amphetamine/id937984704?platform=mac&quot;&gt;Amphetamine&lt;/a&gt; - Keep your Mac awake. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/us/app/amphetamine/id937984704?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://cleanerone.trendmicro.com/ad-block-one-for-mac/?utm_source=github&amp;amp;utm_medium=referral&amp;amp;utm_campaign=githubproject&quot;&gt;AdBlock One&lt;/a&gt; - Free ad blocker for Safari.&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://apps.apple.com/app/apple-store/id1491889901?pt=444218&amp;amp;ct=GitHub&amp;amp;mt=8&amp;amp;platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://doesitarm.com/apple-silicon-app-test/&quot;&gt;Apple Silicon App Test&lt;/a&gt; - Check Apple Silicon app compatibility. &lt;a href=&quot;https://github.com/ThatGuySam/doesitarm&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lihaoyun6.github.io/airbattery/&quot;&gt;AirBattery&lt;/a&gt; - View all device batteries in the Dock, menu bar, or widgets. &lt;a href=&quot;https://github.com/lihaoyun6/AirBattery&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/kyleneideck/BackgroundMusic&quot;&gt;Background Music&lt;/a&gt; - Control app volumes and record system audio. &lt;a href=&quot;https://github.com/kyleneideck/BackgroundMusic&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/luke-fairbanks/BatteryHog&quot;&gt;Battery Hog&lt;/a&gt; - Shows what is draining the battery: live watts, per-app energy, charge history, and drain insights. 100% local. &lt;a href=&quot;https://github.com/luke-fairbanks/BatteryHog&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.coconut-flavour.com/coconutbattery/&quot;&gt;coconutBattery&lt;/a&gt; - Mac battery information and statistics.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/JerryZLiu/Dayflow&quot;&gt;Dayflow&lt;/a&gt; - Screen activity timeline with AI support. &lt;a href=&quot;https://github.com/JerryZLiu/Dayflow&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/bwya77/DockAnchor&quot;&gt;DockAnchor&lt;/a&gt; - Lock the macOS Dock to a single screen in a multi-monitor setup. &lt;a href=&quot;https://github.com/bwya77/DockAnchor&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/appledragon/everythingByMdfind&quot;&gt;everythingByMdfind&lt;/a&gt; - Fast file search using Spotlight. &lt;a href=&quot;https://github.com/appledragon/everythingByMdfind&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.kpchew.com/extendfs/&quot;&gt;ExtendFS&lt;/a&gt; - Read-only access to Linux ext2/3/4 in macOS Sequoia and later without a kernel extension. &lt;a href=&quot;https://github.com/kthchew/ExtendFS&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.apple.com/us/app/mount-ext4-drives-extendfs/id6755664332?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://gfx.io/&quot;&gt;gfxCardStatus&lt;/a&gt; - Monitor graphics card usage and battery impact. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://grandperspectiv.sourceforge.net&quot;&gt;GrandPerspective&lt;/a&gt; - Visualize disk usage with tree maps. &lt;a href=&quot;https://git.code.sf.net/p/grandperspectiv/source&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://sourceforge.net/projects/grandperspectiv/files/grandperspective/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.apple.com/us/app/grandperspective/id1111570163?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/zenangst/Gray&quot;&gt;Gray&lt;/a&gt; - Per-app light/dark mode switcher. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/zenangst/Gray&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.smartisan.com/apps/handshaker&quot;&gt;HandShaker&lt;/a&gt; - Manage Android phone content on Mac. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://bjango.com/mac/istatmenus/&quot;&gt;iStat Menus&lt;/a&gt; - Advanced system monitor for menubar.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Chris911/iStats&quot;&gt;iStats&lt;/a&gt; - Command-line system information tool. &lt;a href=&quot;https://github.com/Chris911/iStats&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/brianmichel/Juice&quot;&gt;Juice&lt;/a&gt; - Enhanced battery information display. &lt;a href=&quot;https://github.com/brianmichel/Juice&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/newmarcel/KeepingYouAwake&quot;&gt;KeepingYouAwake&lt;/a&gt; - Caffeine alternative with dark mode support. &lt;a href=&quot;https://github.com/newmarcel/KeepingYouAwake&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Kruszoneq/macUSB&quot;&gt;macUSB&lt;/a&gt; - A bootable macOS / OS X installer creator for Apple Silicon Macs. &lt;a href=&quot;https://github.com/Kruszoneq/macUSB&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://magicquit.com/&quot;&gt;MagicQuit&lt;/a&gt; - Automatically quit inactive apps to reduce clutter and free resources. &lt;a href=&quot;https://github.com/BigBerny/magicquit&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/NullPointerDepressiveDisorder/MiddleDrag&quot;&gt;MiddleDrag&lt;/a&gt; - Three-finger trackpad gestures for middle-click and middle-drag on macOS. &lt;a href=&quot;https://github.com/NullPointerDepressiveDisorder/MiddleDrag&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.monityapp.com/&quot;&gt;Monity&lt;/a&gt; - System monitoring widget for OS X.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://enjoygineering.com/mounty/&quot;&gt;Mounty&lt;/a&gt; - Tiny tool to re-mount write-protected NTFS volumes under Mac OS X 10.9+ in read-write mode. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://nitroshare.net/&quot;&gt;NitroShare&lt;/a&gt; - Cross-platform network file transfer utility. &lt;a href=&quot;https://github.com/nitroshare/nitroshare-desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.titanium-software.fr/en/onyx.html&quot;&gt;OnyX&lt;/a&gt; - System maintenance utility for cleanup, verification, and hidden settings. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.paragon-software.com/home/ntfs-mac/&quot;&gt;Paragon NTFS&lt;/a&gt; - Read/write access to NTFS in macOS Sierra.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/exelban/stats&quot;&gt;stats&lt;/a&gt; - free Mac system monitor for the menubar. &lt;a href=&quot;https://github.com/exelban/stats&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sensei.app/&quot;&gt;Sensei&lt;/a&gt; - Performance toolkit for monitoring, cleanup, and hardware diagnostics.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://siliconscope.calidalab.ai&quot;&gt;SiliconScope&lt;/a&gt; - Sudoless Apple Silicon system monitor (menu bar + dashboard) with first-class ANE, Media Engine and memory-bandwidth tracking plus an E/P-core breakdown — the chip-level signals Activity Monitor doesn&#39;t show. &lt;a href=&quot;https://github.com/kennss/SiliconScope&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Aboudjem/Sleepless&quot;&gt;Sleepless&lt;/a&gt; - Keeps your laptop awake with lid-closed support, auto-off timer, and battery-floor cutoff. &lt;a href=&quot;https://github.com/Aboudjem/Sleepless&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sleepr.app/&quot;&gt;Sleepr&lt;/a&gt; - Sleepr brings back sleep timer on macOS. &lt;a href=&quot;https://apps.apple.com/us/app/sleepr-app/id6465683427?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://sveinbjorn.org/sloth/&quot;&gt;Sloth&lt;/a&gt; - Shows all open files, directories, sockets, pipes and devices in use by all running processes. &lt;a href=&quot;https://github.com/sveinbjornt/Sloth/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://plentycom.jp/en/steermouse/&quot;&gt;SteerMouse&lt;/a&gt; - Customize mouse buttons, wheel behavior, and cursor speed.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/onebadidea/swiftquit/&quot;&gt;SwiftQuit&lt;/a&gt; - Enables automatic quitting of macOS apps when closing their windows. &lt;a href=&quot;https://github.com/onebadidea/swiftquit&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Neighbor-Z/SwiftMTP&quot;&gt;SwiftMTP&lt;/a&gt; - Open-source MTP device manager for browsing and transferring files between Mac and Android devices. &lt;a href=&quot;https://github.com/Neighbor-Z/SwiftMTP&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://codinn.com/tunnel/&quot;&gt;Core Tunnel&lt;/a&gt; - Application for managing SSH connections. &lt;a href=&quot;https://apps.apple.com/us/app/core-tunnel/id1354318707?platform=mac&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-app-store.svg?sanitize=true&quot; alt=&quot;App Store&quot; title=&quot;App Store Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.tunabellysoftware.com/tgpro/&quot;&gt;TG Pro&lt;/a&gt; - Temperature monitoring, fan control &amp;amp; hardware diagnostics to help keep your Mac cool and healthy.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/probablykasper/time-machine-inspector&quot;&gt;Time Machine Inspector&lt;/a&gt; - Find out what&#39;s hogging up your Time Machine backups. &lt;a href=&quot;https://github.com/probablykasper/time-machine-inspector&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.tuxera.com/products/tuxera-ntfs-for-mac/&quot;&gt;Tuxera NTFS&lt;/a&gt; - Full read-write compatibility with NTFS-formatted drives on a Mac.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/KrauseFx/overkill-for-mac&quot;&gt;Overkill&lt;/a&gt; - Stop iTunes from opening when you connect your iPhone.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Gaming Software&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://openemu.org/&quot;&gt;OpenEmu&lt;/a&gt; - Retro game emulator frontend for multiple console systems. &lt;a href=&quot;https://github.com/OpenEmu/OpenEmu&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/PlayCover/PlayCover&quot;&gt;PlayCover&lt;/a&gt; - Run iOS apps and games on Apple Silicon Macs with mouse, keyboard and controller support. &lt;a href=&quot;https://github.com/PlayCover/PlayCover&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://portingkit.com/&quot;&gt;Porting Kit&lt;/a&gt; - Install Windows® Games inside your Mac. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.ppsspp.org&quot;&gt;PPSSPP&lt;/a&gt; - A awesome PSP emulator for any OS you can dream of! &lt;a href=&quot;https://github.com/hrydgard/ppsspp&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rpcs3.net&quot;&gt;RPCS3&lt;/a&gt; - The Open-source PlayStation 3 Emulator &lt;a href=&quot;https://github.com/RPCS3/rpcs3&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Ryubing&quot;&gt;Ryubing&lt;/a&gt; - A fork of the discontinued Switch emulator, Ryujinx. &lt;a href=&quot;https://github.com/Ryubing&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://suyu.dev/&quot;&gt;Suyu&lt;/a&gt; - A familiar, open source, and powerful Nintendo Switch emulator. &lt;a href=&quot;https://git.suyu.dev/suyu/suyu&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/frankea/Whisky&quot;&gt;Whisky&lt;/a&gt; - A tool for running Windows apps on macOS, built with SwiftUI and supporting D3DMetal and DXVK backends. &lt;a href=&quot;https://github.com/frankea/Whisky&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/momenbasel/ConsoleMini&quot;&gt;ConsoleMini&lt;/a&gt; - Controller-first big-picture launcher that turns a Mac mini into a PS1-PS4 + retro console (wraps DuckStation, PCSX2, RPCS3, shadPS4, PPSSPP, RetroArch, mGBA, Flycast). &lt;a href=&quot;https://github.com/momenbasel/ConsoleMini&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Remote Login Software&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://anydesk.com&quot;&gt;AnyDesk&lt;/a&gt; - Provides remote access across multiple machines.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/MoonProxyHQ/moonproxy-desktop&quot;&gt;MoonProxy&lt;/a&gt; - GUI desktop client for FRP that puts local services on the internet with one click. &lt;a href=&quot;https://github.com/MoonProxyHQ/moonproxy-desktop&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/moonlight-stream/moonlight-qt&quot;&gt;Moonlight&lt;/a&gt; - GameStream client for PCs (Windows, Mac, Linux, and Steam Link). &lt;a href=&quot;https://github.com/moonlight-stream/moonlight-qt&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://parsec.app&quot;&gt;Parsec&lt;/a&gt; - Low-latency remote desktop and game streaming tool.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.realvnc.com&quot;&gt;RealVNC&lt;/a&gt; - The original and best software for remote access across desktop and mobile.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.royalapps.com/ts/mac/features&quot;&gt;RoyalTSX&lt;/a&gt; - Remote connection manager for multiple protocols. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://rustdesk.com/&quot;&gt;RustDesk&lt;/a&gt; - Yet another remote desktop software. &lt;a href=&quot;https://github.com/rustdesk/rustdesk&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/us/app/steam-link/id1246969117?platform=mac&quot;&gt;Steam Link&lt;/a&gt; - The Steam Link app allows you to play your Steam games across all your computers. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/LizardByte/Sunshine&quot;&gt;Sunshine&lt;/a&gt; - Self-hosted game stream host for Moonlight. &lt;a href=&quot;https://github.com/LizardByte/Sunshine&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.teamviewer.com/en&quot;&gt;TeamViewer&lt;/a&gt; - Remote support and screen sharing tool. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/us/app/windows-app/id1295203466?platform=mac&quot;&gt;Windows App&lt;/a&gt; - Connect to a remote PC or virtual apps and desktops made available by your admin. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;QuickLook Plugins&lt;/h2&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;&lt;a href=&quot;https://github.com/sindresorhus/quick-look-plugins#readme&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-awesome.svg?sanitize=true&quot; alt=&quot;Awesome List&quot; title=&quot;Awesome List&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/adamorad/csv-quick-look&quot;&gt;CSV Quick Look&lt;/a&gt; - Quick Look extension for CSV and TSV files with virtual scrolling, sorting, filtering, and dark mode. &lt;a href=&quot;https://github.com/adamorad/csv-quick-look&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sbarex/QLMarkdown&quot;&gt;QLMarkdown&lt;/a&gt; - Quick Look extension for Markdown files. - &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/xykong/flux-markdown&quot;&gt;FluxMarkdown&lt;/a&gt; - Quick Look extension for Markdown previews with Mermaid, KaTeX, GFM, TOC, and charts. &lt;a href=&quot;https://github.com/xykong/flux-markdown&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ruspg/markdown-quicklook&quot;&gt;markdown-quicklook&lt;/a&gt; - Quick Look plugin for rendered Markdown previews with syntax highlighting. &lt;a href=&quot;https://github.com/ruspg/markdown-quicklook&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sveinbjornpalsson/torrentpreview/&quot;&gt;Torrent Preview&lt;/a&gt; - Quick Look extension for previewing &lt;code&gt;.torrent&lt;/code&gt; files, trackers, and metadata. &lt;a href=&quot;https://github.com/sveinbjornpalsson/torrentpreview/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sindresorhus/quick-look-plugins&quot;&gt;quick-look-plugins&lt;/a&gt; - List of useful &lt;a href=&quot;https://en.wikipedia.org/wiki/Quick_Look&quot;&gt;Quick Look&lt;/a&gt; plugins for developers&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sbarex/SourceCodeSyntaxHighlight&quot;&gt;Syntax Highlight&lt;/a&gt; - Quick Look extension for highlight source code files. - &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Third Party App Markets&lt;/h2&gt; 
&lt;p&gt;If you come across websites offering pirated software or cracks, please post &lt;a href=&quot;https://github.com/jaywcjlove/awesome-mac/issues/17&quot;&gt;HERE&lt;/a&gt;. We love apps, but only authentic ones. 😃&lt;/p&gt; 
&lt;h3&gt;Package Managers&lt;/h3&gt; 
&lt;p&gt;&lt;em&gt;Here are some of the major software download sites, there are a number of OSX Mac software sites&lt;/em&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://aerolite.dev/applite&quot;&gt;Applite&lt;/a&gt; - User-friendly GUI app for Homebrew Casks. Install, update, and uninstall apps with a single click. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/milanvarady/Applite&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://corkmac.app&quot;&gt;Cork&lt;/a&gt; - An intuitive and complete Homebrew GUI written in SwiftUI that supports all Homebrew features. &lt;a href=&quot;https://github.com/buresdv/cork&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://brew.sh/&quot;&gt;Homebrew&lt;/a&gt; - The missing package manager for macOS. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/Homebrew/brew/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.macports.org/&quot;&gt;MacPorts&lt;/a&gt; - Package manager for installing and maintaining open-source software. &lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-free.svg?sanitize=true&quot; alt=&quot;Freeware&quot; title=&quot;Freeware&quot; /&gt; &lt;a href=&quot;https://github.com/macports/&quot;&gt;&lt;img src=&quot;https://jaywcjlove.github.io/sb/ico/min-oss.svg?sanitize=true&quot; alt=&quot;Open-Source Software&quot; title=&quot;Open Source Software&quot; /&gt;&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.macupdate.com/&quot;&gt;MacUpdate Desktop&lt;/a&gt; - Simplifies finding, buying and installing apps for your Mac.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Mac App Download Sites&lt;/h2&gt; 
&lt;p&gt;&lt;em&gt;Here are some of the major software download sites, there are a number of OSX Mac software sites&lt;/em&gt;&lt;/p&gt; 
&lt;h3&gt;Genuine Sites&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://alternativeto.net/&quot;&gt;alternativeTo&lt;/a&gt; - Also a very nice community. If you are looking for some alternative apps &lt;strong&gt;FOR&lt;/strong&gt; Windows or another platform, check this site.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.slant.co&quot;&gt;Slant&lt;/a&gt; - Platform for comparing software and browsing community recommendations.&lt;/li&gt; 
 &lt;li&gt;Also, &lt;a href=&quot;https://www.quora.com/&quot;&gt;Quora&lt;/a&gt;, &lt;a href=&quot;https://www.reddit.com&quot;&gt;Reddit&lt;/a&gt;, you know the drill.&lt;/li&gt; 
 &lt;li&gt;App Shopper：&lt;a href=&quot;https://appshopper.com/&quot;&gt;https://appshopper.com/&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://buyoncesoftware.com/&quot;&gt;Buy software, once&lt;/a&gt; - The place to find all the software you can buy one time, and own for a lifetime.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://openalternative.co/&quot;&gt;Open Alternative&lt;/a&gt; - Discover Open Source Alternatives to Popular Software. A curated collection of the best open source alternatives to everyday SaaS products. Save money with reliable tools hand-picked for you.&lt;/li&gt; 
 &lt;li&gt;MacUpdate：&lt;a href=&quot;https://www.macupdate.com/&quot;&gt;https://www.macupdate.com/&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Other sites like &lt;a href=&quot;https://www.macstories.net/&quot;&gt;MacStories&lt;/a&gt;, &lt;a href=&quot;https://lifehacker.com/&quot;&gt;LifeHacker&lt;/a&gt;, &lt;a href=&quot;https://www.producthunt.com/topics/mac&quot;&gt;ProductHunt&lt;/a&gt; are great resources.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Pirated software download site blocklist&lt;/h3&gt; 
&lt;p&gt;&lt;em&gt;Refuse piracy from me. Software vendors can go to these places rights.&lt;/em&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;AppKed：&lt;s&gt;&lt;code&gt;https://www.macbed.com&lt;/code&gt;&lt;/s&gt;&lt;/li&gt; 
 &lt;li&gt;Softasm：&lt;s&gt;&lt;code&gt;https://softasm.com/&lt;/code&gt;&lt;/s&gt;&lt;/li&gt; 
 &lt;li&gt;Appstorrent：&lt;s&gt;&lt;code&gt;https://appstorrent.ru/&lt;/code&gt;&lt;/s&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/jaywcjlove/awesome-mac/master/#contents&quot;&gt;⬆ back to top&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt; 
&lt;!--end--&gt; 
&lt;h2&gt;Contributors&lt;/h2&gt; 
&lt;p&gt;This project exists thanks to all the people who contribute.&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/jaywcjlove/awesome-mac/graphs/contributors&quot;&gt;&lt;img src=&quot;https://opencollective.com/awesome-mac/contributors.svg?width=890&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://creativecommons.org/licenses/by/4.0/&quot;&gt;&lt;img src=&quot;https://i.creativecommons.org/l/by/4.0/88x31.png&quot; alt=&quot;Creative Commons License&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;This work is licensed under a &lt;a href=&quot;https://creativecommons.org/licenses/by/4.0/&quot;&gt;Creative Commons Attribution 4.0 International License&lt;/a&gt;.&lt;/p&gt; 
&lt;!--idoc:config:
title: Awesome Mac application sharing recommendation -
description: A curated list of awesome applications, softwares, tools and shiny things for Mac osx. - Awesome Mac
--&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/63539055/b27e6d80-dc82-11e9-88a8-f2d918b1139b" medium="image" />
      
    </item>
    
    <item>
      <title>momenbasel/PureMac</title>
      <link>https://github.com/momenbasel/PureMac</link>
      <description>&lt;p&gt;Free, open-source macOS cleaner. CleanMyMac alternative with zero telemetry. Native SwiftUI, scheduled auto-cleaning, Xcode/Homebrew/system cache cleanup. MIT licensed.&lt;/p&gt;&lt;hr&gt;&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/screenshots/smart-care.png&quot; alt=&quot;PureMac Smart Care - one scan covering 12 cleanup checks, with free-space meter&quot; width=&quot;820&quot; /&gt; &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/screenshots/scanning.png&quot; alt=&quot;PureMac scanning - live progress with categories and sizes as they are found&quot; width=&quot;820&quot; /&gt; &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;b&gt;English&lt;/b&gt; | &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/docs/README.ar.md&quot;&gt;العربية&lt;/a&gt; | &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/docs/README.es.md&quot;&gt;Español&lt;/a&gt; | &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/docs/README.ja.md&quot;&gt;日本語&lt;/a&gt; | &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/docs/README.zh-Hans.md&quot;&gt;简体中文&lt;/a&gt; | &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/docs/README.zh-Hant.md&quot;&gt;繁體中文&lt;/a&gt; &lt;/p&gt; 
&lt;h1 align=&quot;center&quot;&gt;PureMac&lt;/h1&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;b&gt;Reclaim your Mac.&lt;/b&gt;&lt;br /&gt; Free, open-source uninstaller and cleaner for macOS. No subscription, no telemetry, no upsell. &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://github.com/momenbasel/PureMac/releases/latest&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/v/release/momenbasel/PureMac?style=flat-square&amp;amp;label=Download&quot; alt=&quot;Latest Release&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/badge/macOS-13.0+-blue?style=flat-square&quot; alt=&quot;macOS 13.0+&quot; /&gt; &lt;img src=&quot;https://img.shields.io/badge/Signed%20%26%20Notarized-Apple-success?style=flat-square&quot; alt=&quot;Signed &amp;amp; Notarized by Apple&quot; /&gt; &lt;img src=&quot;https://img.shields.io/badge/telemetry-none-success?style=flat-square&quot; alt=&quot;No telemetry&quot; /&gt; &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/LICENSE&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/license/momenbasel/PureMac?style=flat-square&quot; alt=&quot;MIT License&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/momenbasel/PureMac/stargazers&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/stars/momenbasel/PureMac?style=flat-square&quot; alt=&quot;Stars&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/momenbasel/PureMac/releases&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/downloads/momenbasel/PureMac/total?style=flat-square&amp;amp;label=Downloads&quot; alt=&quot;Downloads&quot; /&gt;&lt;/a&gt; &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/#install&quot;&gt;Install&lt;/a&gt; - &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/#why-this-exists&quot;&gt;Why this exists&lt;/a&gt; - &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/#how-it-compares&quot;&gt;How it compares&lt;/a&gt; - &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/#our-promise&quot;&gt;Our promise&lt;/a&gt; - &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/#what-it-does&quot;&gt;What it does&lt;/a&gt; - &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/#permissions&quot;&gt;Permissions&lt;/a&gt; - &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/#contributing&quot;&gt;Contributing&lt;/a&gt; &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;sub&gt;Want more open source? Try &lt;a href=&quot;https://github.com/momenbasel/pesty&quot;&gt;&lt;b&gt;Pesty&lt;/b&gt;&lt;/a&gt; - a free, native clipboard manager for macOS.&lt;/sub&gt; &lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Install&lt;/h2&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;brew install --cask puremac
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Or download the signed, notarized &lt;code&gt;.dmg&lt;/code&gt; from &lt;a href=&quot;https://github.com/momenbasel/PureMac/releases/latest&quot;&gt;Releases&lt;/a&gt; and drag PureMac into &lt;code&gt;/Applications&lt;/code&gt;. No Gatekeeper warnings, no quarantine workaround.&lt;/p&gt; 
&lt;h3&gt;Build from source&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;brew install xcodegen
git clone https://github.com/momenbasel/PureMac.git
cd PureMac
xcodegen generate
xcodebuild -project PureMac.xcodeproj -scheme PureMac -configuration Release \
  -derivedDataPath build build
open build/Build/Products/Release/PureMac.app
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;How it compares&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;&lt;/th&gt; 
   &lt;th style=&quot;text-align:center&quot;&gt;&lt;strong&gt;PureMac&lt;/strong&gt;&lt;/th&gt; 
   &lt;th style=&quot;text-align:center&quot;&gt;CleanMyMac&lt;/th&gt; 
   &lt;th style=&quot;text-align:center&quot;&gt;Pearcleaner&lt;/th&gt; 
   &lt;th style=&quot;text-align:center&quot;&gt;Mole&lt;/th&gt; 
   &lt;th style=&quot;text-align:center&quot;&gt;OnyX&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Price&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Free&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;$40+/yr&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Free&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;CLI free / GUI paid&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Free&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Open source&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Yes (MIT)&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;No&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Source-available¹&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;CLI only&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;No&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Native Mac GUI&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Yes&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Terminal-first&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;No telemetry&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Yes&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;No&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;No subscription&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Yes&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;No&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;—&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Signed + notarized&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Yes&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;—&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;App uninstaller + orphans&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Yes&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Partial&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;No&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Trash-only (recoverable)&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Yes&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Partial&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Yes&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;Partial&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;No&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Honest about purgeable space&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Yes&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;No&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;n/a&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;n/a&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;n/a&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;p&gt;&lt;sub&gt;¹ Pearcleaner is Apache 2.0 &lt;strong&gt;+ Commons Clause&lt;/strong&gt; - source-available but not OSI-approved (you may not sell it). PureMac is true MIT. Comparison reflects publicly documented features as of 2026; corrections welcome via PR.&lt;/sub&gt;&lt;/p&gt; 
&lt;h2&gt;Our promise&lt;/h2&gt; 
&lt;p&gt;A Mac cleaner asks for the deepest permission macOS grants - Full Disk Access - and then deletes your files. That demands a level of trust the category has spent twenty years burning. Here&#39;s the contract PureMac holds itself to, and you can verify every line of it in the source:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Trash, never &lt;code&gt;rm&lt;/code&gt;.&lt;/strong&gt; Everything PureMac removes goes to the Trash via &lt;code&gt;FileManager.trashItem&lt;/code&gt;. If it was wrong, you drag it back. Nothing is shredded or unlinked.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;No telemetry, ever.&lt;/strong&gt; No analytics, no crash reporting, no &quot;anonymous usage stats,&quot; no network calls to us. The app doesn&#39;t know you exist.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;No fake urgency.&lt;/strong&gt; No dramatized &quot;47 GB of junk detected!&quot; badge, no red alarm counters, no &quot;your Mac is at risk.&quot; We show you neutral facts and let you decide.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;No overpromising.&lt;/strong&gt; We don&#39;t claim to &quot;reclaim purgeable space,&quot; &quot;boost RAM,&quot; or &quot;speed up your Mac&quot; - things no app can reliably do. See the purgeable-space note below.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;You review before anything is removed.&lt;/strong&gt; Nothing is auto-deleted. Every item shows its real path with Reveal-in-Finder, and high-risk system paths are hard-excluded in code.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Auditable.&lt;/strong&gt; It&#39;s MIT. The exact code that decides what gets removed is in &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/PureMac/Services&quot;&gt;&lt;code&gt;PureMac/Services&lt;/code&gt;&lt;/a&gt; and &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/PureMac/Logic/Scanning&quot;&gt;&lt;code&gt;PureMac/Logic/Scanning&lt;/code&gt;&lt;/a&gt;. Read it. Fork it. Ship your own.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;If PureMac ever adds telemetry, a paywall on core features, or a fear-based scan, it will have become the thing it was built to replace. Hold us to this.&lt;/p&gt; 
&lt;h2&gt;Why this exists&lt;/h2&gt; 
&lt;p&gt;Apple sells base-model Macs with 256 GB SSDs that you can&#39;t upgrade. The Mac mini, the Air, every entry-level MacBook Pro - the drive is soldered down. The next storage tier costs more than a midrange Windows laptop. Once you&#39;ve paid it, every gigabyte you&#39;ve already bought matters.&lt;/p&gt; 
&lt;p&gt;Most Mac cleaners are subscription apps that hide their disk usage behind a paywall, ship telemetry by default, and trade on FUD (&quot;47 GB of junk detected!&quot;). PureMac is the opposite:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;One-time install.&lt;/strong&gt; No subscription, no trial, no account.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;No telemetry.&lt;/strong&gt; It never phones home. It doesn&#39;t even know you exist.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Open source under MIT.&lt;/strong&gt; Read the code, fork it, audit it.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Honest scans.&lt;/strong&gt; &quot;Junk&quot; means actually-junk: cache directories the OS itself would purge, orphaned files left by apps you&#39;ve already deleted, broken installer receipts, that 4 GB Xcode DerivedData blob from 2023.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Real uninstalls.&lt;/strong&gt; Drag an app, see every preference plist, cache folder, container, launch agent and log file it dropped across your library, remove all of it at once.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;What it does&lt;/h2&gt; 
&lt;h3&gt;App Uninstaller&lt;/h3&gt; 
&lt;p&gt;Discovers everything in &lt;code&gt;/Applications&lt;/code&gt; and &lt;code&gt;~/Applications&lt;/code&gt;, then uses a 10-level matching engine (bundle ID, team identifier, entitlements, Spotlight metadata, container discovery, company-name heuristics, partial path matches) to find every file the app dropped on your disk. Three sensitivity tiers - Strict, Enhanced, Deep - let you choose how aggressive that match is. Apple system apps are excluded from the uninstall list automatically. You can also right-click any app in Finder and choose &lt;strong&gt;Services → Uninstall with PureMac&lt;/strong&gt; to jump straight into its related-files scan.&lt;/p&gt; 
&lt;h3&gt;Orphan Finder&lt;/h3&gt; 
&lt;p&gt;Walks &lt;code&gt;~/Library&lt;/code&gt; and surfaces files left behind by apps that no longer exist on disk. The matcher compares against bundle identifiers and normalized names of every installed app, so a leftover &lt;code&gt;~/Library/Containers/com.foo.bar&lt;/code&gt; from an app you deleted in 2022 shows up clearly.&lt;/p&gt; 
&lt;h3&gt;System Cleaner&lt;/h3&gt; 
&lt;p&gt;Smart Scan runs every category in parallel. Each category is its own deliberate scanner:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;System Junk&lt;/strong&gt; - system caches, logs, temp files&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;User Cache&lt;/strong&gt; - dynamically discovered, no hardcoded app list&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;AI Apps&lt;/strong&gt; - Ollama and LM Studio logs, caches, opt-in history cleanup&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Mail Files&lt;/strong&gt; - downloaded mail attachments&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Trash Bins&lt;/strong&gt; - empties all bins, including external volumes&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Large &amp;amp; Old Files&lt;/strong&gt; - &amp;gt;100 MB or older than 1 year (never auto-selected)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Xcode Junk&lt;/strong&gt; - DerivedData, Archives, simulator caches&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Brew Cache&lt;/strong&gt; - respects custom &lt;code&gt;HOMEBREW_CACHE&lt;/code&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Node Cache&lt;/strong&gt; - npm, yarn classic, pnpm content-addressable store&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Docker Cache&lt;/strong&gt; - images, containers, build cache&lt;/li&gt; 
&lt;/ul&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;&lt;strong&gt;On &quot;purgeable space&quot;:&lt;/strong&gt; PureMac shows your APFS purgeable space in the storage breakdown for transparency, but it deliberately does &lt;strong&gt;not&lt;/strong&gt; list it as junk to delete. Purgeable space is reserved and reclaimed by macOS itself - no third-party app can reliably free it, and even the Finder&#39;s purgeable figure is known to be inaccurate. Cleaners that claim to &quot;reclaim purgeable space&quot; are overpromising. We&#39;d rather be honest than impressive.&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;h3&gt;Scheduled Cleaning&lt;/h3&gt; 
&lt;p&gt;Optional. Configurable interval (hourly to monthly), with auto-clean threshold so background runs only fire when there&#39;s something meaningful to remove.&lt;/p&gt; 
&lt;h2&gt;Permissions&lt;/h2&gt; 
&lt;p&gt;PureMac needs &lt;strong&gt;Full Disk Access&lt;/strong&gt; to read the locations macOS hides from every app by default - Mail downloads, Safari data, the TCC database, protected app containers. Without it, the cleanup categories miss roughly 70% of what they could find and app uninstalls leave behind everything in &lt;code&gt;~/Library/Containers&lt;/code&gt;.&lt;/p&gt; 
&lt;p&gt;The first-launch onboarding walks you through granting it with an animated preview of the exact toggle you need to flip. If you skip it, the dashboard surfaces a single-click &quot;Set up&quot; pill. If a cleanup fails because of a permission issue, PureMac opens System Settings, reveals its bundle in Finder so you can drag it into the FDA list, polls the permission state every second, and auto-retries the failed batch the moment you grant access. You never have to re-select anything.&lt;/p&gt; 
&lt;p&gt;What PureMac does &lt;em&gt;not&lt;/em&gt; do:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;It does not collect telemetry, crash reports, or usage analytics.&lt;/li&gt; 
 &lt;li&gt;It does not require a network connection to operate.&lt;/li&gt; 
 &lt;li&gt;It does not move data anywhere except the Trash.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Troubleshooting&lt;/h2&gt; 
&lt;h3&gt;Launchpad / Dock shows a stale or dull PureMac icon&lt;/h3&gt; 
&lt;p&gt;macOS aggressively caches app icons in LaunchServices. After a Homebrew &lt;strong&gt;reinstall or upgrade&lt;/strong&gt; the Dock and Launchpad can keep showing the old cached icon. PureMac&#39;s cask now runs &lt;code&gt;lsregister -f&lt;/code&gt; on install to refresh it automatically, but if a stale icon persists, reset the cache manually:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# Clear the icon caches and rebuild the LaunchServices database
sudo rm -rfv /Library/Caches/com.apple.iconservices.store
sudo find /private/var/folders/ \( -name com.apple.dock.iconcache -or -name com.apple.iconservices \) -exec rm -rfv {} \; 2&amp;gt;/dev/null
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister \
  -kill -r -domain local -domain user -domain system
killall Dock; killall Finder
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Give it a minute to re-seed, then open PureMac once. If it still sticks, a restart (or Safe Mode boot) forces a full rebuild.&lt;/p&gt; 
&lt;h2&gt;Screenshots&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Smart Care&lt;/th&gt; 
   &lt;th&gt;Live scan&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;img src=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/screenshots/smart-care.png&quot; alt=&quot;Smart Care&quot; /&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;img src=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/screenshots/scanning.png&quot; alt=&quot;Live scan&quot; /&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Scan breakdown&lt;/th&gt; 
   &lt;th&gt;App Uninstaller&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;img src=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/screenshots/breakdown.png&quot; alt=&quot;Scan breakdown&quot; /&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;img src=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/screenshots/app-uninstaller.png&quot; alt=&quot;App Uninstaller&quot; /&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;System Junk&lt;/th&gt; 
   &lt;th&gt;Xcode Junk&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;img src=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/screenshots/system-junk.png&quot; alt=&quot;System Junk&quot; /&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;img src=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/screenshots/xcode-junk.png&quot; alt=&quot;Xcode Junk&quot; /&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;User Cache&lt;/th&gt; 
   &lt;th&gt;Onboarding&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;img src=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/screenshots/user-cache.png&quot; alt=&quot;User Cache&quot; /&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;img src=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/screenshots/onboarding.png&quot; alt=&quot;Onboarding&quot; /&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h2&gt;Architecture&lt;/h2&gt; 
&lt;pre&gt;&lt;code&gt;PureMac/
  Logic/Scanning/     - Heuristic scan engine, locations database, conditions
  Logic/Utilities/    - Structured logging
  Models/             - Data models, typed errors
  Services/           - Scan engine, cleaning engine, permission coordinator, scheduler
  ViewModels/         - Centralized app state
  Views/              - Native SwiftUI views
    Apps/             - App uninstaller views
    Components/       - Shared components (FDA demo, permission sheet, theme)
    Orphans/          - Orphan finder
    Settings/         - Native Form-based settings
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Key components:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;AppPathFinder&lt;/strong&gt; - 10-level heuristic matching engine for discovering app-related files&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Locations&lt;/strong&gt; - 120+ macOS filesystem search paths&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Conditions&lt;/strong&gt; - 25 per-app matching rules for edge cases (Xcode, Chrome, VS Code, etc.)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;PermissionCoordinator&lt;/strong&gt; - Single source of truth for FDA prompts, polling, and post-grant retries&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;FullDiskAccessManager&lt;/strong&gt; - TCC probe + registration; broad probe paths (Mail, Safari, Messages, AddressBook, Calendars) so macOS catalogs the bundle reliably&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;CleaningEngine&lt;/strong&gt; - Symlink-resistant deletion with an allow-list, NSAppleScript-based admin escalation for root-owned items, NUL-separated path staging for xargs&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Security&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Symlink attack prevention: paths are resolved before validation, re-resolved immediately before unlink to close TOCTOU windows.&lt;/li&gt; 
 &lt;li&gt;Allow-list cleaning: a path that doesn&#39;t sit inside an explicit safe-root is refused, even for the user-level pass.&lt;/li&gt; 
 &lt;li&gt;Admin escalation is gated by a &lt;em&gt;narrower&lt;/em&gt; allow-list (app bundles, package receipts, launch plists) than the normal cleaner — root-owned items can only be removed inside those roots.&lt;/li&gt; 
 &lt;li&gt;System app protection: Apple&#39;s bundles cannot be uninstalled, regardless of selection.&lt;/li&gt; 
 &lt;li&gt;All destructive operations require explicit confirmation by default. The toggle that disables that confirmation is buried in Settings.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;If you find a vulnerability, please open a private security advisory rather than a public issue.&lt;/p&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;Pull requests welcome. See &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/CONTRIBUTING.md&quot;&gt;CONTRIBUTING.md&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;Especially welcome:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;Per-category size and date filter presets&lt;/li&gt; 
 &lt;li&gt;Wider XCTest coverage for &lt;code&gt;AppState&lt;/code&gt; and the scan engine&lt;/li&gt; 
 &lt;li&gt;Translations beyond the current set (en, ar, es, ja, pt-BR, zh-Hans, zh-Hant)&lt;/li&gt; 
 &lt;li&gt;App icon design&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Acknowledgments&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/nguyenhuy158&quot;&gt;@nguyenhuy158&lt;/a&gt;&lt;/strong&gt; - Search and filter feature (&lt;a href=&quot;https://github.com/momenbasel/PureMac/issues/18&quot;&gt;#18&lt;/a&gt;, &lt;a href=&quot;https://github.com/momenbasel/PureMac/pull/29&quot;&gt;#29&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/edufalcao&quot;&gt;@edufalcao&lt;/a&gt;&lt;/strong&gt; - Cleaning safety guards and confirmation dialogs (&lt;a href=&quot;https://github.com/momenbasel/PureMac/pull/30&quot;&gt;#30&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/zeck00&quot;&gt;@zeck00&lt;/a&gt;&lt;/strong&gt; - UI overhaul (&lt;a href=&quot;https://github.com/momenbasel/PureMac/pull/31&quot;&gt;#31&lt;/a&gt;), app uninstaller with system app protection (&lt;a href=&quot;https://github.com/momenbasel/PureMac/pull/32&quot;&gt;#32&lt;/a&gt;), onboarding experience (&lt;a href=&quot;https://github.com/momenbasel/PureMac/pull/33&quot;&gt;#33&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/0x-man&quot;&gt;@0x-man&lt;/a&gt;&lt;/strong&gt; - Symlink security vulnerability report (&lt;a href=&quot;https://github.com/momenbasel/PureMac/issues/25&quot;&gt;#25&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/ansidev&quot;&gt;@ansidev&lt;/a&gt;&lt;/strong&gt; - Checkbox interaction bug report (&lt;a href=&quot;https://github.com/momenbasel/PureMac/issues/34&quot;&gt;#34&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/fengcheng01&quot;&gt;@fengcheng01&lt;/a&gt;&lt;/strong&gt; - App uninstaller feature request (&lt;a href=&quot;https://github.com/momenbasel/PureMac/issues/28&quot;&gt;#28&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/scholzfuni&quot;&gt;@scholzfuni&lt;/a&gt;&lt;/strong&gt; - Modularization proposal (&lt;a href=&quot;https://github.com/momenbasel/PureMac/issues/23&quot;&gt;#23&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/Zonharo&quot;&gt;@Zonharo&lt;/a&gt;&lt;/strong&gt; - In-app auto-update request (&lt;a href=&quot;https://github.com/momenbasel/PureMac/issues/94&quot;&gt;#94&lt;/a&gt;)&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Star History&lt;/h2&gt; 
&lt;p&gt;If PureMac saved you some disk space, a star helps other people find it.&lt;/p&gt; 
&lt;a href=&quot;https://star-history.com/#momenbasel/PureMac&amp;amp;Date&quot;&gt; 
 &lt;picture&gt; 
  &lt;source media=&quot;(prefers-color-scheme: dark)&quot; srcset=&quot;https://api.star-history.com/svg?repos=momenbasel/PureMac&amp;amp;type=Date&amp;amp;theme=dark&quot; /&gt; 
  &lt;source media=&quot;(prefers-color-scheme: light)&quot; srcset=&quot;https://api.star-history.com/svg?repos=momenbasel/PureMac&amp;amp;type=Date&quot; /&gt; 
  &lt;img alt=&quot;PureMac star history chart&quot; src=&quot;https://api.star-history.com/svg?repos=momenbasel/PureMac&amp;amp;type=Date&quot; width=&quot;720&quot; /&gt; 
 &lt;/picture&gt; &lt;/a&gt; 
&lt;h2&gt;More open source&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/momenbasel/pesty&quot;&gt;Pesty&lt;/a&gt;&lt;/strong&gt; - a free, open-source clipboard manager for macOS. Color-coded history, pinboards, instant search, keyboard-fast paste. Signed, notarized, &lt;code&gt;brew install --cask momenbasel/pesty/pesty&lt;/code&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;MIT. See &lt;a href=&quot;https://raw.githubusercontent.com/momenbasel/PureMac/main/LICENSE&quot;&gt;LICENSE&lt;/a&gt;. Use it, fork it, ship it under your own name if you want - the only thing the license asks is that the notice stays.&lt;/p&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/c37ab01fd6915e9eff0bf840dce0965e5fb9ed705c9a6f819b8fb646324d422c/momenbasel/PureMac" medium="image" />
      
    </item>
    
    <item>
      <title>duongductrong/Snapzy</title>
      <link>https://github.com/duongductrong/Snapzy</link>
      <description>&lt;p&gt;An open-source native macOS screenshot and screen recording app. A CleanShot X alternative.&lt;/p&gt;&lt;hr&gt;&lt;div align=&quot;center&quot;&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/banner.png&quot; width=&quot;200&quot; height=&quot;200&quot; alt=&quot;Snapzy banner&quot; /&gt; 
 &lt;h1&gt;Snapzy&lt;/h1&gt; 
 &lt;p&gt;&lt;strong&gt;Native macOS screenshots, recording, annotation, and editing from the menu bar.&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt; &lt;a href=&quot;https://trendshift.io/repositories/24550&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;https://trendshift.io/api/badge/repositories/24550&quot; alt=&quot;duongductrong%2FSnapzy | Trendshift&quot; style=&quot;width: 250px; height: 55px;&quot; width=&quot;250&quot; height=&quot;55&quot; /&gt;&lt;/a&gt; &lt;/p&gt; 
 &lt;p&gt; Built with &lt;a href=&quot;https://developer.apple.com/xcode/swiftui/&quot;&gt;SwiftUI&lt;/a&gt;, &lt;a href=&quot;https://developer.apple.com/documentation/appkit&quot;&gt;AppKit&lt;/a&gt;, &lt;a href=&quot;https://developer.apple.com/documentation/screencapturekit&quot;&gt;ScreenCaptureKit&lt;/a&gt;, &lt;a href=&quot;https://developer.apple.com/documentation/vision&quot;&gt;Vision&lt;/a&gt;, and &lt;a href=&quot;https://sparkle-project.org/&quot;&gt;Sparkle&lt;/a&gt;. &lt;/p&gt; 
 &lt;p&gt; &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/README.md&quot;&gt;🇺🇸 English&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/README.vi.md&quot;&gt;🇻🇳 Tiếng Việt&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/README.zh-CN.md&quot;&gt;🇨🇳 简体中文&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/README.ja.md&quot;&gt;🇯🇵 日本語&lt;/a&gt; &lt;/p&gt; 
 &lt;p&gt; &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/#features&quot;&gt;Features&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/#install&quot;&gt;Install&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/#raycast&quot;&gt;Raycast&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/#shortcuts&quot;&gt;Shortcuts&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/#development&quot;&gt;Development&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/#documentation&quot;&gt;Documentation&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/#community&quot;&gt;Community&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/#security&quot;&gt;Security&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/#contributing&quot;&gt;Contributing&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/#contributors&quot;&gt;Contributors&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/#acknowledgments&quot;&gt;Acknowledgments&lt;/a&gt; &lt;/p&gt; 
 &lt;p&gt; &lt;a href=&quot;https://github.com/duongductrong/Snapzy/stargazers&quot;&gt;&lt;img alt=&quot;GitHub Stars&quot; src=&quot;https://img.shields.io/github/stars/duongductrong/Snapzy?style=flat&amp;amp;logo=github&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/duongductrong/Snapzy/network/members&quot;&gt;&lt;img alt=&quot;GitHub Forks&quot; src=&quot;https://img.shields.io/github/forks/duongductrong/Snapzy?style=flat&amp;amp;logo=github&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/duongductrong/Snapzy/releases&quot;&gt;&lt;img alt=&quot;GitHub Downloads&quot; src=&quot;https://img.shields.io/github/downloads/duongductrong/Snapzy/total?style=flat&amp;amp;logo=github&quot; /&gt;&lt;/a&gt; &lt;/p&gt; 
 &lt;p&gt; &lt;a href=&quot;https://deepwiki.com/duongductrong/Snapzy&quot;&gt;&lt;img alt=&quot;Ask DeepWiki&quot; src=&quot;https://deepwiki.com/badge.svg?sanitize=true&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://discord.gg/xkWDAuJkZu&quot;&gt;&lt;img alt=&quot;Join Discord Community&quot; src=&quot;https://img.shields.io/badge/Discord-Join%20Community-5865F2?style=flat&amp;amp;logo=discord&amp;amp;logoColor=white&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://www.raycast.com/chkzz/snapzy&quot;&gt;&lt;img alt=&quot;Raycast Extension&quot; src=&quot;https://img.shields.io/badge/Raycast-Extension-FF6363?style=flat&amp;amp;logo=raycast&amp;amp;logoColor=white&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/#featured-on&quot;&gt;&lt;img alt=&quot;Featured On&quot; src=&quot;https://img.shields.io/badge/Featured%20On-Product%20Hunt%20%2B%20Unikorn-111827?style=flat&amp;amp;logo=producthunt&amp;amp;logoColor=white&quot; /&gt;&lt;/a&gt; &lt;/p&gt; 
 &lt;p&gt; &lt;a href=&quot;https://github.com/sponsors/duongductrong&quot;&gt;&lt;img alt=&quot;GitHub Sponsors&quot; src=&quot;https://img.shields.io/badge/Sponsor-%E2%9D%A4-ff69b4?style=flat&amp;amp;logo=github&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://ko-fi.com/duongductrong&quot;&gt;&lt;img alt=&quot;Ko-fi Donate&quot; src=&quot;https://img.shields.io/badge/Ko--fi-Donate-FF5E5B?style=flat&amp;amp;logo=ko-fi&amp;amp;logoColor=white&quot; /&gt;&lt;/a&gt; &lt;/p&gt; 
&lt;/div&gt; 
&lt;h2&gt;Features&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Screenshot&lt;/strong&gt;: fullscreen or selected-area capture with manual/application window mode toggle (&lt;code&gt;Application Capture&lt;/code&gt;, default &lt;code&gt;A&lt;/code&gt;), including already open third-party menu-bar popovers that would normally close when capture begins (restored visually for selection and saved with transparent rounded corners), area capture with inline annotate (annotate before saving), scrolling capture with live stitched preview, OCR text extraction with Apple Vision or custom OpenAI-compatible endpoints and a native result notification, transparent object cutout capture with optional safe auto-crop, window shadow capture (macOS 14+), multi-format export (PNG/JPG/WebP), hide desktop icons/widgets, quick screenshot during recording&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Screen Recording&lt;/strong&gt;: video or GIF output, system audio + microphone, mouse click highlights, keystroke overlays, live on-screen annotations, remember last area, GIF resizing, Smart Camera metadata for Follow Mouse edits&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Annotation Editor&lt;/strong&gt;: shapes, arrows, text, watermarks, filled rectangles, blur/pixelate, automatic local sensitive-data redaction, OCR text extraction from the image context menu, counters, highlighter with text snapping (⌘ to bypass), crop with edge-snapping (⌘ to bypass) and one-key auto-crop to content (&lt;code&gt;A&lt;/code&gt;), remove background with crop-aware auto-crop support, mockup backgrounds with 3D renderer, zoom/pan (pinch + keyboard), drag-to-app with optional keep-editing and editor reactivation behavior, configurable tool/action shortcuts&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;After Capture Settings&lt;/strong&gt;: per-mode action matrix for save, Quick Access, clipboard copy, and annotate plus a separate global remove-background auto-crop toggle (enabled by default)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Video Editor&lt;/strong&gt;: trim with visual timeline + frame strip, zoom segments with auto-focus (Follow Mouse), wallpaper backgrounds + padding, custom export dimensions, animated GIF viewer, undo/redo&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Quick Access&lt;/strong&gt;: floating panel after every capture with copy, edit, drag-to-app, two-finger swipe dismiss, open, and delete actions, plus configurable keyboard shortcuts that fire on the card you are hovering&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Capture History&lt;/strong&gt;: floating history panel + full browser for recent screenshots, videos, and GIFs with type/time filters, filename search, quick copy/open/delete actions, one-click reopen in Annotate or Video Editor, editable annotation restore for committed screenshot edits, configurable panel layout, and retention policies&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Shortcuts&lt;/strong&gt;: fully configurable global shortcuts for capture, recording, and annotation tools, with per-shortcut on/off control and system conflict detection&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Onboarding&lt;/strong&gt;: splash screen, first-run language selection, guided permissions setup, and shortcut configuration for first-time users&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Localization&lt;/strong&gt;: 🇺🇸 English, 🇻🇳 Vietnamese, 🇨🇳 Simplified Chinese, 🇹🇼 Traditional Chinese, 🇪🇸 Spanish, 🇯🇵 Japanese, 🇰🇷 Korean, 🇷🇺 Russian, 🇫🇷 French, and 🇩🇪 German app localization with native macOS per-app language support&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Cloud Upload&lt;/strong&gt;: privacy-first bring-your-own-storage via AWS S3 or Cloudflare R2 — no third-party servers, manual upload from Quick Access for screenshots, videos, and GIFs, or from Annotate for screenshots, credentials stored in the macOS Keychain with optional password protection, manual encrypted credential import/export for faster setup on another Mac, upload history, configurable auto-expiration (1–90 days or permanent), lifecycle rules, custom domain support&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Advanced Settings&lt;/strong&gt;: TOML export/import, one-time config folder grant, debounced background sync, safe sync-before-open, and launch-time auto-apply for portable preferences, dotfiles, backup, and machine-to-machine setup via &lt;code&gt;~/.config/snapzy/config.toml&lt;/code&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Updates &amp;amp; Diagnostics&lt;/strong&gt;: in-app updates via Sparkle, problem reporting with diagnostic log bundles, cache management&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Platform&lt;/strong&gt;: menu-bar app, appearance theming (light/dark/system), App Sandbox with secure file-access bookmarks&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Install&lt;/h2&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;Requires &lt;strong&gt;macOS 13.0&lt;/strong&gt; or later.&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;h3&gt;Homebrew&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;brew install --cask snapzy
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;Shell script&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# Install a specific version
curl -fsSL https://raw.githubusercontent.com/duongductrong/Snapzy/v1.30.1/install.sh | bash
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;Download a release&lt;/h3&gt; 
&lt;ol&gt; 
 &lt;li&gt;Go to &lt;a href=&quot;https://github.com/duongductrong/Snapzy/releases&quot;&gt;Releases&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Download the latest packaged app asset, typically &lt;code&gt;Snapzy-v&amp;lt;version&amp;gt;.dmg&lt;/code&gt;&lt;/li&gt; 
 &lt;li&gt;Move &lt;code&gt;Snapzy.app&lt;/code&gt; to &lt;code&gt;/Applications&lt;/code&gt;&lt;/li&gt; 
 &lt;li&gt;Launch Snapzy&lt;/li&gt; 
 &lt;li&gt;Grant Screen Recording permission when prompted in System Settings&lt;/li&gt; 
 &lt;li&gt;Re-launch Snapzy after granting Screen Recording if macOS asks for it&lt;/li&gt; 
 &lt;li&gt;Grant Microphone permission too if you want voice input in recordings&lt;/li&gt; 
&lt;/ol&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;Snapzy is signed and notarized by Apple. macOS will open it without any extra steps.&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;h2&gt;Uninstall&lt;/h2&gt; 
&lt;p&gt;To completely remove Snapzy, reset all permissions, and clean up app data:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;curl -fsSL https://raw.githubusercontent.com/duongductrong/Snapzy/master/uninstall.sh | bash
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Or if you cloned the repo:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;./uninstall.sh
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;This will remove the app from &lt;code&gt;/Applications&lt;/code&gt;, delete preferences and caches, and reset TCC permissions (Screen Recording, Microphone, Accessibility). You may need to log out or reboot for permission changes to fully take effect.&lt;/p&gt; 
&lt;h3&gt;Reset Permissions&lt;/h3&gt; 
&lt;p&gt;If you only want to reset TCC permissions (Screen Recording, Microphone, Accessibility) without uninstalling the app:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;curl -fsSL https://raw.githubusercontent.com/duongductrong/Snapzy/master/reset-permissions.sh | bash
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Or if you cloned the repo:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;./reset-permissions.sh
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Raycast&lt;/h2&gt; 
&lt;p&gt;Control Snapzy directly from Raycast using the official extension:&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://www.raycast.com/chkzz/snapzy&quot; title=&quot;Install snapzy Raycast Extension&quot;&gt;&lt;img src=&quot;https://www.raycast.com/chkzz/snapzy/install_button@2x.png?v=1.1&quot; height=&quot;64&quot; style=&quot;height: 64px;&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;Shortcuts&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Action&lt;/th&gt; 
   &lt;th&gt;Shortcut&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Fullscreen screenshot&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⇧⌘3&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Area screenshot&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⇧⌘4&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;↳ Toggle manual/app window mode (&lt;code&gt;Application Capture&lt;/code&gt;)&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;A&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Repeat last area screenshot&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⌃⌘⇧4&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Area screenshot + inline annotate&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⇧⌘7&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Scrolling screenshot&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⇧⌘6&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Screen recording (start/stop toggle)&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⇧⌘5&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Pause/Resume recording (optional, recommended &lt;code&gt;⌘⇧Space&lt;/code&gt;)&lt;/td&gt; 
   &lt;td&gt;&lt;em&gt;unset&lt;/em&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;OCR text capture&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⇧⌘2&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Object cutout capture&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⇧⌘1&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Smart element capture&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⌥⇧4&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Open Annotate&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⇧⌘A&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Open Video Editor&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⇧⌘E&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Open Cloud Uploads&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⇧⌘L&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Show shortcuts list&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⇧⌘K&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h3&gt;Quick Access card actions&lt;/h3&gt; 
&lt;p&gt;Hover a Quick Access card, then press the key. Active only while the pointer is over a card.&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Action&lt;/th&gt; 
   &lt;th&gt;Shortcut&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Copy&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⌘C&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Save / Open&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⌘S&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Edit&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⌘E&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Upload to cloud&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⌘U&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Pin to screen&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⌘P&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Delete&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⌘⌫&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Close&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;⌘W&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h2&gt;Automation&lt;/h2&gt; 
&lt;p&gt;Snapzy registers the &lt;code&gt;snapzy://&lt;/code&gt; URL scheme so launchers and automation tools (such as the &lt;a href=&quot;https://www.raycast.com/chkzz/snapzy&quot;&gt;Raycast Extension&lt;/a&gt;, Alfred, or custom scripts) can trigger capture actions. This integration can be toggled on or off under &lt;strong&gt;Settings -&amp;gt; Advanced -&amp;gt; URL Scheme integration&lt;/strong&gt;.&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Action&lt;/th&gt; 
   &lt;th&gt;URL&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Fullscreen screenshot&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://capture/fullscreen&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Area screenshot&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://capture/area&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Repeat area screenshot&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://capture/repeat-area&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Application window&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://capture/application&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Active window&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://capture/active-window&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Area annotate&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://capture/area-annotate&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Scrolling screenshot&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://capture/scrolling&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;OCR text capture&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://capture/ocr&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Smart element capture&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://capture/smart-element&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Object cutout capture&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://capture/object-cutout&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Screen recording&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://record/screen&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Application recording&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://record/application&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Open Annotate&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://open/annotate&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Combine images&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://open/combine&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Open Video Editor&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://open/video-editor&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Open Cloud Uploads&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://open/cloud-uploads&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Open Capture History&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://open/history&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Show shortcuts list&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://show/shortcuts&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Open Settings&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://settings&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Open Settings tab&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;snapzy://settings?tab=annotate&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;p&gt;&lt;code&gt;snapzy://open/combine&lt;/code&gt; opens the image picker. Automation tools can skip the picker by passing two or more URL-encoded local paths as repeated &lt;code&gt;file&lt;/code&gt; parameters:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;open &#39;snapzy://open/combine?file=/tmp/first.png&amp;amp;file=/tmp/second.png&#39;
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Development&lt;/h2&gt; 
&lt;p&gt;For local setup, source builds, and first-time development workflow, start with &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/DEVELOPMENT.md&quot;&gt;docs/DEVELOPMENT.md&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;If you need archive, export, or DMG packaging commands, see &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/BUILD.md&quot;&gt;docs/BUILD.md&lt;/a&gt;. If you want the contribution workflow, see &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/CONTRIBUTING.md&quot;&gt;CONTRIBUTING.md&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Documentation&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://deepwiki.com/duongductrong/Snapzy&quot;&gt;Ask DeepWiki (interactive docs assistant)&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/README.md&quot;&gt;Docs map for humans and agents&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/STRUCTURE.md&quot;&gt;Project structure and runtime architecture&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/APP_LIFECYCLE.md&quot;&gt;App lifecycle, onboarding, and menu bar&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Capture: &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/CAPTURE.md&quot;&gt;screenshot flows&lt;/a&gt; · &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/SCROLLING_CAPTURE.md&quot;&gt;scrolling capture&lt;/a&gt; · &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/RECORDING.md&quot;&gt;recording&lt;/a&gt; · &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/POST_CAPTURE.md&quot;&gt;post-capture routing&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Editors: &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/QUICK_ACCESS.md&quot;&gt;Quick Access&lt;/a&gt; · &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/HISTORY.md&quot;&gt;capture history&lt;/a&gt; · &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/ANNOTATE.md&quot;&gt;Annotate&lt;/a&gt; · &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/VIDEO_EDITOR.md&quot;&gt;Video Editor&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Platform: &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/CLOUD.md&quot;&gt;cloud upload&lt;/a&gt; · &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/SHORTCUTS.md&quot;&gt;shortcuts &amp;amp; URL scheme&lt;/a&gt; · &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/PREFERENCES.md&quot;&gt;settings reference&lt;/a&gt; · &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/UPDATES.md&quot;&gt;updates &amp;amp; diagnostics&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/CONFIGURATION.md&quot;&gt;TOML configuration export/import&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/BUILD.md&quot;&gt;Build and packaging guide&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/RELEASES.md&quot;&gt;Release and update workflow&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/docs/UPDATE_TESTING.md&quot;&gt;Local Sparkle update testing&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Community&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Join the Snapzy Discord community for support, feedback, and discussion: &lt;a href=&quot;https://discord.gg/xkWDAuJkZu&quot;&gt;https://discord.gg/xkWDAuJkZu&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Featured On&lt;/h2&gt; 
&lt;p&gt; &lt;a href=&quot;https://www.producthunt.com/products/snapzy?embed=true&amp;amp;utm_source=badge-featured&amp;amp;utm_medium=badge&amp;amp;utm_campaign=badge-snapzy&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;&lt;img alt=&quot;Snapzy - Think CleanShot X, but open-source and developer-friendly | Product Hunt&quot; width=&quot;250&quot; height=&quot;54&quot; src=&quot;https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1097629&amp;amp;theme=light&amp;amp;t=1773585048784&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://unikorn.vn/p/snapzy?ref=embed-snapzy&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;https://unikorn.vn/api/widgets/badge/snapzy?theme=light&quot; alt=&quot;Snapzy trên Unikorn.vn&quot; style=&quot;width: 250px; height: 54px;&quot; width=&quot;250&quot; height=&quot;54&quot; /&gt;&lt;/a&gt; &lt;/p&gt; 
&lt;h2&gt;Benchmark&lt;/h2&gt; 
&lt;h3&gt;OCR&lt;/h3&gt; 
&lt;p&gt;Benchmark date: April 19, 2026. Current OCR numbers come from &lt;code&gt;scripts/run-ocr-readme-benchmark.sh&lt;/code&gt; on a clean synthetic wrapped UI/article-text corpus with &lt;code&gt;12 samples / language&lt;/code&gt; across &lt;code&gt;10 supported languages&lt;/code&gt;. &lt;code&gt;Character accuracy&lt;/code&gt; is the primary signal, &lt;code&gt;exact match&lt;/code&gt; is intentionally strict, and &lt;code&gt;no-output&lt;/code&gt; on this corpus is &lt;code&gt;0%&lt;/code&gt; for all languages below.&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Language&lt;/th&gt; 
   &lt;th style=&quot;text-align:right&quot;&gt;Character Accuracy&lt;/th&gt; 
   &lt;th style=&quot;text-align:right&quot;&gt;Exact Match&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;English&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;100.0%&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;100.0%&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Vietnamese&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;100.0%&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;100.0%&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Simplified Chinese&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;99.3%&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;75.0%&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Traditional Chinese&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;99.0%&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;66.7%&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Spanish&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;99.9%&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;91.7%&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Japanese&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;99.4%&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;66.7%&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Korean&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;99.7%&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;83.3%&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Russian&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;100.0%&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;100.0%&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;French&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;99.3%&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;33.3%&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;German&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;99.8%&lt;/td&gt; 
   &lt;td style=&quot;text-align:right&quot;&gt;75.0%&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;p&gt;Real-world screenshots can score lower, especially with emoji, low-contrast footers, unusual punctuation, gradients, blur, or decorative fonts.&lt;/p&gt; 
&lt;h2&gt;Security&lt;/h2&gt; 
&lt;p&gt;Snapzy runs inside the macOS App Sandbox with minimal entitlements. Network requests are limited to Sparkle update checks, local loopback OAuth callback redirection, user-initiated cloud uploads to &lt;strong&gt;your own&lt;/strong&gt; cloud storage (AWS S3, Cloudflare R2, or Google Drive), and optional user-initiated OCR model downloads from HTTPS/Hugging Face sources the user explicitly defines. Snapzy bundles no OCR models and its model catalog ships empty, so no model is referenced or fetched unless you add one. Model manifests are validated locally and importing metadata performs no download. The default built-in OCR engine runs entirely on-device; if you explicitly add a custom OCR endpoint in Settings, OCR requests (including the captured image) go to that endpoint. Cloud credentials and OAuth tokens are stored exclusively in the macOS Keychain, can be further protected with an optional password (SHA-256 hashed, never stored in plaintext), and can only be transferred via a manual encrypted export/import flow protected by a user-supplied archive passphrase. Custom OCR endpoint API keys are likewise stored only in the macOS Keychain and are never included in config or credential exports. Snapzy collects no telemetry.&lt;/p&gt; 
&lt;p&gt;To report a vulnerability, please use a &lt;a href=&quot;https://github.com/duongductrong/Snapzy/security/advisories/new&quot;&gt;GitHub Security Advisory&lt;/a&gt; or contact the maintainer privately. See &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/SECURITY.md&quot;&gt;SECURITY.md&lt;/a&gt; for full details.&lt;/p&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;Contributions are welcome. Read &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/CONTRIBUTING.md&quot;&gt;CONTRIBUTING.md&lt;/a&gt; before opening a pull request.&lt;/p&gt; 
&lt;h2&gt;Contributors&lt;/h2&gt; 
&lt;p&gt;Thanks to all the people who contribute to Snapzy!&lt;/p&gt; 
&lt;a href=&quot;https://github.com/duongductrong/Snapzy/graphs/contributors&quot;&gt; &lt;img src=&quot;https://contrib.rocks/image?repo=duongductrong/Snapzy&quot; /&gt; &lt;/a&gt; 
&lt;h2&gt;Star History&lt;/h2&gt; 
&lt;a href=&quot;https://www.star-history.com/?repos=duongductrong%2FSnapzy&amp;amp;type=date&amp;amp;logscale=&amp;amp;legend=top-left&quot;&gt; 
 &lt;picture&gt; 
  &lt;source media=&quot;(prefers-color-scheme: dark)&quot; srcset=&quot;https://api.star-history.com/image?repos=duongductrong/Snapzy&amp;amp;type=date&amp;amp;theme=dark&amp;amp;logscale&amp;amp;legend=top-left&quot; /&gt; 
  &lt;source media=&quot;(prefers-color-scheme: light)&quot; srcset=&quot;https://api.star-history.com/image?repos=duongductrong/Snapzy&amp;amp;type=date&amp;amp;logscale&amp;amp;legend=top-left&quot; /&gt; 
  &lt;img alt=&quot;Star History Chart&quot; src=&quot;https://api.star-history.com/image?repos=duongductrong/Snapzy&amp;amp;type=date&amp;amp;logscale&amp;amp;legend=top-left&quot; /&gt; 
 &lt;/picture&gt; &lt;/a&gt; 
&lt;h2&gt;Acknowledgments&lt;/h2&gt; 
&lt;p&gt;Snapzy is inspired by &lt;a href=&quot;https://cleanshot.com/&quot;&gt;CleanShot X&lt;/a&gt;, an advanced screenshot and screen recording application for macOS.&lt;/p&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;BSD 3-Clause License. See &lt;a href=&quot;https://raw.githubusercontent.com/duongductrong/Snapzy/master/LICENSE&quot;&gt;LICENSE&lt;/a&gt;.&lt;/p&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/f7f58533ea0abd98a9f1f7dcc9132689485a468695c9e46c7087e7cf3b417e3b/duongductrong/Snapzy" medium="image" />
      
    </item>
    
    <item>
      <title>altic-dev/FluidVoice</title>
      <link>https://github.com/altic-dev/FluidVoice</link>
      <description>&lt;p&gt;Fastest and only macOS Dictation app with on-device STT and custom trained AI enhancement model. A local Wispr Flow alternative. ⭐ helps a ton :) Windows &amp; iOS waitlist open. Linux soon.&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;FluidVoice&lt;/h1&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://github.com/altic-dev/FluidVoice/stargazers&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/stars/altic-dev/FluidVoice?style=social&quot; alt=&quot;GitHub stars&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/sponsors/altic-dev&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Sponsor-GitHub%20Sponsors-ea4aaa?logo=githubsponsors&amp;amp;logoColor=white&quot; alt=&quot;Sponsor FluidVoice&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://x.com/ALTIC_DEV&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/X-%40ALTIC__DEV-black?logo=x&amp;amp;logoColor=white&quot; alt=&quot;X @ALTIC_DEV&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://huggingface.co/nvidia/parakeet_realtime_eou_120m-v1&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Models-Nemotron%20Speech%203.5%20%7C%20Parakeet%20Flash%20%7C%20Parakeet%20v3%20%26%20v2%20%7C%20Cohere%20%7C%20Apple%20Speech%20%7C%20Whisper-blue&quot; alt=&quot;Supported Models&quot; /&gt;&lt;/a&gt; &lt;br /&gt;&lt;br /&gt; &lt;a href=&quot;https://trendshift.io/repositories/16601?utm_source=repository-badge&amp;amp;utm_medium=badge&amp;amp;utm_campaign=badge-repository-16601&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;&lt;img src=&quot;https://trendshift.io/api/badge/repositories/16601&quot; alt=&quot;altic-dev%2FFluidVoice | Trendshift&quot; width=&quot;250&quot; height=&quot;55&quot; /&gt;&lt;/a&gt; &lt;/p&gt; 
&lt;p&gt;Open source voice-to-text dictation app for macOS with on-device AI enhancement.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Install with Homebrew:&lt;/strong&gt; &lt;code&gt;brew install --cask fluidvoice&lt;/code&gt;&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Manual download:&lt;/strong&gt; &lt;a href=&quot;https://github.com/altic-dev/FluidVoice/releases/latest&quot;&gt;latest release&lt;/a&gt;&lt;/p&gt; 
&lt;div class=&quot;markdown-alert markdown-alert-note&quot;&gt;
 &lt;p class=&quot;markdown-alert-title&quot;&gt;
  &lt;svg class=&quot;octicon octicon-info mr-2&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;
   &lt;path d=&quot;M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z&quot;&gt;&lt;/path&gt;
  &lt;/svg&gt;Note&lt;/p&gt;
 &lt;p&gt;FluidVoice is on macOS today. &lt;strong&gt;iOS and Windows are on the way&lt;/strong&gt; — join the waitlist to get notified when we launch: &lt;strong&gt;&lt;a href=&quot;https://www.altic.dev/fluid/waitlist&quot;&gt;altic.dev/fluid/waitlist&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt; 
&lt;/div&gt; 
&lt;div class=&quot;markdown-alert markdown-alert-important&quot;&gt;
 &lt;p class=&quot;markdown-alert-title&quot;&gt;
  &lt;svg class=&quot;octicon octicon-report mr-2&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;
   &lt;path d=&quot;M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z&quot;&gt;&lt;/path&gt;
  &lt;/svg&gt;Important&lt;/p&gt;
 &lt;p&gt;This project is free and open source under GPLv3. If FluidVoice is useful to you, please star the repository — it helps visibility and keeps development going.&lt;/p&gt; 
&lt;/div&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Support FluidVoice&lt;/h2&gt; 
&lt;p&gt;If FluidVoice helps you, you can support continued development and future platform work for iOS and Windows on &lt;a href=&quot;https://github.com/sponsors/altic-dev&quot;&gt;GitHub Sponsors&lt;/a&gt;.&lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;What&#39;s New in 1.6.0&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Insanely fast Parakeet&lt;/strong&gt; — rebuilt Parakeet implementation with pretty much zero delay between speaking and seeing words on screen&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Fluid Intelligence&lt;/strong&gt; — fully local AI model for on-device dictation enhancement. No cloud, no API keys, no data leaving your Mac&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Better Theming&lt;/strong&gt; — adaptive light/dark theme with a compact toolbar switcher&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Refreshed Onboarding&lt;/strong&gt; — language-first voice engine setup, real dictation tryout, and AI enhancement setup in one clean pass&lt;/li&gt; 
&lt;/ul&gt; 
&lt;div class=&quot;markdown-alert markdown-alert-warning&quot;&gt;
 &lt;p class=&quot;markdown-alert-title&quot;&gt;
  &lt;svg class=&quot;octicon octicon-alert mr-2&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;
   &lt;path d=&quot;M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z&quot;&gt;&lt;/path&gt;
  &lt;/svg&gt;Warning&lt;/p&gt;
 &lt;p&gt;Based on early feedback, Fluid Intelligence may cause you to unsubscribe from other dictation apps and save money. You&#39;ve been warned.&lt;/p&gt; 
&lt;/div&gt; 
&lt;h2&gt;Fluid Intelligence&lt;/h2&gt; 
&lt;p&gt;FluidVoice is fully open source under GPLv3. &lt;strong&gt;Fluid Intelligence&lt;/strong&gt; is a separate, privately maintained local AI runtime that powers advanced on-device dictation enhancement — smart formatting, context-aware capitalization, and post-processing — all running locally on your Mac.&lt;/p&gt; 
&lt;p&gt;The app works great on its own with any supported speech model and optional cloud AI providers. Fluid Intelligence adds a fully local, private AI layer for users who want on-device enhancement without sending data anywhere.&lt;/p&gt; 
&lt;p&gt;We&#39;re keeping Fluid Intelligence private for now so we can sustainably offer the core dictation experience for free. This may change in the future.&lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Fluid Intelligence Sneak Peek&lt;/h2&gt; 
&lt;table&gt; 
 &lt;tbody&gt;
  &lt;tr&gt; 
   &lt;td width=&quot;50%&quot; align=&quot;center&quot;&gt;&lt;b&gt;Email Template&lt;/b&gt;&lt;/td&gt; 
   &lt;td width=&quot;50%&quot; align=&quot;center&quot;&gt;&lt;b&gt;Flowers&lt;/b&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td width=&quot;50%&quot;&gt;
    &lt;video src=&quot;https://github.com/user-attachments/assets/36747e9d-1ea3-4d27-8d38-eaacb6d57285&quot; width=&quot;100%&quot;&gt;&lt;/video&gt;&lt;/td&gt; 
   &lt;td width=&quot;50%&quot;&gt;
    &lt;video src=&quot;https://github.com/user-attachments/assets/5f6063ab-0506-4687-b825-c7bf4ab66ed6&quot; width=&quot;100%&quot;&gt;&lt;/video&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td width=&quot;50%&quot; align=&quot;center&quot;&gt;&lt;b&gt;Change Time &amp;amp; Name&lt;/b&gt;&lt;/td&gt; 
   &lt;td width=&quot;50%&quot; align=&quot;center&quot;&gt;&lt;b&gt;Emoji&lt;/b&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td width=&quot;50%&quot;&gt;
    &lt;video src=&quot;https://github.com/user-attachments/assets/6c7a7c4c-17a8-453d-8eff-1aa1fa9f6077&quot; width=&quot;100%&quot;&gt;&lt;/video&gt;&lt;/td&gt; 
   &lt;td width=&quot;50%&quot;&gt;
    &lt;video src=&quot;https://github.com/user-attachments/assets/04e00f3d-a602-448d-9bde-50b5e8f61ac6&quot; width=&quot;100%&quot;&gt;&lt;/video&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td width=&quot;50%&quot; align=&quot;center&quot;&gt;&lt;b&gt;Hyphens &amp;amp; Numbers&lt;/b&gt;&lt;/td&gt; 
   &lt;td width=&quot;50%&quot;&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td width=&quot;50%&quot;&gt;
    &lt;video src=&quot;https://github.com/user-attachments/assets/47175f2b-9f06-452e-b892-42488e4ba536&quot; width=&quot;100%&quot;&gt;&lt;/video&gt;&lt;/td&gt; 
   &lt;td width=&quot;50%&quot;&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt;
&lt;/table&gt; 
&lt;h2&gt;Demo&lt;/h2&gt; 
&lt;h3&gt;Command Mode — Take any action on your Mac using FluidVoice&lt;/h3&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/user-attachments/assets/ffb47afd-1621-432a-bdca-baa4b8526301&quot;&gt;https://github.com/user-attachments/assets/ffb47afd-1621-432a-bdca-baa4b8526301&lt;/a&gt;&lt;/p&gt; 
&lt;h3&gt;Write Mode — Write or rewrite text in any text box in any app&lt;/h3&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/user-attachments/assets/c57ef6d5-f0a1-4a3f-a121-637533442c24&quot;&gt;https://github.com/user-attachments/assets/c57ef6d5-f0a1-4a3f-a121-637533442c24&lt;/a&gt;&lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Features&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Fluid Intelligence&lt;/strong&gt; — on-device AI enhancement for smart formatting, context-aware capitalization, and post-processing, all running locally on your Mac with zero data leaving your machine&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Command Mode&lt;/strong&gt; — control your Mac by voice: launch apps, run shortcuts, trigger system actions, and automate workflows without touching the keyboard&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Write Mode&lt;/strong&gt; — write or rewrite text directly in any text field across any app. Select text and rewrite it, or dictate new content inline&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Live Preview&lt;/strong&gt; — real-time transcription overlay with notch support, so you see words appear as you speak&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Multiple Speech Models&lt;/strong&gt; — Nemotron Speech 3.5, Parakeet Flash, Parakeet TDT v3 &amp;amp; v2, Cohere Transcribe, Apple Speech, and Whisper. Pick the model that fits your language and latency needs&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;AI Enhancement&lt;/strong&gt; — optional post-processing via OpenAI, Groq, custom providers, or local Fluid Intelligence for cleaner, more accurate transcripts&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Audio History&lt;/strong&gt; — optional local recording history with budget controls and ZIP export, so you can review past dictations without cloud storage&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Today-Usage Stats&lt;/strong&gt; — daily usage tracking at a glance with a stats header card and toolbar pill&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Adaptive Theming&lt;/strong&gt; — light/dark theme that follows your system, with a compact toolbar switcher&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Global Hotkey&lt;/strong&gt; — instant voice capture from anywhere, no app switching needed&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Smart Typing&lt;/strong&gt; — direct insertion into any app via accessibility APIs for reliable, app-independent text entry&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Menu Bar Integration&lt;/strong&gt; — quick access, status, and settings from the menu bar&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Auto-Updates&lt;/strong&gt; — seamless updates with an optional beta channel for early previews&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Per-App Configuration&lt;/strong&gt; — assign different prompt sets to different apps, so your dictation adapts to whatever you&#39;re working in. Fully optional&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Notch-Aware Overlay&lt;/strong&gt; — transcription overlay that fits cleanly around the MacBook notch, or use a standard overlay if your Mac doesn&#39;t have one&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Local-First&lt;/strong&gt; — your voice and text never leave your machine unless you opt in to a cloud AI provider&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Fastest Parakeet on Mac&lt;/strong&gt; — one of the fastest native implementations of Parakeet on macOS, with near-instant transcription and minimal latency&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Configurable Overlay&lt;/strong&gt; — choose from pill-shaped to large overlay sizes to show live preview, or keep it minimal. Everything is optional&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Everything is Optional&lt;/strong&gt; — AI enhancement, Fluid Intelligence, audio history, analytics, and beta builds are all opt-in. The core dictation experience works out of the box with zero configuration beyond permissions and a hotkey&lt;/li&gt; 
&lt;/ul&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Supported Models&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Model&lt;/th&gt; 
   &lt;th&gt;Best for&lt;/th&gt; 
   &lt;th&gt;Language support&lt;/th&gt; 
   &lt;th&gt;Download size&lt;/th&gt; 
   &lt;th&gt;Hardware&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Nemotron Speech 3.5 — Ultra Fast Low Latency&lt;/td&gt; 
   &lt;td&gt;Streaming-capable multilingual dictation&lt;/td&gt; 
   &lt;td&gt;~40 languages&lt;/td&gt; 
   &lt;td&gt;~670 MB&lt;/td&gt; 
   &lt;td&gt;Apple Silicon&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Nemotron 3.5 Multilingual&lt;/td&gt; 
   &lt;td&gt;Higher-accuracy multilingual dictation&lt;/td&gt; 
   &lt;td&gt;~40 languages&lt;/td&gt; 
   &lt;td&gt;~530 MB&lt;/td&gt; 
   &lt;td&gt;Apple Silicon&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://huggingface.co/nvidia/parakeet_realtime_eou_120m-v1&quot;&gt;Parakeet Flash (Beta)&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Lowest-latency live English dictation&lt;/td&gt; 
   &lt;td&gt;English&lt;/td&gt; 
   &lt;td&gt;~250 MB&lt;/td&gt; 
   &lt;td&gt;Apple Silicon&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Parakeet TDT v3&lt;/td&gt; 
   &lt;td&gt;Fast default multilingual dictation&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/altic-dev/FluidVoice/main/#parakeet-tdt-v3-languages&quot;&gt;25 languages&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;~500 MB&lt;/td&gt; 
   &lt;td&gt;Apple Silicon&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Parakeet TDT v2&lt;/td&gt; 
   &lt;td&gt;Fastest English-only dictation&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/altic-dev/FluidVoice/main/#parakeet-tdt-v2-languages&quot;&gt;English&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;~500 MB&lt;/td&gt; 
   &lt;td&gt;Apple Silicon&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Cohere Transcribe&lt;/td&gt; 
   &lt;td&gt;High-accuracy multilingual dictation&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/altic-dev/FluidVoice/main/#cohere-transcribe-languages&quot;&gt;14 languages&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;~1.4 GB&lt;/td&gt; 
   &lt;td&gt;Apple Silicon&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Apple Speech&lt;/td&gt; 
   &lt;td&gt;Zero-download native macOS speech&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/altic-dev/FluidVoice/main/#apple-speech-languages&quot;&gt;System languages&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Built-in&lt;/td&gt; 
   &lt;td&gt;Apple Silicon + Intel&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Whisper Tiny / Base / Small / Medium / Large&lt;/td&gt; 
   &lt;td&gt;Broad compatibility, including Intel Macs&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/altic-dev/FluidVoice/main/#whisper-language-support&quot;&gt;99 languages&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;~75 MB to ~2.9 GB&lt;/td&gt; 
   &lt;td&gt;Apple Silicon + Intel&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h3&gt;Parakeet TDT v3 Languages&lt;/h3&gt; 
&lt;p&gt;Bulgarian, Croatian, Czech, Danish, Dutch, English, Estonian, Finnish, French, German, Greek, Hungarian, Italian, Latvian, Lithuanian, Maltese, Polish, Portuguese, Romanian, Russian, Slovak, Slovenian, Spanish, Swedish, and Ukrainian.&lt;/p&gt; 
&lt;h3&gt;Parakeet TDT v2 Languages&lt;/h3&gt; 
&lt;p&gt;English.&lt;/p&gt; 
&lt;h3&gt;Cohere Transcribe Languages&lt;/h3&gt; 
&lt;p&gt;English, French, German, Italian, Spanish, Portuguese, Greek, Dutch, Polish, Mandarin, Japanese, Korean, Vietnamese, and Arabic.&lt;/p&gt; 
&lt;h3&gt;Apple Speech Languages&lt;/h3&gt; 
&lt;p&gt;System language support depends on the macOS speech recognition languages available on your machine.&lt;/p&gt; 
&lt;h3&gt;Whisper Language Support&lt;/h3&gt; 
&lt;p&gt;Whisper supports up to 99 languages, depending on the model size you choose.&lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Quick Start&lt;/h2&gt; 
&lt;ol&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;Install&lt;/strong&gt; with Homebrew:&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;brew install --cask fluidvoice
&lt;/code&gt;&lt;/pre&gt; &lt;p&gt;Or download the &lt;a href=&quot;https://github.com/altic-dev/FluidVoice/releases/latest&quot;&gt;latest release&lt;/a&gt;.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;Grant permissions&lt;/strong&gt; — FluidVoice will ask for microphone and accessibility access. Both are required for dictation and typing into other apps.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;Set your hotkey&lt;/strong&gt; — pick a global hotkey in settings that triggers voice capture from anywhere.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;Go through onboarding&lt;/strong&gt; — choose your voice model based on your language and latency needs. Models range from zero-download Apple Speech to high-accuracy Nemotron and Whisper.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;(Optional) Enable Fluid Intelligence&lt;/strong&gt; — download the local AI model during onboarding for on-device dictation enhancement. Everything runs locally, no data leaves your Mac.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;(Optional) Bring your own AI provider&lt;/strong&gt; — add an OpenAI, Groq, or custom provider API key for cloud-based enhancement. Keys are stored securely in macOS Keychain. Select &quot;Always allow&quot; for key access.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;(Optional) Opt in to beta builds&lt;/strong&gt; — &lt;code&gt;Settings → Automatic Updates → Beta Releases&lt;/code&gt; for early access to new features.&lt;/p&gt; &lt;/li&gt; 
&lt;/ol&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Requirements&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;macOS 15.0 (Sequoia) or later&lt;/li&gt; 
 &lt;li&gt;Apple Silicon Mac for all models&lt;/li&gt; 
 &lt;li&gt;Intel Macs supported via Whisper models (from 1.5.1+)&lt;/li&gt; 
 &lt;li&gt;~1 GB disk space for a voice model&lt;/li&gt; 
 &lt;li&gt;~3.5 GB disk space for the Fluid Intelligence model (optional)&lt;/li&gt; 
 &lt;li&gt;Microphone access&lt;/li&gt; 
 &lt;li&gt;Accessibility permissions for typing&lt;/li&gt; 
&lt;/ul&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Building from Source&lt;/h2&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git clone https://github.com/altic-dev/FluidVoice.git
cd FluidVoice
open Fluid.xcodeproj
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Build and run in Xcode. All dependencies are managed via Swift Package Manager.&lt;/p&gt; 
&lt;p&gt;Run a signed Debug build using the script:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;./build.sh
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;The signed build is written to &lt;code&gt;DerivedData/Build/Products/Debug/FluidVoice Debug.app&lt;/code&gt;. Keep launching that product after each rebuild so macOS can preserve its Accessibility authorization.&lt;/p&gt; 
&lt;p&gt;For CI or contributors who do not have a signing identity, use the explicit unsigned fallback:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;./build.sh unsigned
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Unsigned builds are tied to a specific executable version and may require Accessibility permission to be removed and granted again after rebuilding.&lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;Contributions are welcome! Please create an issue first to discuss major changes before submitting a pull request.&lt;/p&gt; 
&lt;h3&gt;Development Setup&lt;/h3&gt; 
&lt;ol&gt; 
 &lt;li&gt;Clone and open in Xcode as above.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Signing:&lt;/strong&gt; &lt;code&gt;FluidVoice → Signing &amp;amp; Capabilities → Automatically manage signing → pick your Team&lt;/code&gt; (Personal Team is fine). If you have certificates for multiple teams, select one without changing the project by running &lt;code&gt;FLUIDVOICE_DEVELOPMENT_TEAM=YOUR_TEAM_ID ./build.sh&lt;/code&gt;.&lt;/li&gt; 
 &lt;li&gt;Build and run — SPM handles dependencies.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;(Optional) Pre-commit hook&lt;/strong&gt; to prevent accidental team ID commits:&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;cp scripts/check-team-id.sh .git/hooks/pre-commit
chmod +x .git/hooks/pre-commit
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
&lt;/ol&gt; 
&lt;h3&gt;Pull Request Guidelines&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;One feature or fix per PR&lt;/strong&gt; — keep changes focused and atomic&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Create an issue first&lt;/strong&gt; so work is trackable before review&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Discuss non-trivial changes&lt;/strong&gt; before opening a PR&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Follow the PR template&lt;/strong&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Test thoroughly&lt;/strong&gt; on your machine&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Never commit personal team IDs or API keys&lt;/strong&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Check &lt;code&gt;git diff&lt;/code&gt;&lt;/strong&gt; before committing&lt;/li&gt; 
&lt;/ul&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Run Integration Tests&lt;/h2&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;xcodebuild test -project Fluid.xcodeproj -scheme Fluid -destination &#39;platform=macOS&#39;
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;CI uses unsigned builds:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;xcodebuild test -project Fluid.xcodeproj -scheme Fluid -destination &#39;platform=macOS&#39; CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
&lt;/code&gt;&lt;/pre&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Privacy &amp;amp; Analytics&lt;/h2&gt; 
&lt;p&gt;FluidVoice is &lt;strong&gt;local-first&lt;/strong&gt;. Your voice, audio, and transcribed text never leave your machine unless you explicitly opt in to a cloud AI provider.&lt;/p&gt; 
&lt;h3&gt;What&#39;s Collected (Opt-In)&lt;/h3&gt; 
&lt;p&gt;Anonymous analytics are enabled by default to track app health and feature usage. You can disable at any time from &lt;code&gt;Settings → Share Anonymous Analytics&lt;/code&gt;.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Collected:&lt;/strong&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;App version, build, macOS version&lt;/li&gt; 
 &lt;li&gt;Low-cardinality feature/config flags (e.g. app mode, major settings)&lt;/li&gt; 
 &lt;li&gt;Approximate usage ranges (not exact values)&lt;/li&gt; 
 &lt;li&gt;High-level success/error outcomes&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;&lt;strong&gt;Not Collected:&lt;/strong&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;Voice, raw audio, or transcribed text&lt;/li&gt; 
 &lt;li&gt;Selected text, prompts, or AI responses&lt;/li&gt; 
 &lt;li&gt;Terminal commands, window titles, file paths, clipboard, or typed content&lt;/li&gt; 
 &lt;li&gt;Any personal or private information&lt;/li&gt; 
&lt;/ul&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Community&lt;/h2&gt; 
&lt;p&gt;Join our Discord: &lt;a href=&quot;https://discord.gg/VUPHaKSvYV&quot;&gt;https://discord.gg/VUPHaKSvYV&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;Follow development on X: &lt;a href=&quot;https://x.com/ALTIC_DEV&quot;&gt;@ALTIC_DEV&lt;/a&gt;&lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;From 2026-02-23 onward, this project is licensed under the &lt;a href=&quot;https://raw.githubusercontent.com/altic-dev/FluidVoice/main/LICENSE&quot;&gt;GNU General Public License, Version 3.0 (GPLv3)&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;Versions published before this date were licensed under Apache License 2.0.&lt;/p&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/42c7246c48c05cf7655f394ae14ee4420d7e902cc901c5b3f4415d5409a8937d/altic-dev/FluidVoice" medium="image" />
      
    </item>
    
    <item>
      <title>steipete/CodexBar</title>
      <link>https://github.com/steipete/CodexBar</link>
      <description>&lt;p&gt;Show usage stats for OpenAI Codex and Claude Code, without having to login.&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;CodexBar 🎚️ — May your tokens never run out.&lt;/h1&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;Every AI coding limit, in your menu bar.&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/steipete/CodexBar/releases/latest&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/v/release/steipete/CodexBar?style=flat-square&amp;amp;color=0a0a0c&quot; alt=&quot;Latest release&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/steipete/CodexBar/releases/latest&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/macOS-14%2B-0a0a0c?style=flat-square&quot; alt=&quot;macOS 14+&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/steipete/homebrew-tap&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/brew-steipete%2Ftap%2Fcodexbar-orange?style=flat-square&quot; alt=&quot;Homebrew&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://aur.archlinux.org/packages/codexbar-cli&quot;&gt;&lt;img src=&quot;https://img.shields.io/aur/version/codexbar-cli?style=flat-square&amp;amp;color=1793d1&quot; alt=&quot;AUR&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/LICENSE&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/license-MIT-6e5aff?style=flat-square&quot; alt=&quot;License: MIT&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://codexbar.app&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/site-codexbar.app-16d3b4?style=flat-square&quot; alt=&quot;Site&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://codexbar.app&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/social.png&quot; alt=&quot;CodexBar — every AI coding limit in your menu bar. 69 providers.&quot; width=&quot;100%&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;Tiny macOS 14+ menu bar app that keeps &lt;strong&gt;AI coding-provider limits visible&lt;/strong&gt; and shows when each window resets. Codex, OpenAI, Claude, Cursor, Gemini, Copilot, Grok, GroqCloud, ElevenLabs, Deepgram, &lt;a href=&quot;http://z.ai&quot;&gt;z.ai&lt;/a&gt;, MiniMax, Kiro, Zed, Vertex AI, Augment, OpenRouter, LiteLLM, LLM Proxy, Codebuff, Command Code, ClinePass, AWS Bedrock, and many newer coding providers. One status item per provider, or Merge Icons mode with a provider switcher. No Dock icon, minimal UI, dynamic bar icons.&lt;/p&gt; 
&lt;img src=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/codexbar.png&quot; alt=&quot;CodexBar menu popover with provider tiles, usage bars, and reset countdowns&quot; width=&quot;520&quot; /&gt; 
&lt;h2&gt;Why&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Plan around resets.&lt;/strong&gt; Per-provider session, weekly, and monthly windows with countdowns to the next reset — stop guessing whether to start that long task.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Credits, spend, and cost scans.&lt;/strong&gt; Credit balances, Admin API spend dashboards, provider billing summaries, and local cost scans where the source exposes enough detail.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Live status.&lt;/strong&gt; Provider status polling surfaces incident badges in the menu and an indicator overlay on the bar icon.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Privacy-first.&lt;/strong&gt; Reuses existing provider sessions — OAuth, device flow, API keys, browser cookies, local files — so no passwords are stored.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Install&lt;/h2&gt; 
&lt;h3&gt;Requirements&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;macOS 14+ (Sonoma)&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;GitHub Releases&lt;/h3&gt; 
&lt;p&gt;Download: &lt;a href=&quot;https://github.com/steipete/CodexBar/releases&quot;&gt;https://github.com/steipete/CodexBar/releases&lt;/a&gt;&lt;/p&gt; 
&lt;h3&gt;Homebrew&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;brew install --cask codexbar
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;CLI Tarballs (macOS/Linux)&lt;/h3&gt; 
&lt;p&gt;Homebrew formula (Linux today):&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;brew install steipete/tap/codexbar
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Arch Linux AUR package:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;yay -S codexbar-cli
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Or download release tarballs from GitHub Releases:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;macOS: &lt;code&gt;CodexBarCLI-v&amp;lt;tag&amp;gt;-macos-arm64.tar.gz&lt;/code&gt;, &lt;code&gt;CodexBarCLI-v&amp;lt;tag&amp;gt;-macos-x86_64.tar.gz&lt;/code&gt;&lt;/li&gt; 
 &lt;li&gt;Linux (glibc): &lt;code&gt;CodexBarCLI-v&amp;lt;tag&amp;gt;-linux-aarch64.tar.gz&lt;/code&gt;, &lt;code&gt;CodexBarCLI-v&amp;lt;tag&amp;gt;-linux-x86_64.tar.gz&lt;/code&gt;&lt;/li&gt; 
 &lt;li&gt;Linux (static musl): &lt;code&gt;CodexBarCLI-v&amp;lt;tag&amp;gt;-linux-musl-aarch64.tar.gz&lt;/code&gt;, &lt;code&gt;CodexBarCLI-v&amp;lt;tag&amp;gt;-linux-musl-x86_64.tar.gz&lt;/code&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;First run&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Open Settings → Providers and enable what you use.&lt;/li&gt; 
 &lt;li&gt;Install/sign in to the provider sources you rely on: CLIs, browser sessions, OAuth/device flow, API keys, local app files, or provider apps depending on the provider.&lt;/li&gt; 
 &lt;li&gt;Optional: Settings → Providers → Codex → OpenAI cookies (Automatic or Manual) to add dashboard extras.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Set API keys from the CLI&lt;/h3&gt; 
&lt;p&gt;Provider toggles and API keys live in the resolved CodexBar config file. New installs use &lt;code&gt;~/.config/codexbar/config.json&lt;/code&gt;; existing &lt;code&gt;~/.codexbar/config.json&lt;/code&gt; installs still load from the legacy path. You can script the same provider list that Settings → Providers uses:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;codexbar config providers
codexbar config enable --provider grok
codexbar config disable --provider cursor
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;For API-key providers, store a key without opening Settings:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;printf &#39;%s&#39; &quot;$ELEVENLABS_API_KEY&quot; | codexbar config set-api-key --provider elevenlabs --stdin
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;&lt;code&gt;set-api-key&lt;/code&gt; trims the piped value, stores it with restrictive config-file permissions, and enables the provider by default. Use &lt;code&gt;--no-enable&lt;/code&gt; to only save the key, or &lt;code&gt;--api-key &amp;lt;key&amp;gt;&lt;/code&gt; for one-off local scripts where shell history is not a concern. See &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/cli-configuration.md&quot;&gt;CLI configuration&lt;/a&gt; for the full flow.&lt;/p&gt; 
&lt;h2&gt;Providers&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/codex.md&quot;&gt;Codex&lt;/a&gt; — OAuth API or local Codex CLI, plus optional OpenAI web dashboard extras.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/openai.md&quot;&gt;OpenAI&lt;/a&gt; — Admin API key usage/cost graphs with legacy credit-balance fallback.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/azure-openai.md&quot;&gt;Azure OpenAI&lt;/a&gt; — API key, endpoint, and deployment validation probe.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/claude.md&quot;&gt;Claude&lt;/a&gt; — OAuth API, browser cookies, or CLI PTY fallback; session and weekly usage where available.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/cursor.md&quot;&gt;Cursor&lt;/a&gt; — Browser session cookies for plan + usage + billing resets.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/opencode.md&quot;&gt;OpenCode&lt;/a&gt; — Browser cookies for workspace subscription usage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/opencode.md&quot;&gt;OpenCode Go&lt;/a&gt; — Browser or local SQLite data for Go usage windows.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/alibaba-coding-plan.md&quot;&gt;Alibaba Coding Plan&lt;/a&gt; — Web cookies or API key for coding-plan quotas.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/alibaba-token-plan.md&quot;&gt;Alibaba Token Plan&lt;/a&gt; — Bailian browser/manual cookies for token-plan credits.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/qwen-cloud.md&quot;&gt;Qwen Cloud&lt;/a&gt; — 5-hour and weekly individual Token Plan usage via browser/manual cookies.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/gemini.md&quot;&gt;Gemini&lt;/a&gt; — OAuth-backed quota API using Gemini CLI credentials (no browser cookies).&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/antigravity.md&quot;&gt;Antigravity&lt;/a&gt; — Local language server probe, &lt;code&gt;agy&lt;/code&gt; CLI HTTPS source, and Google OAuth fallback (experimental).&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/factory.md&quot;&gt;Droid&lt;/a&gt; — Browser cookies + WorkOS token flows for Factory usage + billing.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/copilot.md&quot;&gt;Copilot&lt;/a&gt; — GitHub device flow + Copilot internal usage API.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/devin.md&quot;&gt;Devin&lt;/a&gt; — Chrome localStorage session or manual Bearer token for daily and weekly quotas.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/zai.md&quot;&gt;z.ai&lt;/a&gt; — API token for personal/team quota, MCP, 5-hour, and hourly usage windows.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/manus.md&quot;&gt;Manus&lt;/a&gt; — Browser &lt;code&gt;session_id&lt;/code&gt; auth for credit balance, monthly credits, and daily refresh tracking.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/minimax.md&quot;&gt;MiniMax&lt;/a&gt; — API token, cookie header, or browser cookies for coding-plan usage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/t3chat.md&quot;&gt;T3 Chat&lt;/a&gt; — Browser cookies capture for Base and Overage usage buckets.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/zoommate.md&quot;&gt;ZoomMate&lt;/a&gt; — Chrome cookie auto-import or manual cURL capture for credits usage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/kimi.md&quot;&gt;Kimi&lt;/a&gt; — Auth token (JWT from &lt;code&gt;kimi-auth&lt;/code&gt; cookie) for weekly quota + 5‑hour rate limit.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/kilo.md&quot;&gt;Kilo&lt;/a&gt; — API token with CLI-auth fallback for Kilo Pass usage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/kiro.md&quot;&gt;Kiro&lt;/a&gt; — CLI-based usage; monthly credits + bonus credits.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/vertexai.md&quot;&gt;Vertex AI&lt;/a&gt; — Google Cloud gcloud OAuth with token cost tracking from local Claude logs.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/augment.md&quot;&gt;Augment&lt;/a&gt; — Augment CLI or browser cookies for credits tracking and usage monitoring.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/amp.md&quot;&gt;Amp&lt;/a&gt; — Browser cookie-based authentication with Amp Free usage tracking.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/ollama.md&quot;&gt;Ollama&lt;/a&gt; — API key access plus browser cookies for Ollama Cloud usage windows.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/synthetic.md&quot;&gt;Synthetic&lt;/a&gt; — API key quota endpoint for rolling five-hour, weekly token, and search-hourly usage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/jetbrains.md&quot;&gt;JetBrains AI&lt;/a&gt; — Local XML-based quota from JetBrains IDE configuration; monthly credits tracking.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/warp.md&quot;&gt;Warp&lt;/a&gt; — API token for GraphQL request limits and monthly credits.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/elevenlabs.md&quot;&gt;ElevenLabs&lt;/a&gt; — API key for character credits and voice slot usage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/openrouter.md&quot;&gt;OpenRouter&lt;/a&gt; — API token for credit-based usage tracking across multiple AI providers.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/windsurf.md&quot;&gt;Windsurf&lt;/a&gt; — Browser localStorage session import or local SQLite cache for plan usage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/zed.md&quot;&gt;Zed&lt;/a&gt; — Zed editor Keychain session for plan, edit-prediction quota, billing cycle, and overdue invoices.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/perplexity.md&quot;&gt;Perplexity&lt;/a&gt; — Account usage credits from Perplexity usage data.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/mimo.md&quot;&gt;Xiaomi MiMo&lt;/a&gt; — Browser cookies for balance and token-plan usage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/doubao.md&quot;&gt;Doubao&lt;/a&gt; — API key for Volcengine Ark request-limit probes.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/sakana.md&quot;&gt;Sakana AI&lt;/a&gt; — Manual Cookie header for 5-hour and weekly quota windows.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/abacus.md&quot;&gt;Abacus AI&lt;/a&gt; — Browser cookie auth for ChatLLM/RouteLLM compute credit tracking.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/mistral.md&quot;&gt;Mistral&lt;/a&gt; — Browser cookies for API spend, credit balance, and monthly-plan usage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/deepseek.md&quot;&gt;DeepSeek&lt;/a&gt; — API key for credit balance tracking (paid vs. granted breakdown).&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/fireworks.md&quot;&gt;Fireworks&lt;/a&gt; — API key + account slug for 30-day spend from the billing summary API.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/deepinfra.md&quot;&gt;DeepInfra&lt;/a&gt; — API key for prepaid balance, current-month spend, and spending-limit tracking.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/moonshot.md&quot;&gt;Moonshot / Kimi API&lt;/a&gt; — API key for Moonshot/Kimi API account balance tracking.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/venice.md&quot;&gt;Venice&lt;/a&gt; — API key for DIEM or USD balance tracking.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/codebuff.md&quot;&gt;Codebuff&lt;/a&gt; — API token (or &lt;code&gt;~/.config/manicode/credentials.json&lt;/code&gt;) for credit balance + weekly rate limit.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/crof.md&quot;&gt;Crof&lt;/a&gt; — API key for dollar credit balance and optional request quota tracking.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/command-code.md&quot;&gt;Command Code&lt;/a&gt; — Browser or manual cookies for monthly USD credits from Command Code billing.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/qoder.md&quot;&gt;Qoder&lt;/a&gt; — Browser or manual cookies for Qoder big model credit usage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/stepfun.md&quot;&gt;StepFun&lt;/a&gt; — Username + password login for Step Plan rate limits (5‑hour + weekly windows) and subscription plan name.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/bedrock.md&quot;&gt;AWS Bedrock&lt;/a&gt; — AWS access keys or a named AWS profile (SSO/assume-role via the AWS CLI) for Cost Explorer spend, monthly budgets, and optional CloudWatch Claude activity.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/grok.md&quot;&gt;Grok&lt;/a&gt; — Grok CLI billing RPC plus &lt;a href=&quot;http://grok.com&quot;&gt;grok.com&lt;/a&gt; browser-session fallback.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/groqcloud.md&quot;&gt;GroqCloud&lt;/a&gt; — API key for Enterprise Prometheus request/token/cache-hit metrics.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/llm-proxy.md&quot;&gt;LLM Proxy&lt;/a&gt; — API key + base URL for aggregate proxy quota stats and provider breakdowns.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/clawrouter.md&quot;&gt;ClawRouter&lt;/a&gt; — API key for monthly budget, spend, requests, tokens, and routed-provider usage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/sub2api.md&quot;&gt;sub2api&lt;/a&gt; — Self-hosted gateway key quota, subscription limits, wallet balance, and per-key usage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/wayfinder.md&quot;&gt;Wayfinder&lt;/a&gt; — Local router gateway polling for health, per-route breakdown, savings, and decision latency.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/litellm.md&quot;&gt;LiteLLM&lt;/a&gt; — Virtual key + proxy URL for personal and team budget/spend tracking.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/deepgram.md&quot;&gt;Deepgram&lt;/a&gt; — API key usage summaries across speech, agent, token, and TTS metrics.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/poe.md&quot;&gt;Poe&lt;/a&gt; — API key for current point balance and recent points history.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/chutes.md&quot;&gt;Chutes&lt;/a&gt; — API key for subscription usage, rolling and monthly quota windows, and pay-as-you-go quotas.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/neuralwatt.md&quot;&gt;Neuralwatt&lt;/a&gt; — API key for subscription kWh usage and prepaid credit balance.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/zenmux.md&quot;&gt;ZenMux&lt;/a&gt; — Management API key for rolling five-hour and seven-day quota windows plus PAYG balance.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/xai.md&quot;&gt;xAI&lt;/a&gt; — Management API key + team ID for prepaid credit balance and daily platform spend.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/ibm-bob.md&quot;&gt;IBM Bob&lt;/a&gt; — API key for monthly Bobcoin budget and usage across subscription teams.&lt;/li&gt; 
 &lt;li&gt;Open to new providers: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/provider.md&quot;&gt;provider authoring guide&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Icon &amp;amp; Screenshot&lt;/h2&gt; 
&lt;p&gt;The menu bar icon is a tiny usage meter. Bar meaning is provider-specific, and errors/stale data can dim the icon or show an incident indicator.&lt;/p&gt; 
&lt;h2&gt;Features&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Multi-provider menu bar with per-provider toggles (Settings → Providers).&lt;/li&gt; 
 &lt;li&gt;Provider-specific usage meters with reset countdowns.&lt;/li&gt; 
 &lt;li&gt;Optional Codex web dashboard enrichments (code review remaining, usage breakdown, credits history).&lt;/li&gt; 
 &lt;li&gt;Inline spend and usage charts for API-backed providers such as OpenAI, Claude Admin API, OpenRouter, LiteLLM, &lt;a href=&quot;http://z.ai&quot;&gt;z.ai&lt;/a&gt;, MiniMax, Mistral, and AWS Bedrock.&lt;/li&gt; 
 &lt;li&gt;Configurable cost-usage scans for Codex + Claude, plus reused chart UI for supported provider histories. Codex history uses a WAL-enabled SQLite store capped at 25,000 retained session entries and 256 MiB.&lt;/li&gt; 
 &lt;li&gt;A persistent Settings → Usage &amp;amp; Spend view for local 7/30-day estimates, grouped by native currency and limited to providers that expose cost history.&lt;/li&gt; 
 &lt;li&gt;Provider status polling with incident badges in the menu and icon overlay.&lt;/li&gt; 
 &lt;li&gt;Merge Icons mode to combine providers into one status item + switcher.&lt;/li&gt; 
 &lt;li&gt;Display controls for provider icons, labels, bars, reset-time style, and highest-usage auto-selection.&lt;/li&gt; 
 &lt;li&gt;Fresh installs default to Adaptive refresh. Existing users keep every valid stored choice, while legacy unset or invalid preferences resolve to 5 minutes. Manual and fixed 1m, 2m, 5m, 15m, and 30m alternatives remain available.&lt;/li&gt; 
 &lt;li&gt;Bundled CLI (&lt;code&gt;codexbar&lt;/code&gt;) for scripts and CI (including &lt;code&gt;codexbar cost --provider codex&lt;/code&gt;, &lt;code&gt;claude&lt;/code&gt;, or &lt;code&gt;both&lt;/code&gt; for local cost usage); macOS and Linux CLI builds available.&lt;/li&gt; 
 &lt;li&gt;WidgetKit widgets for supported providers.&lt;/li&gt; 
 &lt;li&gt;Localized app and website with a shared 21-language catalog, automatic website detection, persistent pickers, and RTL support.&lt;/li&gt; 
 &lt;li&gt;Optional session quota notifications and weekly-reset confetti.&lt;/li&gt; 
 &lt;li&gt;Privacy-first: on-device parsing by default; browser cookies are opt-in and reused (no passwords stored).&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Privacy note&lt;/h2&gt; 
&lt;p&gt;Wondering if CodexBar scans your disk? It doesn’t crawl your filesystem; it reads a small set of known locations (browser cookies/local storage, provider config files, local JSONL logs) when the related features are enabled. Plain Adaptive refresh never inspects local agent activity. The separate Adaptive (agent-aware) option asks before inspecting the running-process list (including command lines) to identify Codex/Claude and reading bounded known-session metadata. Declining returns to plain Adaptive. When allowed with Agent Sessions hidden, CodexBar retains only the latest activity time and discards session paths and identities. Provider tokens and token-account settings live in the CodexBar config file with restrictive file permissions. See the discussion and audit notes in &lt;a href=&quot;https://github.com/steipete/CodexBar/issues/12&quot;&gt;issue #12&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;macOS permissions (why they’re needed)&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Full Disk Access (optional)&lt;/strong&gt;: only required to read Safari cookies/local storage for web-based providers. If you don’t grant it, use another supported browser, manual cookies/API keys, OAuth, or CLI/local sources where that provider supports them.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Keychain access (prompted by macOS)&lt;/strong&gt;: 
  &lt;ul&gt; 
   &lt;li&gt;Chromium cookie import needs the browser “Safe Storage” key to decrypt cookies.&lt;/li&gt; 
   &lt;li&gt;Claude OAuth bootstrap may read the Claude CLI Keychain item when CodexBar has no usable cached credentials.&lt;/li&gt; 
   &lt;li&gt;CodexBar may use Keychain for browser cookie decryption, cached cookie headers, and OAuth/device-flow credentials where those sources require it.&lt;/li&gt; 
   &lt;li&gt;&lt;strong&gt;How do I prevent those keychain alerts?&lt;/strong&gt; 
    &lt;ul&gt; 
     &lt;li&gt;Open &lt;strong&gt;Keychain Access.app&lt;/strong&gt; → login keychain → search the prompted item (for Claude OAuth, usually “Claude Code-credentials”).&lt;/li&gt; 
     &lt;li&gt;Open the item → &lt;strong&gt;Access Control&lt;/strong&gt; → add &lt;code&gt;CodexBar.app&lt;/code&gt; under “Always allow access by these applications”.&lt;/li&gt; 
     &lt;li&gt;Prefer adding just CodexBar (avoid “Allow all applications” unless you want it wide open).&lt;/li&gt; 
     &lt;li&gt;Relaunch CodexBar after saving.&lt;/li&gt; 
     &lt;li&gt;Reference screenshot: &lt;img src=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/keychain-allow.png&quot; alt=&quot;Keychain access control&quot; /&gt;&lt;/li&gt; 
    &lt;/ul&gt; &lt;/li&gt; 
   &lt;li&gt;&lt;strong&gt;How to do the same for the browser?&lt;/strong&gt; 
    &lt;ul&gt; 
     &lt;li&gt;Find the browser’s “Safe Storage” key (e.g., “Chrome Safe Storage”, “Brave Safe Storage”, “Microsoft Edge Safe Storage”).&lt;/li&gt; 
     &lt;li&gt;Open the item → &lt;strong&gt;Access Control&lt;/strong&gt; → add &lt;code&gt;CodexBar.app&lt;/code&gt; under “Always allow access by these applications”.&lt;/li&gt; 
     &lt;li&gt;This removes the prompt when CodexBar decrypts cookies for that browser.&lt;/li&gt; 
    &lt;/ul&gt; &lt;/li&gt; 
   &lt;li&gt;&lt;strong&gt;Last resort — stop all Keychain reads entirely&lt;/strong&gt;: if &quot;Always Allow&quot; doesn&#39;t stick (e.g., macOS resets the ACL after a Chromium update or a &lt;code&gt;partition_id&lt;/code&gt; reset), open &lt;strong&gt;CodexBar → Settings → Advanced → Keychain access&lt;/strong&gt; and enable &lt;strong&gt;Disable Keychain access&lt;/strong&gt;. CodexBar will no longer touch the Keychain. Browser-cookie-based providers will be skipped, but Claude/Codex OAuth via the CLI still works (it reads &lt;code&gt;~/.codex&lt;/code&gt; / &lt;code&gt;~/.claude&lt;/code&gt; config files, not the Keychain).&lt;/li&gt; 
   &lt;li&gt;&lt;strong&gt;Prompt after uninstall?&lt;/strong&gt; Deleting the app prevents a new launch from that bundle, but an already-running CodexBar process can keep requesting Keychain access until it quits. Check for that process, a Login Item, another installed copy, or a prompt that names a different requesting binary/path. See &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/keychain-prompts.md&quot;&gt;Keychain prompt troubleshooting&lt;/a&gt; for safe checks and what to include in a support report without sharing secrets.&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Files &amp;amp; Folders prompts (folder/volume access)&lt;/strong&gt;: CodexBar launches provider CLIs and local probes for some providers. If those helpers read a project directory or external drive, macOS may ask CodexBar for that folder/volume (e.g., Desktop or an external volume). This is driven by the helper’s working directory, not background disk scanning.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;What we do not request in the background&lt;/strong&gt;: no Screen Recording or Accessibility permissions; user-triggered helper actions may ask macOS for Automation permission to open Terminal. No passwords are stored (browser cookies are reused when you opt in).&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Docs&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Providers overview: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/providers.md&quot;&gt;docs/providers.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Provider authoring: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/provider.md&quot;&gt;docs/provider.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Issue labeling guide: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/ISSUE_LABELING.md&quot;&gt;docs/ISSUE_LABELING.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;UI &amp;amp; icon notes: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/ui.md&quot;&gt;docs/ui.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;CLI reference: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/cli.md&quot;&gt;docs/cli.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Configuration: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/configuration.md&quot;&gt;docs/configuration.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Keychain prompts: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/keychain-prompts.md&quot;&gt;docs/keychain-prompts.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;CLI configuration: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/cli-configuration.md&quot;&gt;docs/cli-configuration.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Widgets: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/widgets.md&quot;&gt;docs/widgets.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Architecture: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/architecture.md&quot;&gt;docs/architecture.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Refresh loop: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/refresh-loop.md&quot;&gt;docs/refresh-loop.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Status polling: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/status.md&quot;&gt;docs/status.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Sparkle updates: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/sparkle.md&quot;&gt;docs/sparkle.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Packaging: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/packaging.md&quot;&gt;docs/packaging.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Development: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/DEVELOPMENT.md&quot;&gt;docs/DEVELOPMENT.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Release checklist: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/docs/RELEASING.md&quot;&gt;docs/RELEASING.md&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Changelog: &lt;a href=&quot;https://raw.githubusercontent.com/steipete/CodexBar/main/CHANGELOG.md&quot;&gt;CHANGELOG.md&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Getting started (dev)&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Clone the repo and open it in Xcode or run the scripts directly.&lt;/li&gt; 
 &lt;li&gt;Launch once, then toggle providers in Settings → Providers.&lt;/li&gt; 
 &lt;li&gt;Install/sign in to provider sources you rely on (CLIs, browser cookies, OAuth/device flow, API keys, or local app/config files).&lt;/li&gt; 
 &lt;li&gt;Optional: set OpenAI cookies (Automatic or Manual) for Codex dashboard extras.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Build from source&lt;/h2&gt; 
&lt;p&gt;Requires macOS 14+ and Swift 6.2+.&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;./Scripts/package_app.sh        # builds CodexBar.app in-place with ad-hoc signing
open CodexBar.app
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Dev loop:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;./Scripts/compile_and_run.sh
./Scripts/compile_and_run.sh --test  # also run the sharded test suite before packaging/relaunching
make check                           # SwiftFormat + SwiftLint
make docs-list                       # list docs with frontmatter summaries
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;CLI install:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# after installing CodexBar.app in /Applications
./bin/install-codexbar-cli.sh
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Related&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;✂️ &lt;a href=&quot;https://github.com/steipete/Trimmy&quot;&gt;Trimmy&lt;/a&gt; — “Paste once, run once.” Flatten multi-line shell snippets so they paste and run.&lt;/li&gt; 
 &lt;li&gt;🧳 &lt;a href=&quot;https://mcporter.dev&quot;&gt;MCPorter&lt;/a&gt; — TypeScript toolkit + CLI for Model Context Protocol servers.&lt;/li&gt; 
 &lt;li&gt;🧿 &lt;a href=&quot;https://askoracle.dev&quot;&gt;oracle&lt;/a&gt; — Ask the oracle when you&#39;re stuck. Invoke GPT-5 Pro with a custom context and files.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Looking for a Windows version?&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Finesssee/Win-CodexBar&quot;&gt;Win-CodexBar&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Linux desktop integration?&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Marouan-chak/codexbar-waybar&quot;&gt;codexbar-waybar&lt;/a&gt; — Waybar custom module + GTK4 popover for Hyprland / Sway / other Wayland compositors, built on top of the bundled Linux CLI.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/andrew-verde/codexbar-cosmic-applet&quot;&gt;codexbar-cosmic-applet&lt;/a&gt; — Native COSMIC (System76) desktop panel applet with a tab per provider, pace projections, and cost/token stats, built on top of the bundled Linux CLI.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://extensions.gnome.org/extension/9841/codexbar/&quot;&gt;Codexbar GNOME&lt;/a&gt; — GNOME Shell extension that brings CodexBar usage into the desktop panel.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jacobcalvert/codexbar-cinnamon-applet&quot;&gt;codexbar-cinnamon-applet&lt;/a&gt; — Linux Mint Cinnamon panel applet powered by CodexBar&#39;s JSON output.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rayoplateado/noctalia-codex-usage&quot;&gt;noctalia-codex-usage&lt;/a&gt; — Noctalia/Quickshell plugin that shows Codex 5-hour and weekly usage limits, built on top of the bundled Linux CLI.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/tylxr59/KodexBar&quot;&gt;KodexBar&lt;/a&gt; — KDE Plasma widget that shows CodexBar usage in the Plasma panel, built on top of the bundled Linux CLI.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/psimaker/codexbar-plasmoid&quot;&gt;codexbar-plasmoid&lt;/a&gt; — KDE Plasma 6 widget for CodexBar&#39;s meter icon, provider switcher, quota windows, pace, credits, local cost, and status, powered by the bundled Linux CLI.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Lucenx9/codexbar-plasma&quot;&gt;CodexBar Plasma&lt;/a&gt; — KDE Plasma 6 widget with multi-provider views, account selection, cost history, notifications, configurable providers, and installable &lt;code&gt;.plasmoid&lt;/code&gt; releases, powered by the bundled Linux CLI.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/noctalia-dev/community-plugins/tree/main/codexbar-meter&quot;&gt;CodexBar Meter&lt;/a&gt; — Noctalia v5 bar widget and panel showing every enabled provider&#39;s quota windows, credits, and pace, installable from Noctalia&#39;s plugin store, built on the bundled Linux CLI.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Status bar &amp;amp; terminal integration&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/enieuwy/showy-quota&quot;&gt;showy-quota&lt;/a&gt; — always-on AI plan quota strips for SketchyBar, tmux, and Zellij (standalone WASM plugin), built on &lt;code&gt;codexbar serve&lt;/code&gt; / the bundled CLI.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Credits&lt;/h2&gt; 
&lt;p&gt;Inspired by &lt;a href=&quot;https://github.com/ryoppippi/ccusage&quot;&gt;ccusage&lt;/a&gt; (MIT), specifically the cost usage tracking.&lt;/p&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;MIT • Peter Steinberger (&lt;a href=&quot;https://twitter.com/steipete&quot;&gt;steipete&lt;/a&gt;)&lt;/p&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/3e7f8beadc144f4c5544c07dff0d049f071d45526d690aecef2681202fca92d6/steipete/CodexBar" medium="image" />
      
    </item>
    
    <item>
      <title>ronitsingh10/FineTune</title>
      <link>https://github.com/ronitsingh10/FineTune</link>
      <description>&lt;p&gt;FineTune, a macOS menu bar app for per-app volume control, multi-device output, audio routing, and 10-band EQ. Free and open-source alternative to SoundSource.&lt;/p&gt;&lt;hr&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ronitsingh10/FineTune/main/assets/icon.png&quot; width=&quot;170&quot; height=&quot;170&quot; alt=&quot;FineTune app icon&quot; align=&quot;left&quot; /&gt; 
&lt;h3&gt;FineTune&lt;/h3&gt; 
&lt;p&gt;Control the volume of every app independently, boost quiet ones up to 4x, route audio to different speakers, and shape your sound with EQ and headphone correction. Lives in your menu bar. Free and open-source.&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/ronitsingh10/FineTune/releases/latest/download/FineTune.dmg&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ronitsingh10/FineTune/main/assets/download-badge.svg?sanitize=true&quot; alt=&quot;Download for macOS&quot; height=&quot;48&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;br clear=&quot;all&quot; /&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://github.com/ronitsingh10/FineTune/releases/latest&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/v/release/ronitsingh10/FineTune?style=for-the-badge&amp;amp;labelColor=1c1c1e&amp;amp;color=0A84FF&amp;amp;logo=github&amp;amp;logoColor=white&quot; alt=&quot;Latest Release&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/ronitsingh10/FineTune/releases&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/downloads/ronitsingh10/FineTune/total?style=for-the-badge&amp;amp;labelColor=1c1c1e&amp;amp;color=3a3a3c&quot; alt=&quot;Downloads&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://raw.githubusercontent.com/ronitsingh10/FineTune/main/LICENSE&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/License-GPLv3-3a3a3c?style=for-the-badge&amp;amp;labelColor=1c1c1e&quot; alt=&quot;License: GPL v3&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://ko-fi.com/ronitsingh10&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Tip_on_Ko--fi-FF5E5B?style=for-the-badge&amp;amp;labelColor=1c1c1e&amp;amp;logo=ko-fi&amp;amp;logoColor=white&quot; alt=&quot;Tip on
  Ko-fi&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://www.apple.com/macos/&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/macOS-15%2B-3a3a3c?style=for-the-badge&amp;amp;labelColor=1c1c1e&amp;amp;logo=apple&amp;amp;logoColor=white&quot; alt=&quot;macOS 15+&quot; /&gt;&lt;/a&gt; &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;strong&gt;English&lt;/strong&gt; · &lt;a href=&quot;https://raw.githubusercontent.com/ronitsingh10/FineTune/main/README.zh-CN.md&quot;&gt;简体中文&lt;/a&gt; &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;https://raw.githubusercontent.com/ronitsingh10/FineTune/main/assets/screenshot-main.png&quot; alt=&quot;FineTune popup showing per-app volume control, multi-device output routing with picker popover, AutoEQ headphone correction, and device-level volume sliders&quot; width=&quot;700&quot; /&gt; &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;https://raw.githubusercontent.com/ronitsingh10/FineTune/main/assets/screenshot-eq.png&quot; alt=&quot;FineTune showing the Brave Browser app row expanded with the EQ panel open and a Vocal Clarity preset selected&quot; width=&quot;700&quot; /&gt; &lt;/p&gt; 
&lt;h2&gt;Install&lt;/h2&gt; 
&lt;p&gt;&lt;strong&gt;Homebrew&lt;/strong&gt; (recommended)&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;brew install --cask finetune
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;&lt;strong&gt;Manual&lt;/strong&gt; — &lt;a href=&quot;https://github.com/ronitsingh10/FineTune/releases/latest&quot;&gt;Download latest release&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;Quick Start&lt;/h2&gt; 
&lt;ol&gt; 
 &lt;li&gt;Install FineTune and launch it from your Applications folder&lt;/li&gt; 
 &lt;li&gt;Grant &lt;strong&gt;Screen &amp;amp; System Audio Recording&lt;/strong&gt; permission when prompted&lt;/li&gt; 
 &lt;li&gt;Click the FineTune icon in your menu bar. Apps playing audio appear automatically.&lt;/li&gt; 
&lt;/ol&gt; 
&lt;p&gt;That&#39;s it. Adjust sliders, route audio, and explore EQ from the menu bar.&lt;/p&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;&lt;strong&gt;Tip:&lt;/strong&gt; Want FineTune to auto-switch to a specific device when you connect it? Open edit mode (pencil icon) and drag it above the built-in speakers. This is a one-time setup. Your preferred order is saved permanently.&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;h2&gt;Features&lt;/h2&gt; 
&lt;h3&gt;🎚 Volume Control&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Per-app volume&lt;/strong&gt; — Individual sliders and mute for each application&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Per-app volume boost&lt;/strong&gt; — 2x / 3x / 4x gain presets&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Pinned apps&lt;/strong&gt; — Keep apps visible in the menu bar even when they&#39;re not playing, so you can configure volume, EQ, and routing in advance&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Ignore apps&lt;/strong&gt; — Completely disengage FineTune from specific apps. Tears down the audio tap so the app returns to normal macOS audio&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Scroll-wheel volume&lt;/strong&gt; — Hover any slider in the popup, the HUD, or the EQ panel and scroll to adjust.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;⌨️ Keyboard&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Global volume hotkeys&lt;/strong&gt; — Bind your own keys to &lt;strong&gt;App Volume Up&lt;/strong&gt;, &lt;strong&gt;App Volume Down&lt;/strong&gt;, and &lt;strong&gt;App Mute&lt;/strong&gt; from Settings → Shortcuts. The &quot;app&quot; is whichever is currently making sound, so volume-down while a YouTube tab plays behind a foreground Terminal turns down YouTube, not the terminal. If nothing is audible, the hotkey falls through to the frontmost app.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Toggle the popup from anywhere&lt;/strong&gt; — Bind a hotkey to &lt;strong&gt;Toggle FineTune Popup&lt;/strong&gt; and the menu bar opens or closes on demand, including from full-screen apps.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Configurable step size&lt;/strong&gt; — Pick &lt;strong&gt;Coarse / Normal / Fine / Extra-Fine&lt;/strong&gt; under Settings → Shortcuts → Volume Step. The same setting governs the F10–F12 media keys, the global hotkeys, and the popup&#39;s arrow-key navigation.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Hold to ramp, auto-unmute on volume-up&lt;/strong&gt; — Holding App Volume Up or Down emits repeats the way macOS does for arrow keys. Volume-up while muted unmutes and sets the new level in one keystroke.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Drive the popup with the keyboard&lt;/strong&gt; — Once the popup is open, &lt;strong&gt;↑ / ↓&lt;/strong&gt; move between rows, &lt;strong&gt;← / →&lt;/strong&gt; adjusts the focused row&#39;s volume (Shift = 2× step), &lt;strong&gt;M&lt;/strong&gt; toggles mute, &lt;strong&gt;Return / Space&lt;/strong&gt; activates, &lt;strong&gt;Tab&lt;/strong&gt; switches between Output and Input device tabs, &lt;strong&gt;Esc&lt;/strong&gt; closes. The focused row autoscrolls to center as you arrow through.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🔀 Audio Routing&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Multi-device output&lt;/strong&gt; — Route audio to multiple devices simultaneously&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Audio routing&lt;/strong&gt; — Send apps to different outputs or follow system default&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Device priority&lt;/strong&gt; — Choose which device FineTune switches to when a new device connects; auto-fallback on disconnect&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Auto-restore&lt;/strong&gt; — When a device reconnects, apps automatically return to it with their volume, routing, and EQ intact&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🎛 EQ &amp;amp; Correction&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;10-band EQ&lt;/strong&gt; — 20 presets across 5 categories&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;User EQ presets&lt;/strong&gt; — Save, rename, and manage custom EQ configurations per app&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;AutoEQ headphone correction&lt;/strong&gt; — Search thousands of headphone profiles or import your own ParametricEQ.txt files for per-device frequency response correction&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Loudness compensation&lt;/strong&gt; — Automatic bass and treble correction at low volumes using ISO 226:2023 equal-loudness contours, with real-time level management to keep perceived loudness consistent&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🖥 Devices &amp;amp; System&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Input device control&lt;/strong&gt; — Monitor and adjust microphone levels&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Alert volume&lt;/strong&gt; — Control macOS notification and alert volume from settings&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Smart volume backend&lt;/strong&gt; — FineTune auto-picks hardware, DDC, or software volume per device. If the hardware slider on a USB DAC or HDMI output doesn&#39;t actually control level, force software volume from the device inspector and FineTune remembers the choice for that device&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Device inspector&lt;/strong&gt; — Tap the info button on any device row for sample rate (with picker), transport, UID copy, hog-mode banner, and the software-volume override&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Hide devices&lt;/strong&gt; — Eye toggle in edit mode hides output and input devices you don&#39;t want in the list, mirroring the app-hide flow&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Bluetooth device management&lt;/strong&gt; — Connect paired devices directly from the menu bar&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Monitor speaker control&lt;/strong&gt; — Adjust volume on external displays via DDC&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Media keys &amp;amp; Volume HUD&lt;/strong&gt; — Opt-in F10–F12 control for the default output device, with a Tahoe-style or Classic-style on-screen HUD. The write goes through FineTune&#39;s volume pipeline, so keys keep working on USB interfaces and HDMI outputs where macOS&#39;s own keys are greyed out because the hardware slider is broken.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Dynamic menu bar icon&lt;/strong&gt; — Pick from four styles in Settings (Default, Speaker, Waveform, Equalizer). The &lt;strong&gt;Speaker&lt;/strong&gt; style tracks volume live (zero / low / mid / high glyphs) and switches to a slashed speaker when muted. All styles briefly flash the new output&#39;s SF Symbol on device switch. Changing style applies instantly, no relaunch required.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Menu bar app&lt;/strong&gt; — Lightweight, always accessible&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;URL schemes&lt;/strong&gt; — Automate volume, mute, device routing, and more from scripts&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🎨 Appearance&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Light or Dark theme&lt;/strong&gt; — Settings → General → Theme matches macOS or locks FineTune to Light or Dark. The menu bar popup, every popover, and the volume HUD switch immediately.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Popup density&lt;/strong&gt; — Settings → General → Popup Size picks &lt;strong&gt;Compact / Comfortable / Spacious&lt;/strong&gt; with a live tile preview. Compact fits more apps on small screens; Spacious gives bigger hit areas for trackpads.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Documentation&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/ronitsingh10/FineTune/main/guide/autoeq.md&quot;&gt;AutoEQ &amp;amp; Headphone Correction&lt;/a&gt;&lt;/strong&gt; — Apply frequency correction from the &lt;a href=&quot;https://github.com/jaakkopasanen/AutoEq&quot;&gt;AutoEQ&lt;/a&gt; project, import &lt;a href=&quot;https://sourceforge.net/projects/equalizerapo/&quot;&gt;EqualizerAPO&lt;/a&gt; profiles, or browse &lt;a href=&quot;https://www.autoeq.app/&quot;&gt;autoeq.app&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/ronitsingh10/FineTune/main/guide/url-schemes.md&quot;&gt;URL Schemes&lt;/a&gt;&lt;/strong&gt; — Automate FineTune from Terminal, &lt;a href=&quot;https://support.apple.com/guide/shortcuts-mac&quot;&gt;Shortcuts&lt;/a&gt;, &lt;a href=&quot;https://raycast.com&quot;&gt;Raycast&lt;/a&gt;, or scripts&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/ronitsingh10/FineTune/main/guide/troubleshooting.md&quot;&gt;Troubleshooting&lt;/a&gt;&lt;/strong&gt; — Permission issues, missing apps, audio problems&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Star this repo&lt;/strong&gt; — Help others discover FineTune&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Report bugs&lt;/strong&gt; — &lt;a href=&quot;https://github.com/ronitsingh10/FineTune/issues&quot;&gt;Open an issue&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Contribute code&lt;/strong&gt; — See &lt;a href=&quot;https://raw.githubusercontent.com/ronitsingh10/FineTune/main/CONTRIBUTING.md&quot;&gt;CONTRIBUTING.md&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Build from Source&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git clone https://github.com/ronitsingh10/FineTune.git
cd FineTune
open FineTune.xcodeproj
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Requirements&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;macOS 15.0 (Sequoia) or later&lt;/li&gt; 
 &lt;li&gt;Audio capture permission (prompted on first launch)&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Support&lt;/h2&gt; 
&lt;p&gt;FineTune is free and open source, forever. If it made your day a little easier, you can buy me a coffee — but genuinely not expected 🙏&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://ko-fi.com/ronitsingh10&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Buy_me_a_coffee-FF5E5B?style=for-the-badge&amp;amp;logo=ko-fi&amp;amp;logoColor=white&quot; alt=&quot;Buy me a coffee&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://raw.githubusercontent.com/ronitsingh10/FineTune/main/LICENSE&quot;&gt;GPL v3&lt;/a&gt;&lt;/p&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/1e0e0106222804ceee1de4e5255b49a26a874c80d2aa6c2ed6df6bcb0da26aa0/ronitsingh10/FineTune" medium="image" />
      
    </item>
    
    <item>
      <title>robinebers/openusage</title>
      <link>https://github.com/robinebers/openusage</link>
      <description>&lt;p&gt;Burning through your subscriptions too fast? Paying for stuff you never use? Stop guessing. OpenUsage is free and open source.&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;OpenUsage&lt;/h1&gt; 
&lt;p&gt;Track your AI coding subscriptions from the macOS menu bar — native Swift edition.&lt;/p&gt; 
&lt;p&gt;OpenUsage shows how much of your AI coding plans you&#39;ve used: session and weekly limits, credits, and spend, all in one popover. Pin your most important metrics straight into the menu bar.&lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/assets/screenshot.jpg?v=20260706&quot; alt=&quot;OpenUsage menu bar tracker showing Claude and Codex session, weekly, and spend usage&quot; width=&quot;900&quot; /&gt; &lt;/p&gt; 
&lt;h2&gt;Installation&lt;/h2&gt; 
&lt;p&gt;&lt;strong&gt;Homebrew:&lt;/strong&gt;&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-sh&quot;&gt;brew install --cask openusage
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;&lt;strong&gt;Direct download:&lt;/strong&gt; grab the latest universal DMG from the &lt;a href=&quot;https://github.com/robinebers/openusage/releases/latest&quot;&gt;releases page&lt;/a&gt;, open it, and drag OpenUsage to your Applications folder.&lt;/p&gt; 
&lt;p&gt;Either way, the app updates itself in place via signed, notarized &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/updates.md&quot;&gt;Sparkle&lt;/a&gt; updates. Requires macOS 15 (Sequoia) or later.&lt;/p&gt; 
&lt;h2&gt;Supported Providers&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/providers/antigravity.md&quot;&gt;Antigravity&lt;/a&gt;&lt;/strong&gt; — shared Gemini and Claude pool quotas, 5-hour and weekly windows&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/providers/claude.md&quot;&gt;Claude&lt;/a&gt;&lt;/strong&gt; — session, weekly, model-specific limits, extra usage, local daily spend&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/providers/codex.md&quot;&gt;Codex&lt;/a&gt;&lt;/strong&gt; — session, weekly, credits, local daily spend&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/providers/copilot.md&quot;&gt;Copilot&lt;/a&gt;&lt;/strong&gt; — AI credits, extra usage, organization billing, chat and completions&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/providers/cursor.md&quot;&gt;Cursor&lt;/a&gt;&lt;/strong&gt; — credits, total/auto/API usage, requests, on-demand, per-day spend&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/providers/devin.md&quot;&gt;Devin&lt;/a&gt;&lt;/strong&gt; — weekly and daily quota, extra usage balance&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/providers/grok.md&quot;&gt;Grok&lt;/a&gt;&lt;/strong&gt; — weekly shared pool, pay-as-you-go, local daily spend&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/providers/opencode.md&quot;&gt;OpenCode&lt;/a&gt;&lt;/strong&gt; — Go session/weekly/monthly caps, Zen spend, local daily spend&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/providers/openrouter.md&quot;&gt;OpenRouter&lt;/a&gt;&lt;/strong&gt; — credit balance, daily/weekly/monthly spend (API key)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/providers/zai.md&quot;&gt;Z.ai&lt;/a&gt;&lt;/strong&gt; — session, weekly, web-search quotas (GLM Coding Plan, API key)&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;Most providers read the credentials already on your machine (keychain, auth files, app state) — no extra login. OpenRouter and &lt;a href=&quot;http://Z.ai&quot;&gt;Z.ai&lt;/a&gt; are the exceptions: they have no local credential to reuse, so you supply an API key (see &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/providers/openrouter.md&quot;&gt;OpenRouter setup&lt;/a&gt; or &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/providers/zai.md&quot;&gt;Z.ai setup&lt;/a&gt;). Credentials are used only for the corresponding provider requests. OpenUsage&#39;s separate anonymous summaries and public pricing downloads are documented under &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/privacy.md&quot;&gt;Privacy &amp;amp; usage data&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Features&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Menu bar pins.&lt;/strong&gt; Pin metrics to the menu bar (up to 2 per provider); render as compact text or mini bars. The strip hides metrics with no data instead of showing placeholders.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Dashboard popover.&lt;/strong&gt; Provider-grouped meters with live reset countdowns and pace indicators. Click usage or reset values to flip their display everywhere; right-click a row to hide or star it, refresh its provider, or open Customize.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Global shortcut.&lt;/strong&gt; Toggle the popover from anywhere — record any combo in Settings.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Customize.&lt;/strong&gt; Turn providers and metrics on or off, choose which rows stay Always Visible or On Demand, and drag-reorder both.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Stale-while-revalidate.&lt;/strong&gt; Cached values display instantly at launch; refresh runs every 5 minutes.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/cli.md&quot;&gt;One-shot CLI&lt;/a&gt;.&lt;/strong&gt; Agents can read stable limit JSON through the same five-minute cache with &lt;code&gt;openusage&lt;/code&gt;, or bypass freshness with &lt;code&gt;openusage --force&lt;/code&gt;; the menu-bar app does not need to be running.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/local-http-api.md&quot;&gt;Local HTTP API&lt;/a&gt;.&lt;/strong&gt; Other apps can read machine-friendly limits from &lt;code&gt;127.0.0.1:6736/v1/limits&lt;/code&gt;; the legacy &lt;code&gt;/v1/usage&lt;/code&gt; UI contract remains supported. It is loopback-only and never serves credentials; note that browser pages can read it too — see the &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/local-http-api.md#cors-and-privacy&quot;&gt;privacy note&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/proxy.md&quot;&gt;Proxy support&lt;/a&gt;.&lt;/strong&gt; Route provider requests through SOCKS5 or HTTP(S) via &lt;code&gt;~/.openusage/config.json&lt;/code&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Native settings.&lt;/strong&gt; Launch at login, global shortcut, icon style, theme, density, 12/24-hour time — see &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/settings.md&quot;&gt;Settings&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/updates.md&quot;&gt;Automatic updates&lt;/a&gt;.&lt;/strong&gt; Signed, notarized in-app updates via Sparkle, with an optional beta channel.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Documentation&lt;/h2&gt; 
&lt;p&gt;Behavior docs live in &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/README.md&quot;&gt;docs/&lt;/a&gt;: the &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/dashboard.md&quot;&gt;dashboard&lt;/a&gt;, &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/menu-bar.md&quot;&gt;menu bar pins&lt;/a&gt;, &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/settings.md&quot;&gt;settings&lt;/a&gt;, &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/refreshing.md&quot;&gt;refresh &amp;amp; caching&lt;/a&gt;, the &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/cli.md&quot;&gt;CLI&lt;/a&gt;, the &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/local-http-api.md&quot;&gt;local HTTP API&lt;/a&gt;, the &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/proxy.md&quot;&gt;proxy&lt;/a&gt;, and one page per provider.&lt;/p&gt; 
&lt;p&gt;For working on the code, see the developer docs: &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/architecture.md&quot;&gt;architecture&lt;/a&gt;, &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/adding-a-provider.md&quot;&gt;adding a provider&lt;/a&gt;, and &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/debugging.md&quot;&gt;debugging &amp;amp; capturing logs&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Requirements&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;macOS 15 (Sequoia) or later&lt;/li&gt; 
 &lt;li&gt;Universal binary — runs natively on both Apple Silicon and Intel Macs&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;The Today / Yesterday / Last 30 Days spend tiles are computed natively from local CLI logs (Claude, Codex, and Grok) or Cursor&#39;s usage export — no Node.js or other runtime needed. Dollars are estimated with &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/pricing.md&quot;&gt;dynamically refreshed model pricing&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Building&lt;/h2&gt; 
&lt;pre&gt;&lt;code class=&quot;language-sh&quot;&gt;swift build            # debug build
swift test             # run the test suite
./script/build_and_run.sh   # build and launch the dev app from dist/ (no install)
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Architecture&lt;/h2&gt; 
&lt;p&gt;SwiftPM package, SwiftUI content hosted in an AppKit-owned &lt;code&gt;NSStatusItem&lt;/code&gt; + custom key-capable &lt;code&gt;NSPanel&lt;/code&gt;, Swift 6 strict concurrency. The app and CLI share one module: providers implement a small &lt;code&gt;ProviderRuntime&lt;/code&gt; protocol (auth store → usage client → mapper → &lt;code&gt;ProviderSnapshot&lt;/code&gt;), and both surfaces read the same normalized data — see the &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/architecture.md&quot;&gt;architecture overview&lt;/a&gt; for how the pieces fit together and &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/AGENTS.md&quot;&gt;AGENTS.md&lt;/a&gt; for engineering conventions.&lt;/p&gt; 
&lt;h2&gt;Releasing&lt;/h2&gt; 
&lt;p&gt;Releases are automated: pushing a &lt;code&gt;v*&lt;/code&gt; tag on &lt;code&gt;main&lt;/code&gt; builds, signs, notarizes, and publishes a new version. A plain tag (&lt;code&gt;v0.7.1&lt;/code&gt;) ships to everyone; a pre-release suffix (&lt;code&gt;v0.7.1-beta.1&lt;/code&gt;) ships to the beta channel. The pipeline lives in &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/.github/workflows/release.yml&quot;&gt;.github/workflows/release.yml&lt;/a&gt;, and the step-by-step is in the &lt;code&gt;release-swift&lt;/code&gt; skill.&lt;/p&gt; 
&lt;h3&gt;Release setup (one-time)&lt;/h3&gt; 
&lt;p&gt;The release workflow needs these repository secrets (Settings → Secrets and variables → Actions):&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Secret&lt;/th&gt; 
   &lt;th&gt;What it is&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;APPLE_CERTIFICATE&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;base64 of your Developer ID Application &lt;code&gt;.p12&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;APPLE_CERTIFICATE_PASSWORD&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;the password set when exporting that &lt;code&gt;.p12&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;APPLE_ID&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;the Apple ID email used for notarization&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;APPLE_PASSWORD&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;an app-specific password for that Apple ID&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;APPLE_TEAM_ID&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;your Apple Developer team ID&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;APPLE_DEVELOPER_ID_ICLOUD_PROFILE&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;base64 Developer ID provisioning profile for the production iCloud container&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;SPARKLE_PUBLIC_KEY&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;base64 EdDSA public key, baked into the build as &lt;code&gt;SUPublicEDKey&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;SPARKLE_PRIVATE_KEY&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;base64 EdDSA private key used to sign the DMG&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;POSTHOG_CLI_API_KEY&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;PostHog personal API key used to upload dSYMs for crash symbolication&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;POSTHOG_CLI_PROJECT_ID&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;numeric PostHog project ID the dSYMs upload to&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;p&gt;Export the Developer ID Application cert (with its private key) from Keychain Access as a &lt;code&gt;.p12&lt;/code&gt;, then &lt;code&gt;base64 -i DeveloperID.p12 | pbcopy&lt;/code&gt;. App-specific passwords come from &lt;a href=&quot;http://appleid.apple.com&quot;&gt;appleid.apple.com&lt;/a&gt; → Sign-In and Security → App-Specific Passwords. Generate the Sparkle EdDSA key pair once with Sparkle&#39;s &lt;code&gt;generate_keys&lt;/code&gt; tool; the public and private values must be a matching pair or signing is silently skipped.&lt;/p&gt; 
&lt;p&gt;For iCloud Sync, store the original development and Developer ID provisioning profiles in 1Password as secure documents. Install the development profile on each registered Mac; base64-encode the Developer ID profile and store it only in the &lt;code&gt;APPLE_DEVELOPER_ID_ICLOUD_PROFILE&lt;/code&gt; Actions secret. See &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/docs/icloud-sync.md#development-and-release-setup&quot;&gt;iCloud Sync&lt;/a&gt; for the container identifiers, build command, and file-inspection command.&lt;/p&gt; 
&lt;p&gt;The two &lt;code&gt;POSTHOG_CLI_*&lt;/code&gt; secrets are only used to upload debug symbols (dSYMs) so PostHog can symbolicate crash reports: &lt;code&gt;POSTHOG_CLI_API_KEY&lt;/code&gt; is a PostHog personal API key (PostHog → Settings → Personal API keys) and &lt;code&gt;POSTHOG_CLI_PROJECT_ID&lt;/code&gt; is the numeric ID from your project URL. The upload host is hardcoded in the workflow (&lt;code&gt;https://us.i.posthog.com&lt;/code&gt;), so there is no &lt;code&gt;POSTHOG_CLI_HOST&lt;/code&gt; secret. Unlike the secrets above these don&#39;t block a release — if &lt;code&gt;POSTHOG_CLI_API_KEY&lt;/code&gt; is unset the workflow skips the upload with a warning and the release still ships, but crash reports for that version show raw addresses instead of symbolicated stack traces.&lt;/p&gt; 
&lt;p&gt;The repository must be public (Sparkle fetches the DMG and appcast anonymously), and the appcast is served from GitHub Pages — confirm Settings → Pages points at the &lt;code&gt;gh-pages&lt;/code&gt; branch after the first release.&lt;/p&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;Issues are welcome. Pull requests are &lt;strong&gt;strict and issue-first&lt;/strong&gt;: external PRs must link an issue a maintainer has approved with the &lt;code&gt;approved&lt;/code&gt; label, and automation closes anything that doesn&#39;t follow the rules — so &lt;strong&gt;most external PRs are closed by design&lt;/strong&gt;. Read &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/CONTRIBUTING.md&quot;&gt;CONTRIBUTING.md&lt;/a&gt; before opening one. Report security issues privately per &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/SECURITY.md&quot;&gt;SECURITY.md&lt;/a&gt;. The OpenUsage name and logo are covered by the &lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/TRADEMARK.md&quot;&gt;trademark policy&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://raw.githubusercontent.com/robinebers/openusage/main/LICENSE&quot;&gt;MIT&lt;/a&gt;&lt;/p&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/f4d20b9c28da820179c3f1f3a10f4f833b61096f086d7d0682dd9f35de01c038/robinebers/openusage" medium="image" />
      
    </item>
    
    <item>
      <title>TelegramMessenger/Telegram-iOS</title>
      <link>https://github.com/TelegramMessenger/Telegram-iOS</link>
      <description>&lt;p&gt;Telegram-iOS&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;Telegram iOS Source Code Compilation Guide&lt;/h1&gt; 
&lt;p&gt;We welcome all developers to use our API and source code to create applications on our platform. There are several things we require from &lt;strong&gt;all developers&lt;/strong&gt; for the moment.&lt;/p&gt; 
&lt;h1&gt;Creating your Telegram Application&lt;/h1&gt; 
&lt;ol&gt; 
 &lt;li&gt;&lt;a href=&quot;https://core.telegram.org/api/obtaining_api_id&quot;&gt;&lt;strong&gt;Obtain your own api_id&lt;/strong&gt;&lt;/a&gt; for your application.&lt;/li&gt; 
 &lt;li&gt;Please &lt;strong&gt;do not&lt;/strong&gt; use the name Telegram for your app — or make sure your users understand that it is unofficial.&lt;/li&gt; 
 &lt;li&gt;Kindly &lt;strong&gt;do not&lt;/strong&gt; use our standard logo (white paper plane in a blue circle) as your app&#39;s logo.&lt;/li&gt; 
 &lt;li&gt;Please study our &lt;a href=&quot;https://core.telegram.org/mtproto/security_guidelines&quot;&gt;&lt;strong&gt;security guidelines&lt;/strong&gt;&lt;/a&gt; and take good care of your users&#39; data and privacy.&lt;/li&gt; 
 &lt;li&gt;Please remember to publish &lt;strong&gt;your&lt;/strong&gt; code too in order to comply with the licences.&lt;/li&gt; 
&lt;/ol&gt; 
&lt;h1&gt;Quick Compilation Guide&lt;/h1&gt; 
&lt;h2&gt;Get the Code&lt;/h2&gt; 
&lt;pre&gt;&lt;code&gt;git clone --recursive -j8 https://github.com/TelegramMessenger/Telegram-iOS.git
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Setup Xcode&lt;/h2&gt; 
&lt;p&gt;Install Xcode (directly from &lt;a href=&quot;https://developer.apple.com/download/applications&quot;&gt;https://developer.apple.com/download/applications&lt;/a&gt; or using the App Store).&lt;/p&gt; 
&lt;h2&gt;Adjust Configuration&lt;/h2&gt; 
&lt;ol&gt; 
 &lt;li&gt;Generate a random identifier:&lt;/li&gt; 
&lt;/ol&gt; 
&lt;pre&gt;&lt;code&gt;openssl rand -hex 8
&lt;/code&gt;&lt;/pre&gt; 
&lt;ol start=&quot;2&quot;&gt; 
 &lt;li&gt;Create a new Xcode project. Use &lt;code&gt;Telegram&lt;/code&gt; as the Product Name. Use &lt;code&gt;org.{identifier from step 1}&lt;/code&gt; as the Organization Identifier.&lt;/li&gt; 
 &lt;li&gt;Open &lt;code&gt;Keychain Access&lt;/code&gt; and navigate to &lt;code&gt;Certificates&lt;/code&gt;. Locate &lt;code&gt;Apple Development: your@email.address (XXXXXXXXXX)&lt;/code&gt; and double tap the certificate. Under &lt;code&gt;Details&lt;/code&gt;, locate &lt;code&gt;Organizational Unit&lt;/code&gt;. This is the Team ID.&lt;/li&gt; 
 &lt;li&gt;Edit &lt;code&gt;build-system/template_minimal_development_configuration.json&lt;/code&gt;. Use data from the previous steps.&lt;/li&gt; 
&lt;/ol&gt; 
&lt;h2&gt;Generate an Xcode project&lt;/h2&gt; 
&lt;pre&gt;&lt;code&gt;python3 build-system/Make/Make.py \
    --cacheDir=&quot;$HOME/telegram-bazel-cache&quot; \
    generateProject \
    --configurationPath=build-system/template_minimal_development_configuration.json \
    --xcodeManagedCodesigning
&lt;/code&gt;&lt;/pre&gt; 
&lt;h1&gt;Advanced Compilation Guide&lt;/h1&gt; 
&lt;h2&gt;Xcode&lt;/h2&gt; 
&lt;ol&gt; 
 &lt;li&gt;Copy and edit &lt;code&gt;build-system/appstore-configuration.json&lt;/code&gt;.&lt;/li&gt; 
 &lt;li&gt;Copy &lt;code&gt;build-system/fake-codesigning&lt;/code&gt;. Create and download provisioning profiles, using the &lt;code&gt;profiles&lt;/code&gt; folder as a reference for the entitlements.&lt;/li&gt; 
 &lt;li&gt;Generate an Xcode project:&lt;/li&gt; 
&lt;/ol&gt; 
&lt;pre&gt;&lt;code&gt;python3 build-system/Make/Make.py \
    --cacheDir=&quot;$HOME/telegram-bazel-cache&quot; \
    generateProject \
    --configurationPath=configuration_from_step_1.json \
    --codesigningInformationPath=directory_from_step_2
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;IPA&lt;/h2&gt; 
&lt;ol&gt; 
 &lt;li&gt;Repeat the steps from the previous section. Use distribution provisioning profiles.&lt;/li&gt; 
 &lt;li&gt;Run:&lt;/li&gt; 
&lt;/ol&gt; 
&lt;pre&gt;&lt;code&gt;python3 build-system/Make/Make.py \
    --cacheDir=&quot;$HOME/telegram-bazel-cache&quot; \
    build \
    --configurationPath=...see previous section... \
    --codesigningInformationPath=...see previous section... \
    --buildNumber=100001 \
    --configuration=release_arm64
&lt;/code&gt;&lt;/pre&gt; 
&lt;h1&gt;FAQ&lt;/h1&gt; 
&lt;h2&gt;Xcode is stuck at &quot;build-request.json not updated yet&quot;&lt;/h2&gt; 
&lt;p&gt;Occasionally, you might observe the following message in your build log:&lt;/p&gt; 
&lt;pre&gt;&lt;code&gt;&quot;/Users/xxx/Library/Developer/Xcode/DerivedData/Telegram-xxx/Build/Intermediates.noindex/XCBuildData/xxx.xcbuilddata/build-request.json&quot; not updated yet, waiting...
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Should this occur, simply cancel the ongoing build and initiate a new one.&lt;/p&gt; 
&lt;h2&gt;Telegram_xcodeproj: no such package&lt;/h2&gt; 
&lt;p&gt;Following a system restart, the auto-generated Xcode project might encounter a build failure accompanied by this error:&lt;/p&gt; 
&lt;pre&gt;&lt;code&gt;ERROR: Skipping &#39;@rules_xcodeproj_generated//generator/Telegram/Telegram_xcodeproj:Telegram_xcodeproj&#39;: no such package &#39;@rules_xcodeproj_generated//generator/Telegram/Telegram_xcodeproj&#39;: BUILD file not found in directory &#39;generator/Telegram/Telegram_xcodeproj&#39; of external repository @rules_xcodeproj_generated. Add a BUILD file to a directory to mark it as a package.
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;If you encounter this issue, re-run the project generation steps in the README.&lt;/p&gt; 
&lt;h1&gt;Tips&lt;/h1&gt; 
&lt;h2&gt;Codesigning is not required for simulator-only builds&lt;/h2&gt; 
&lt;p&gt;Add &lt;code&gt;--disableProvisioningProfiles&lt;/code&gt;:&lt;/p&gt; 
&lt;pre&gt;&lt;code&gt;python3 build-system/Make/Make.py \
    --cacheDir=&quot;$HOME/telegram-bazel-cache&quot; \
    generateProject \
    --configurationPath=path-to-configuration.json \
    --codesigningInformationPath=path-to-provisioning-data \
    --disableProvisioningProfiles
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Versions&lt;/h2&gt; 
&lt;p&gt;Each release is built using a specific Xcode version (see &lt;code&gt;versions.json&lt;/code&gt;). The helper script checks the versions of the installed software and reports an error if they don&#39;t match the ones specified in &lt;code&gt;versions.json&lt;/code&gt;. It is possible to bypass these checks:&lt;/p&gt; 
&lt;pre&gt;&lt;code&gt;python3 build-system/Make/Make.py --overrideXcodeVersion build ... # Don&#39;t check the version of Xcode
&lt;/code&gt;&lt;/pre&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/661a24365be2551afd565426c2d30bb74424b04ec09f7ad14dd2af611454fe12/TelegramMessenger/Telegram-iOS" medium="image" />
      
    </item>
    
    <item>
      <title>Beingpax/VoiceInk</title>
      <link>https://github.com/Beingpax/VoiceInk</link>
      <description>&lt;p&gt;The best open-source alternative to Superwhisper &amp; Wispr Flow. Voice-to-text app for macOS with no subscription&lt;/p&gt;&lt;hr&gt;&lt;div align=&quot;center&quot;&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/Beingpax/VoiceInk/main/VoiceInk/Assets.xcassets/AppIcon.appiconset/256-mac.png&quot; width=&quot;180&quot; height=&quot;180&quot; /&gt; 
 &lt;h1&gt;VoiceInk&lt;/h1&gt; 
 &lt;p&gt;Voice to text app for macOS to transcribe what you say to text almost instantly&lt;/p&gt; 
 &lt;p&gt;&lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/License-GPL%20v3-blue.svg?sanitize=true&quot; alt=&quot;License&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/badge/platform-macOS%2014.0%2B-brightgreen&quot; alt=&quot;Platform&quot; /&gt; &lt;a href=&quot;https://github.com/Beingpax/VoiceInk/releases&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/v/release/Beingpax/VoiceInk&quot; alt=&quot;GitHub release (latest by date)&quot; /&gt;&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/downloads/Beingpax/VoiceInk/total&quot; alt=&quot;GitHub all releases&quot; /&gt; &lt;img src=&quot;https://img.shields.io/github/stars/Beingpax/VoiceInk?style=social&quot; alt=&quot;GitHub stars&quot; /&gt;&lt;/p&gt; 
 &lt;p&gt; &lt;a href=&quot;https://tryvoiceink.com&quot;&gt;Website&lt;/a&gt; • &lt;a href=&quot;https://www.youtube.com/@tryvoiceink&quot;&gt;YouTube&lt;/a&gt; &lt;/p&gt; 
 &lt;a href=&quot;https://tryvoiceink.com&quot;&gt; &lt;img src=&quot;https://img.shields.io/badge/Download%20Now-Latest%20Version-blue?style=for-the-badge&amp;amp;logo=apple&quot; alt=&quot;Download VoiceInk&quot; width=&quot;250&quot; /&gt; &lt;/a&gt; 
&lt;/div&gt; 
&lt;hr /&gt; 
&lt;p&gt;VoiceInk is a native macOS application that transcribes what you say to text almost instantly. You can find all the information and download the app from &lt;a href=&quot;https://tryvoiceink.com&quot;&gt;here&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;&lt;img src=&quot;https://github.com/user-attachments/assets/12367379-83e7-48a6-b52c-4488a6a04bba&quot; alt=&quot;VoiceInk Mac App&quot; /&gt;&lt;/p&gt; 
&lt;p&gt;After dedicating the past 5 months to developing this app, I&#39;ve decided to open source it for the greater good.&lt;/p&gt; 
&lt;p&gt;My goal is to make it &lt;strong&gt;the most efficient and privacy-focused voice-to-text solution for macOS&lt;/strong&gt; that is a joy to use. While the source code is now open for experienced developers to build and contribute, purchasing a license helps support continued development and gives you access to automatic updates, priority support, and upcoming features.&lt;/p&gt; 
&lt;h2&gt;Features&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;🎙️ &lt;strong&gt;Accurate Transcription&lt;/strong&gt;: Local AI models that transcribe your voice to text with 99% accuracy, almost instantly&lt;/li&gt; 
 &lt;li&gt;🔒 &lt;strong&gt;Privacy First&lt;/strong&gt;: 100% offline processing ensures your data never leaves your device&lt;/li&gt; 
 &lt;li&gt;⚡ &lt;strong&gt;Modes&lt;/strong&gt;: Intelligent app detection automatically applies your perfect pre-configured settings based on the app/ URL you&#39;re on&lt;/li&gt; 
 &lt;li&gt;🧠 &lt;strong&gt;Context Aware&lt;/strong&gt;: Smart AI that understands your screen content and adapts to the context&lt;/li&gt; 
 &lt;li&gt;🎯 &lt;strong&gt;Global Shortcuts&lt;/strong&gt;: Configurable keyboard shortcuts for quick recording and push-to-talk functionality&lt;/li&gt; 
 &lt;li&gt;📝 &lt;strong&gt;Personal Dictionary&lt;/strong&gt;: Train the AI to understand your unique terminology with custom words, industry terms, and smart text replacements&lt;/li&gt; 
 &lt;li&gt;🔄 &lt;strong&gt;Smart Modes&lt;/strong&gt;: Instantly switch between AI-powered modes optimized for different writing styles and contexts&lt;/li&gt; 
 &lt;li&gt;🤖 &lt;strong&gt;AI Assistant&lt;/strong&gt;: Built-in voice assistant mode for a quick chatGPT like conversational assistant&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Get Started&lt;/h2&gt; 
&lt;h3&gt;Download&lt;/h3&gt; 
&lt;p&gt;Get the latest version with a free trial from &lt;a href=&quot;https://tryvoiceink.com&quot;&gt;tryvoiceink.com&lt;/a&gt;. Your purchase helps me work on VoiceInk full-time and continuously improve it with new features and updates.&lt;/p&gt; 
&lt;h4&gt;Homebrew&lt;/h4&gt; 
&lt;p&gt;Alternatively, you can install VoiceInk via &lt;code&gt;brew&lt;/code&gt;:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-shell&quot;&gt;brew install --cask voiceink
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;Build from Source&lt;/h3&gt; 
&lt;p&gt;As an open-source project, you can build VoiceInk yourself by following the instructions in &lt;a href=&quot;https://raw.githubusercontent.com/Beingpax/VoiceInk/main/BUILDING.md&quot;&gt;BUILDING.md&lt;/a&gt;. However, the compiled version includes additional benefits like automatic updates, priority support via Discord and email, and helps fund ongoing development.&lt;/p&gt; 
&lt;h2&gt;Requirements&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;macOS 14.4 or later&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Documentation&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Beingpax/VoiceInk/main/BUILDING.md&quot;&gt;Building from Source&lt;/a&gt; - Detailed instructions for building the project&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Beingpax/VoiceInk/main/CONTRIBUTING.md&quot;&gt;Contributing Guidelines&lt;/a&gt; - How to contribute to VoiceInk&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Beingpax/VoiceInk/main/CODE_OF_CONDUCT.md&quot;&gt;Code of Conduct&lt;/a&gt; - Our community standards&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;This project is &lt;strong&gt;not accepting pull requests&lt;/strong&gt; at this time. You&#39;re welcome to fork and modify VoiceInk for your own use.&lt;/p&gt; 
&lt;p&gt;You can still contribute by:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;Reporting bugs via &lt;a href=&quot;https://github.com/Beingpax/VoiceInk/issues&quot;&gt;issues&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Suggesting features or enhancements&lt;/li&gt; 
 &lt;li&gt;Improving documentation via issues&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;For more details, see our &lt;a href=&quot;https://raw.githubusercontent.com/Beingpax/VoiceInk/main/CONTRIBUTING.md&quot;&gt;Contributing Guidelines&lt;/a&gt;. For build instructions, see our &lt;a href=&quot;https://raw.githubusercontent.com/Beingpax/VoiceInk/main/BUILDING.md&quot;&gt;Building Guide&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;This project is licensed under the GNU General Public License v3.0 - see the &lt;a href=&quot;https://raw.githubusercontent.com/Beingpax/VoiceInk/main/LICENSE&quot;&gt;LICENSE&lt;/a&gt; file for details.&lt;/p&gt; 
&lt;h2&gt;Support&lt;/h2&gt; 
&lt;p&gt;If you encounter any issues or have questions, please:&lt;/p&gt; 
&lt;ol&gt; 
 &lt;li&gt;Check the existing issues in the GitHub repository&lt;/li&gt; 
 &lt;li&gt;Create a new issue if your problem isn&#39;t already reported&lt;/li&gt; 
 &lt;li&gt;Provide as much detail as possible about your environment and the problem&lt;/li&gt; 
&lt;/ol&gt; 
&lt;h2&gt;Acknowledgments&lt;/h2&gt; 
&lt;h3&gt;Core Technology&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ggerganov/whisper.cpp&quot;&gt;whisper.cpp&lt;/a&gt; - High-performance inference of OpenAI&#39;s Whisper model&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/FluidInference/FluidAudio&quot;&gt;FluidAudio&lt;/a&gt; - Used for Parakeet model implementation&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Beingpax/Transcribe-cpp-swift&quot;&gt;TranscribeCpp for Swift&lt;/a&gt; - SwiftPM distribution of &lt;a href=&quot;https://github.com/handy-computer/transcribe.cpp&quot;&gt;transcribe.cpp&lt;/a&gt;, used for Cohere Transcribe&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Essential Dependencies&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sparkle-project/Sparkle&quot;&gt;Sparkle&lt;/a&gt; - Keeping VoiceInk up to date&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sindresorhus/KeyboardShortcuts&quot;&gt;KeyboardShortcuts&lt;/a&gt; - User-customizable keyboard shortcuts&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sindresorhus/LaunchAtLogin&quot;&gt;LaunchAtLogin&lt;/a&gt; - Launch at login functionality&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ejbills/mediaremote-adapter&quot;&gt;MediaRemoteAdapter&lt;/a&gt; - Media playback control during recording&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/marmelroy/Zip&quot;&gt;Zip&lt;/a&gt; - File compression and decompression utilities&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/tisfeng/SelectedTextKit&quot;&gt;SelectedTextKit&lt;/a&gt; - A modern macOS library for getting selected text&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/apple/swift-atomics&quot;&gt;Swift Atomics&lt;/a&gt; - Low-level atomic operations for thread-safe concurrent programming&lt;/li&gt; 
&lt;/ul&gt; 
&lt;hr /&gt; 
&lt;p&gt;Made with ❤️ by Pax&lt;/p&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/e5acf388536882f2748a0574ba81f795bf3beaaded9a8faca7e03d26566e908c/Beingpax/VoiceInk" medium="image" />
      
    </item>
    
    <item>
      <title>Alamofire/Alamofire</title>
      <link>https://github.com/Alamofire/Alamofire</link>
      <description>&lt;p&gt;Elegant HTTP Networking in Swift&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/Resources/AlamofireLogo.png&quot; alt=&quot;Alamofire: Elegant Networking in Swift&quot; /&gt;&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://img.shields.io/badge/Swift-6.0_6.1_6.2-Orange?style=flat-square&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Swift-6.0_6.1_6.2-orange?style=flat-square&quot; alt=&quot;Swift&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://img.shields.io/badge/Platforms-macOS_iOS_tvOS_watchOS_vision_OS_Linux_Windows_Android-Green?style=flat-square&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Platforms-macOS_iOS_tvOS_watchOS_visionOS_Linux_Windows_Android-yellowgreen?style=flat-square&quot; alt=&quot;Platforms&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://img.shields.io/cocoapods/v/Alamofire.svg&quot;&gt;&lt;img src=&quot;https://img.shields.io/cocoapods/v/Alamofire.svg?style=flat-square&quot; alt=&quot;CocoaPods Compatible&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/Carthage/Carthage&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat-square&quot; alt=&quot;Carthage Compatible&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://img.shields.io/badge/Swift_Package_Manager-compatible-orange?style=flat-square&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Swift_Package_Manager-compatible-orange?style=flat-square&quot; alt=&quot;Swift Package Manager&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://forums.swift.org/c/related-projects/alamofire/37&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Swift_Forums-Alamofire-orange?style=flat-square&quot; alt=&quot;Swift Forums&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;Alamofire is an HTTP networking library written in Swift.&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#features&quot;&gt;Features&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#component-libraries&quot;&gt;Component Libraries&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#requirements&quot;&gt;Requirements&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#migration-guides&quot;&gt;Migration Guides&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#communication&quot;&gt;Communication&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#installation&quot;&gt;Installation&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#contributing&quot;&gt;Contributing&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#using-alamofire&quot;&gt;Usage&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#introduction&quot;&gt;&lt;strong&gt;Introduction -&lt;/strong&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#making-requests&quot;&gt;Making Requests&lt;/a&gt;, &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#response-handling&quot;&gt;Response Handling&lt;/a&gt;, &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#response-validation&quot;&gt;Response Validation&lt;/a&gt;, &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#response-caching&quot;&gt;Response Caching&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;strong&gt;HTTP -&lt;/strong&gt; &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#http-methods&quot;&gt;HTTP Methods&lt;/a&gt;, &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#%23request-parameters-and-parameter-encoders&quot;&gt;Parameters and Parameter Encoder&lt;/a&gt;, &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#http-headers&quot;&gt;HTTP Headers&lt;/a&gt;, &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#authentication&quot;&gt;Authentication&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;strong&gt;Large Data -&lt;/strong&gt; &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#downloading-data-to-a-file&quot;&gt;Downloading Data to a File&lt;/a&gt;, &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#uploading-data-to-a-server&quot;&gt;Uploading Data to a Server&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;strong&gt;Tools -&lt;/strong&gt; &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#statistical-metrics&quot;&gt;Statistical Metrics&lt;/a&gt;, &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Usage.md#curl-command-output&quot;&gt;cURL Command Output&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/AdvancedUsage.md&quot;&gt;Advanced Usage&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;strong&gt;URL Session -&lt;/strong&gt; &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/AdvancedUsage.md#session&quot;&gt;Session Manager&lt;/a&gt;, &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/AdvancedUsage.md#sessiondelegate&quot;&gt;Session Delegate&lt;/a&gt;, &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/AdvancedUsage.md#request&quot;&gt;Request&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;strong&gt;Routing -&lt;/strong&gt; &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/AdvancedUsage.md#routing-requests&quot;&gt;Routing Requests&lt;/a&gt;, &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/AdvancedUsage.md#adapting-and-retrying-requests-with-requestinterceptor&quot;&gt;Adapting and Retrying Requests&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;strong&gt;Model Objects -&lt;/strong&gt; &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/AdvancedUsage.md#customizing-response-handlers&quot;&gt;Custom Response Handlers&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;strong&gt;Advanced Concurrency -&lt;/strong&gt; &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/AdvancedUsage.md#using-alamofire-with-swift-concurrency&quot;&gt;Swift Concurrency&lt;/a&gt; and &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/AdvancedUsage.md#using-alamofire-with-combine&quot;&gt;Combine&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;strong&gt;Connection -&lt;/strong&gt; &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/AdvancedUsage.md#security&quot;&gt;Security&lt;/a&gt;, &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/AdvancedUsage.md#network-reachability&quot;&gt;Network Reachability&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#open-radars&quot;&gt;Open Radars&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#faq&quot;&gt;FAQ&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#credits&quot;&gt;Credits&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#donations&quot;&gt;Donations&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#license&quot;&gt;License&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Features&lt;/h2&gt; 
&lt;ul class=&quot;task-list&quot;&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_0&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_0&quot;&gt; Chainable Request / Response Methods&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_1&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_1&quot;&gt; Swift Concurrency Support Back to iOS 13, macOS 10.15, tvOS 13, and watchOS 6.&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_2&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_2&quot;&gt; Combine Support&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_3&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_3&quot;&gt; URL / JSON Parameter Encoding&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_4&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_4&quot;&gt; Upload File / Data / Stream / MultipartFormData&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_5&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_5&quot;&gt; Download File using Request or Resume Data&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_6&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_6&quot;&gt; Authentication with &lt;code&gt;URLCredential&lt;/code&gt;&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_7&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_7&quot;&gt; HTTP Response Validation&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_8&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_8&quot;&gt; Upload and Download Progress Closures with Progress&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_9&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_9&quot;&gt; cURL Command Output&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_10&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_10&quot;&gt; Dynamically Adapt and Retry Requests&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_11&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_11&quot;&gt; TLS Certificate and Public Key Pinning&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_12&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_12&quot;&gt; Network Reachability&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_13&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_13&quot;&gt; Comprehensive Unit and Integration Test Coverage&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_14&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_14&quot;&gt; &lt;a href=&quot;https://alamofire.github.io/Alamofire&quot;&gt;Complete Documentation&lt;/a&gt;&lt;/label&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Write Requests Fast!&lt;/h2&gt; 
&lt;p&gt;Alamofire&#39;s compact syntax and extensive feature set allow requests with powerful features like automatic retry to be written in just a few lines of code.&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;// Automatic String to URL conversion, Swift concurrency support, and automatic retry.
let response = await AF.request(&quot;https://httpbin.org/get&quot;, interceptor: .retryPolicy)
                       // Automatic HTTP Basic Auth.
                       .authenticate(username: &quot;user&quot;, password: &quot;pass&quot;)
                       // Caching customization.
                       .cacheResponse(using: .cache)
                       // Redirect customization.
                       .redirect(using: .follow)
                       // Validate response code and Content-Type.
                       .validate()
                       // Produce a cURL command for the request.
                       .cURLDescription { description in
                         print(description)
                       }
                       // Automatic Decodable support with background parsing.
                       .serializingDecodable(DecodableType.self)
                       // Await the full response with metrics and a parsed body.
                       .response
// Detailed response description for easy debugging.
debugPrint(response)
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Component Libraries&lt;/h2&gt; 
&lt;p&gt;In order to keep Alamofire focused specifically on core networking implementations, additional component libraries have been created by the &lt;a href=&quot;https://github.com/Alamofire/Foundation&quot;&gt;Alamofire Software Foundation&lt;/a&gt; to bring additional functionality to the Alamofire ecosystem.&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Alamofire/AlamofireImage&quot;&gt;AlamofireImage&lt;/a&gt; - An image library including image response serializers, &lt;code&gt;UIImage&lt;/code&gt; and &lt;code&gt;UIImageView&lt;/code&gt; extensions, custom image filters, an auto-purging in-memory cache, and a priority-based image downloading system.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Alamofire/AlamofireNetworkActivityIndicator&quot;&gt;AlamofireNetworkActivityIndicator&lt;/a&gt; - Controls the visibility of the network activity indicator on iOS using Alamofire. It contains configurable delay timers to help mitigate flicker and can support &lt;code&gt;URLSession&lt;/code&gt; instances not managed by Alamofire.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Requirements&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Platform&lt;/th&gt; 
   &lt;th&gt;Minimum Swift Version&lt;/th&gt; 
   &lt;th&gt;Installation&lt;/th&gt; 
   &lt;th&gt;Status&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;iOS 10.0+ / macOS 10.12+ / tvOS 10.0+ / watchOS 3.0+&lt;/td&gt; 
   &lt;td&gt;6.0 / Xcode 16.0&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#cocoapods&quot;&gt;CocoaPods&lt;/a&gt;, &lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#carthage&quot;&gt;Carthage&lt;/a&gt;, &lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#swift-package-manager&quot;&gt;Swift Package Manager&lt;/a&gt;, &lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#manually&quot;&gt;Manual&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Fully Tested&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Linux&lt;/td&gt; 
   &lt;td&gt;Latest Only&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#swift-package-manager&quot;&gt;Swift Package Manager&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Building But Unsupported&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Windows&lt;/td&gt; 
   &lt;td&gt;Latest Only&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#swift-package-manager&quot;&gt;Swift Package Manager&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Building But Unsupported&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Android&lt;/td&gt; 
   &lt;td&gt;Latest Only&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/#swift-package-manager&quot;&gt;Swift Package Manager&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Building But Unsupported&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h4&gt;Known Issues on Linux and Windows&lt;/h4&gt; 
&lt;p&gt;Alamofire builds on Linux, Windows, and Android but there are missing features and many issues in the underlying &lt;code&gt;swift-corelibs-foundation&lt;/code&gt; that prevent full functionality and may cause crashes. These include:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;code&gt;ServerTrustManager&lt;/code&gt; and associated certificate functionality is unavailable, so there is no certificate pinning and no client certificate support.&lt;/li&gt; 
 &lt;li&gt;Various methods of HTTP authentication may crash, including HTTP Basic and HTTP Digest. Crashes may occur if responses contain server challenges.&lt;/li&gt; 
 &lt;li&gt;Cache control through &lt;code&gt;CachedResponseHandler&lt;/code&gt; and associated APIs is unavailable, as the underlying delegate methods aren&#39;t called.&lt;/li&gt; 
 &lt;li&gt;&lt;code&gt;URLSessionTaskMetrics&lt;/code&gt; are never gathered.&lt;/li&gt; 
 &lt;li&gt;&lt;code&gt;WebSocketRequest&lt;/code&gt; is not available.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;Due to these issues, Alamofire is unsupported on Linux, Windows, and Android. Please report any crashes to the &lt;a href=&quot;https://bugs.swift.org&quot;&gt;Swift bug reporter&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Migration Guides&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Alamofire%205.0%20Migration%20Guide.md&quot;&gt;Alamofire 5.0 Migration Guide&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Alamofire%204.0%20Migration%20Guide.md&quot;&gt;Alamofire 4.0 Migration Guide&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Alamofire%203.0%20Migration%20Guide.md&quot;&gt;Alamofire 3.0 Migration Guide&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/Documentation/Alamofire%202.0%20Migration%20Guide.md&quot;&gt;Alamofire 2.0 Migration Guide&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Communication&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;If you &lt;strong&gt;need help with making network requests&lt;/strong&gt; using Alamofire, use &lt;a href=&quot;https://stackoverflow.com/questions/tagged/alamofire&quot;&gt;Stack Overflow&lt;/a&gt; and tag &lt;code&gt;alamofire&lt;/code&gt;.&lt;/li&gt; 
 &lt;li&gt;If you need to &lt;strong&gt;find or understand an API&lt;/strong&gt;, check &lt;a href=&quot;http://alamofire.github.io/Alamofire/&quot;&gt;our documentation&lt;/a&gt; or &lt;a href=&quot;https://developer.apple.com/documentation/foundation/url_loading_system&quot;&gt;Apple&#39;s documentation for &lt;code&gt;URLSession&lt;/code&gt;&lt;/a&gt;, on top of which Alamofire is built.&lt;/li&gt; 
 &lt;li&gt;If you need &lt;strong&gt;help with an Alamofire feature&lt;/strong&gt;, use &lt;a href=&quot;https://forums.swift.org/c/related-projects/alamofire&quot;&gt;our forum on swift.org&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;If you&#39;d like to &lt;strong&gt;discuss Alamofire best practices&lt;/strong&gt;, use &lt;a href=&quot;https://forums.swift.org/c/related-projects/alamofire&quot;&gt;our forum on swift.org&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;If you&#39;d like to &lt;strong&gt;discuss a feature request&lt;/strong&gt;, use &lt;a href=&quot;https://forums.swift.org/c/related-projects/alamofire&quot;&gt;our forum on swift.org&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;If you &lt;strong&gt;found a bug&lt;/strong&gt;, open an issue here on GitHub and follow the guide. The more detail the better!&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Installation&lt;/h2&gt; 
&lt;h3&gt;Swift Package Manager&lt;/h3&gt; 
&lt;p&gt;The &lt;a href=&quot;https://swift.org/package-manager/&quot;&gt;Swift Package Manager&lt;/a&gt; is a tool for automating the distribution of Swift code and is integrated into the &lt;code&gt;swift&lt;/code&gt; compiler.&lt;/p&gt; 
&lt;p&gt;Once you have your Swift package set up, adding Alamofire as a dependency is as easy as adding it to the &lt;code&gt;dependencies&lt;/code&gt; value of your &lt;code&gt;Package.swift&lt;/code&gt; or the Package list in Xcode.&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;dependencies: [
    .package(url: &quot;https://github.com/Alamofire/Alamofire.git&quot;, .upToNextMajor(from: &quot;5.11.0&quot;))
]
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Normally you&#39;ll want to depend on the &lt;code&gt;Alamofire&lt;/code&gt; target:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;.product(name: &quot;Alamofire&quot;, package: &quot;Alamofire&quot;)
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;But if you want to force Alamofire to be dynamically linked (do not do this unless you&#39;re sure you need it), you can depend on the &lt;code&gt;AlamofireDynamic&lt;/code&gt; target:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;.product(name: &quot;AlamofireDynamic&quot;, package: &quot;Alamofire&quot;)
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;CocoaPods&lt;/h3&gt; 
&lt;p&gt;&lt;a href=&quot;https://cocoapods.org&quot;&gt;CocoaPods&lt;/a&gt; is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate Alamofire into your Xcode project using CocoaPods, specify it in your &lt;code&gt;Podfile&lt;/code&gt;:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-ruby&quot;&gt;pod &#39;Alamofire&#39;
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;Carthage&lt;/h3&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/Carthage/Carthage&quot;&gt;Carthage&lt;/a&gt; is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate Alamofire into your Xcode project using Carthage, specify it in your &lt;code&gt;Cartfile&lt;/code&gt;:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-ogdl&quot;&gt;github &quot;Alamofire/Alamofire&quot;
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;Manually&lt;/h3&gt; 
&lt;p&gt;If you prefer not to use any of the aforementioned dependency managers, you can integrate Alamofire into your project manually.&lt;/p&gt; 
&lt;h4&gt;Embedded Framework&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt; &lt;p&gt;Open up Terminal, &lt;code&gt;cd&lt;/code&gt; into your top-level project directory, and run the following command &quot;if&quot; your project is not initialized as a git repository:&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;$ git init
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Add Alamofire as a git &lt;a href=&quot;https://git-scm.com/docs/git-submodule&quot;&gt;submodule&lt;/a&gt; by running the following command:&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;$ git submodule add https://github.com/Alamofire/Alamofire.git
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Open the new &lt;code&gt;Alamofire&lt;/code&gt; folder, and drag the &lt;code&gt;Alamofire.xcodeproj&lt;/code&gt; into the Project Navigator of your application&#39;s Xcode project.&lt;/p&gt; 
  &lt;blockquote&gt; 
   &lt;p&gt;It should appear nested underneath your application&#39;s blue project icon. Whether it is above or below all the other Xcode groups does not matter.&lt;/p&gt; 
  &lt;/blockquote&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Select the &lt;code&gt;Alamofire.xcodeproj&lt;/code&gt; in the Project Navigator and verify the deployment target matches that of your application target.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the &quot;Targets&quot; heading in the sidebar.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;In the tab bar at the top of that window, open the &quot;General&quot; panel.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Click on the &lt;code&gt;+&lt;/code&gt; button under the &quot;Embedded Binaries&quot; section.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;You will see two different &lt;code&gt;Alamofire.xcodeproj&lt;/code&gt; folders each with two different versions of the &lt;code&gt;Alamofire.framework&lt;/code&gt; nested inside a &lt;code&gt;Products&lt;/code&gt; folder.&lt;/p&gt; 
  &lt;blockquote&gt; 
   &lt;p&gt;It does not matter which &lt;code&gt;Products&lt;/code&gt; folder you choose from, but it does matter whether you choose the top or bottom &lt;code&gt;Alamofire.framework&lt;/code&gt;.&lt;/p&gt; 
  &lt;/blockquote&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Select the top &lt;code&gt;Alamofire.framework&lt;/code&gt; for iOS and the bottom one for macOS.&lt;/p&gt; 
  &lt;blockquote&gt; 
   &lt;p&gt;You can verify which one you selected by inspecting the build log for your project. The build target for &lt;code&gt;Alamofire&lt;/code&gt; will be listed as &lt;code&gt;Alamofire iOS&lt;/code&gt;, &lt;code&gt;Alamofire macOS&lt;/code&gt;, &lt;code&gt;Alamofire tvOS&lt;/code&gt;, or &lt;code&gt;Alamofire watchOS&lt;/code&gt;.&lt;/p&gt; 
  &lt;/blockquote&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;And that&#39;s it!&lt;/p&gt; 
  &lt;blockquote&gt; 
   &lt;p&gt;The &lt;code&gt;Alamofire.framework&lt;/code&gt; is automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device.&lt;/p&gt; 
  &lt;/blockquote&gt; &lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;Before contributing to Alamofire, please read the instructions detailed in our &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/CONTRIBUTING.md&quot;&gt;contribution guide&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Open Radars&lt;/h2&gt; 
&lt;p&gt;The following radars have some effect on the current implementation of Alamofire.&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;http://www.openradar.me/radar?id=5517037090635776&quot;&gt;&lt;code&gt;rdar://21349340&lt;/code&gt;&lt;/a&gt; - Compiler throwing warning due to toll-free bridging issue in the test case&lt;/li&gt; 
 &lt;li&gt;&lt;code&gt;rdar://26870455&lt;/code&gt; - Background URL Session Configurations do not work in the simulator&lt;/li&gt; 
 &lt;li&gt;&lt;code&gt;rdar://26849668&lt;/code&gt; - Some URLProtocol APIs do not properly handle &lt;code&gt;URLRequest&lt;/code&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Resolved Radars&lt;/h2&gt; 
&lt;p&gt;The following radars have been resolved over time after being filed against the Alamofire project.&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;http://www.openradar.me/radar?id=5010235949318144&quot;&gt;&lt;code&gt;rdar://26761490&lt;/code&gt;&lt;/a&gt; - Swift string interpolation causing memory leak with common usage. 
  &lt;ul&gt; 
   &lt;li&gt;(Resolved): 9/1/17 in Xcode 9 beta 6.&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;http://openradar.appspot.com/radar?id=4942308441063424&quot;&gt;&lt;code&gt;rdar://36082113&lt;/code&gt;&lt;/a&gt; - &lt;code&gt;URLSessionTaskMetrics&lt;/code&gt; failing to link on watchOS 3.0+ 
  &lt;ul&gt; 
   &lt;li&gt;(Resolved): Just add &lt;code&gt;CFNetwork&lt;/code&gt; to your linked frameworks.&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;code&gt;FB7624529&lt;/code&gt; - &lt;code&gt;urlSession(_:task:didFinishCollecting:)&lt;/code&gt; never called on watchOS 
  &lt;ul&gt; 
   &lt;li&gt;(Resolved): Metrics now collected on watchOS 7+.&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;FAQ&lt;/h2&gt; 
&lt;h3&gt;What&#39;s the origin of the name Alamofire?&lt;/h3&gt; 
&lt;p&gt;Alamofire is named after the &lt;a href=&quot;https://aggie-horticulture.tamu.edu/wildseed/alamofire.html&quot;&gt;Alamo Fire flower&lt;/a&gt;, a hybrid variant of the Bluebonnet, the official state flower of Texas.&lt;/p&gt; 
&lt;h2&gt;Credits&lt;/h2&gt; 
&lt;p&gt;Alamofire is owned and maintained by the &lt;a href=&quot;http://alamofire.org&quot;&gt;Alamofire Software Foundation&lt;/a&gt;. You can follow them on Twitter at &lt;a href=&quot;https://twitter.com/AlamofireSF&quot;&gt;@AlamofireSF&lt;/a&gt; for project updates and releases.&lt;/p&gt; 
&lt;h3&gt;Security Disclosure&lt;/h3&gt; 
&lt;p&gt;If you believe you have identified a security vulnerability with Alamofire, you should report it as soon as possible via email to &lt;a href=&quot;mailto:security@alamofire.org&quot;&gt;security@alamofire.org&lt;/a&gt;. Please do not post it to a public issue tracker.&lt;/p&gt; 
&lt;h2&gt;Sponsorship&lt;/h2&gt; 
&lt;p&gt;The &lt;a href=&quot;https://github.com/Alamofire/Foundation#members&quot;&gt;ASF&lt;/a&gt; is looking to raise money to officially stay registered as a federal non-profit organization. Registering will allow Foundation members to gain some legal protections and also allow us to put donations to use, tax-free. Sponsoring the ASF will enable us to:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;Pay our yearly legal fees to keep the non-profit in good status&lt;/li&gt; 
 &lt;li&gt;Pay for our mail servers to help us stay on top of all questions and security issues&lt;/li&gt; 
 &lt;li&gt;Potentially fund test servers to make it easier for us to test the edge cases&lt;/li&gt; 
 &lt;li&gt;Potentially fund developers to work on one of our projects full-time&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;The community adoption of the ASF libraries has been amazing. We are greatly humbled by your enthusiasm around the projects and want to continue to do everything we can to move the needle forward. With your continued support, the ASF will be able to improve its reach and also provide better legal safety for the core members. If you use any of our libraries for work, see if your employers would be interested in donating. Any amount you can donate, whether once or monthly, to help us reach our goal would be greatly appreciated.&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/sponsors/Alamofire&quot;&gt;Sponsor Alamofire&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;Supporters&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://macstadium.com&quot;&gt;MacStadium&lt;/a&gt; provides Alamofire with a free, hosted Mac mini.&lt;/p&gt; 
&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/Alamofire/Alamofire/master/Resources/MacStadiumLogo.png&quot; alt=&quot;Powered by MacStadium&quot; /&gt;&lt;/p&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;Alamofire is released under the MIT license. &lt;a href=&quot;https://github.com/Alamofire/Alamofire/raw/master/LICENSE&quot;&gt;See LICENSE&lt;/a&gt; for details.&lt;/p&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/1fae2fbe25a52f75b658683adfa4f1a366cd1c7df034daf09830d13b537e64df/Alamofire/Alamofire" medium="image" />
      
    </item>
    
    <item>
      <title>darrylmorley/whatcable</title>
      <link>https://github.com/darrylmorley/whatcable</link>
      <description>&lt;p&gt;macOS menu bar app that tells you, in plain English, what each USB-C cable plugged into your Mac can actually do&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;WhatCable&lt;/h1&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;&lt;strong&gt;What can this USB-C cable actually do?&lt;/strong&gt;&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;p&gt;&lt;strong&gt;Website: &lt;a href=&quot;https://whatcable.uk&quot;&gt;whatcable.uk&lt;/a&gt;&lt;/strong&gt; (overview, screenshots, and CLI docs)&lt;/p&gt; 
&lt;p&gt;A small macOS menu bar app that tells you, in plain English, what each USB-C cable plugged into your Mac can actually do, and &lt;strong&gt;why your Mac might be charging slowly&lt;/strong&gt;.&lt;/p&gt; 
&lt;p&gt;USB-C hides a lot under one connector. Anything from a USB 2.0 charge-only cable to a 240W / 40 Gbps Thunderbolt 4 cable, all looking identical in your drawer. macOS already exposes the relevant info via IOKit; WhatCable surfaces it as a friendly menu bar popover.&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://www.producthunt.com/products/whatcable?embed=true&amp;amp;utm_source=badge-top-post-badge&amp;amp;utm_medium=badge&amp;amp;utm_campaign=badge-whatcable&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;&lt;img alt=&quot;WhatCable - Know what your USB-C cable can really do | Product Hunt&quot; width=&quot;250&quot; height=&quot;54&quot; src=&quot;https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=1153432&amp;amp;theme=light&amp;amp;period=daily&amp;amp;t=1779720313376&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/darrylmorley/whatcable/releases/latest&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/v/release/darrylmorley/whatcable&quot; alt=&quot;Latest release&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/darrylmorley/whatcable&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/platform-macOS%2014%2B-blue&quot; alt=&quot;Platform&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://raw.githubusercontent.com/darrylmorley/whatcable/main/LICENSE&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/license-MIT-green&quot; alt=&quot;License: MIT&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://whatcable.uk/pro&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/WhatCable%20Pro-%C2%A39.99-orange&quot; alt=&quot;WhatCable Pro&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/darrylmorley/whatcable/main/docs/screenshot.webp&quot; alt=&quot;WhatCable popover&quot; /&gt;&lt;/p&gt; 
&lt;h2&gt;What it shows&lt;/h2&gt; 
&lt;p&gt;Per port, in plain English:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;At-a-glance headline:&lt;/strong&gt; Thunderbolt / USB4, USB device, Display connected, Charging only, Slow USB / charge-only cable, Nothing connected&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Charging diagnostic:&lt;/strong&gt; when something&#39;s plugged in, a banner identifies the bottleneck: 
  &lt;ul&gt; 
   &lt;li&gt;&lt;em&gt;&quot;Cable is limiting charging speed&quot;&lt;/em&gt; (cable rated below the charger)&lt;/li&gt; 
   &lt;li&gt;&lt;em&gt;&quot;Charging at 30W (charger can do up to 96W)&quot;&lt;/em&gt; (Mac is asking for less, e.g. battery near full)&lt;/li&gt; 
   &lt;li&gt;&lt;em&gt;&quot;Charging well at 96W&quot;&lt;/em&gt; (everything matches)&lt;/li&gt; 
   &lt;li&gt;&lt;em&gt;&quot;Battery full, not charging&quot;&lt;/em&gt; (plugged in, battery full, so the Mac isn&#39;t drawing power)&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Mid-session fault warnings:&lt;/strong&gt; if a cable develops trouble while it&#39;s plugged in (a power overcurrent, or the connection dropping and coming back), a banner appears on the port. It reads the port&#39;s own fault counters, so it catches faults that only show up once a cable is under load.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Data-speed diagnostic:&lt;/strong&gt; a plain-English verdict on what&#39;s limiting the link, the Mac port, the cable, or the device. For example &lt;em&gt;&quot;Cable is limiting data speed&quot;&lt;/em&gt;, &lt;em&gt;&quot;Device runs at 10 Gbps, this is the fastest it supports, not a cable problem&quot;&lt;/em&gt;, or &lt;em&gt;&quot;Running slower than expected&quot;&lt;/em&gt; when the link came up degraded. Shown inline, in the CLI, and in JSON.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Cable e-marker info:&lt;/strong&gt; the cable&#39;s actual speed (USB 2.0, 5 / 10 / 20 / 40 / 80 Gbps), current rating (3 A / 5 A up to 60W / 100W / 240W), and the chip&#39;s vendor&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;USB-IF certification:&lt;/strong&gt; cables that carry a certificate ID (XID) get a &quot;USB-IF certified&quot; line naming the manufacturer. The ID is read off the cable itself and matched against a list of USB-IF certifications bundled with the app, which is where the manufacturer name comes from. Nothing is looked up over the network. A cable advertising an ID that USB-IF doesn&#39;t publish gets a neutral &quot;certified but unlisted&quot; line instead. Certification is voluntary and Apple&#39;s own cables land there, so it&#39;s a fact about the ID, never a verdict on the cable. The raw XID is in the JSON output.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Cable trust signals:&lt;/strong&gt; an orange card appears when the e-marker reports values that look unusual against the USB-PD spec, like a zero vendor ID, a reserved bit pattern in the speed / current / cable-latency fields, or a VID that isn&#39;t in USB-IF&#39;s published list. Wording is hedged on purpose: a flag means &quot;this looks unusual,&quot; not &quot;this cable is fake.&quot;&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Charger PDO list:&lt;/strong&gt; every voltage profile the charger advertises (5V / 9V / 12V / 15V / 20V…) with the currently negotiated profile highlighted in real time&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Connected device identity:&lt;/strong&gt; vendor name and product type, decoded from the PD Discover Identity response&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Connected devices:&lt;/strong&gt; each device is shown inside the thing it&#39;s actually plugged into, so a dock chained off a display reads as a chain instead of a flat pile. Hubs are hidden by default, since they&#39;re plumbing and make up about half of a typical list. Any device left sitting behind a hidden hub says &quot;via N hubs&quot; so nothing disappears without explanation, and a &lt;strong&gt;Show N hubs&lt;/strong&gt; control brings them back for that port. Devices are grouped by USB controller when a port has more than one, and named by their maker where the name alone wouldn&#39;t tell two apart. The CLI still prints everything.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Thunderbolt fabric:&lt;/strong&gt; when a Thunderbolt / USB4 link is active, shows per-lane speed, generation (TB3, TB4, TB5), and the full switch topology for multi-hop connections through docks, plus the active tunnels riding that link so you can see which protocol is going where&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Cable identification:&lt;/strong&gt; if the cable&#39;s e-marker fingerprint matches a known cable in the bundled database, the brand and model are shown alongside the raw specs&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Active transports:&lt;/strong&gt; USB 2 / USB 3 / Thunderbolt / DisplayPort&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Desktop widget:&lt;/strong&gt; small, medium, and large WidgetKit widgets showing live cable status on your desktop&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;⌥-click&lt;/strong&gt; the menu bar icon (or flip the toggle in Settings) to reveal the underlying IOKit properties for engineers&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;Click the &lt;strong&gt;gear icon&lt;/strong&gt; in the popover header to open Settings, where you can:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;Hide empty ports&lt;/li&gt; 
 &lt;li&gt;Launch at login&lt;/li&gt; 
 &lt;li&gt;Run as a regular Dock app instead of a menu bar icon&lt;/li&gt; 
 &lt;li&gt;Pick the menu bar icon, and show the live charging wattage next to it as either a number or a small fill bar&lt;/li&gt; 
 &lt;li&gt;Adjust the font size and the window opacity&lt;/li&gt; 
 &lt;li&gt;Show technical details (the same raw IOKit data that ⌥-click reveals)&lt;/li&gt; 
 &lt;li&gt;Skip deep USB probing, a compatibility switch for the few KVM switches and hubs that misbehave when WhatCable reads capability info from the devices behind them&lt;/li&gt; 
 &lt;li&gt;Switch language (English, Armenian, Brazilian Portuguese, Dutch, French, German, Hindi, Italian, Japanese, Korean, Latvian, Norwegian, Polish, Russian, Simplified Chinese, Spanish, Traditional Chinese, Turkish, Ukrainian, or follow your system default)&lt;/li&gt; 
 &lt;li&gt;Get notifications when cables are connected or disconnected, and when an app update is available&lt;/li&gt; 
 &lt;li&gt;Contribute anonymised port and power diagnostics to improve hardware coverage (opt-in, manual)&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;Right-click the menu bar icon for &lt;strong&gt;Refresh&lt;/strong&gt;, a &lt;strong&gt;Keep window open&lt;/strong&gt; toggle (handy for screenshots and demos), and &lt;strong&gt;Settings…&lt;/strong&gt;. The Pro screens (&lt;strong&gt;Power Monitor&lt;/strong&gt;, &lt;strong&gt;Negotiation Diagnostics&lt;/strong&gt;, &lt;strong&gt;Display Diagnostics&lt;/strong&gt;, &lt;strong&gt;Saved Cables&lt;/strong&gt;) and &lt;strong&gt;Licence…&lt;/strong&gt; live here too. Below those: &lt;strong&gt;Check for Updates…&lt;/strong&gt;, &lt;strong&gt;Contribute Diagnostic Data…&lt;/strong&gt;, &lt;strong&gt;About&lt;/strong&gt;, &lt;strong&gt;WhatCable on GitHub&lt;/strong&gt;, and &lt;strong&gt;Quit&lt;/strong&gt;.&lt;/p&gt; 
&lt;h2&gt;WhatCable Pro&lt;/h2&gt; 
&lt;p&gt;WhatCable is free and open source. If you find it useful, you can support the project by picking up &lt;a href=&quot;https://whatcable.uk/pro&quot;&gt;WhatCable Pro&lt;/a&gt;. Pro is for finding the weak link in a connection and keeping the evidence: live measurements, per-connection diagnostics, and a history of how each cable performs. It unlocks:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Cable history:&lt;/strong&gt; add a cable, give it a name, and WhatCable keeps a record of how it actually performs over time. It recognises the cable on later connections and builds a timeline: when you last used it, what it negotiated, whether it&#39;s been misbehaving. A saved-cables list, an all-time summary per cable, and a verdict right on the port card.&lt;/li&gt; 
 &lt;li&gt;Live power metering and PD contract inspection&lt;/li&gt; 
 &lt;li&gt;Power Monitor with a live system power-input graph&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Negotiation Diagnostics:&lt;/strong&gt; the full per-connection breakdown, what the Mac port, cable, and device each support vs what was negotiated, side by side with the weak link highlighted, plus an e-marker vs Thunderbolt-controller cross-check&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Display Diagnostics:&lt;/strong&gt; reads your monitor&#39;s live display mode straight from macOS and compares it against what the DisplayPort link is carrying, so a screen stuck below its top resolution or refresh has an explanation. Shows the true resolution even on 5K and 6K displays, confirms full quality when a screen reaches its top mode via compression (DSC), and names any HDMI or DisplayPort adapter in the chain&lt;/li&gt; 
 &lt;li&gt;Port health counters and cable resistance estimation&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Terminal dashboard:&lt;/strong&gt; a live full-screen view of every port, power, and Thunderbolt for the SSH and tmux crowd. Three screens (Overview, Negotiation, Power), Tab to switch, with a plain cable-health verdict per port. Run &lt;code&gt;whatcable --dashboard&lt;/code&gt;&lt;/li&gt; 
 &lt;li&gt;Pin diagrams and liquid detection status&lt;/li&gt; 
 &lt;li&gt;Pro screens open inside the app, with an optional detach into their own window&lt;/li&gt; 
 &lt;li&gt;Works even on Macs that don&#39;t expose live per-port metering&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;One-time purchase, works on up to 2 Macs. See &lt;a href=&quot;https://whatcable.uk/pro&quot;&gt;whatcable.uk/pro&lt;/a&gt; for details.&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://whatcable.uk/pro&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Buy%20WhatCable%20Pro-%C2%A39.99-orange?style=for-the-badge&quot; alt=&quot;Buy WhatCable Pro&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;Install&lt;/h2&gt; 
&lt;p&gt;Visit &lt;a href=&quot;https://whatcable.uk&quot;&gt;whatcable.uk&lt;/a&gt; for an overview and screenshots, or install directly below.&lt;/p&gt; 
&lt;p&gt;Download the latest &lt;code&gt;WhatCable.zip&lt;/code&gt; from the &lt;a href=&quot;https://github.com/darrylmorley/whatcable/releases/latest&quot;&gt;Releases page&lt;/a&gt;, unzip, and drag &lt;code&gt;WhatCable.app&lt;/code&gt; to &lt;code&gt;/Applications&lt;/code&gt;.&lt;/p&gt; 
&lt;p&gt;The app is signed with a Developer ID and notarised by Apple, so there are no Gatekeeper warnings.&lt;/p&gt; 
&lt;p&gt;It&#39;s not on the Mac App Store on purpose. Most of what WhatCable reads would in fact survive the App Sandbox: we tested it, and the IOKit registry reads come back identical either way. What the sandbox does block is the SMC access behind Pro&#39;s live power metering, and the bundled &lt;code&gt;whatcable&lt;/code&gt; CLI doesn&#39;t fit the store&#39;s install model. So it ships signed and notarised outside the store instead.&lt;/p&gt; 
&lt;p&gt;Requires macOS 14 (Sonoma) or later, Apple Silicon only. This is measured, not assumed: every Intel Mac in the community diagnostic corpus reports its USB-C port-controller services as empty, so the USB-PD state and cable e-marker data WhatCable depends on are not published on those machines through any public IOKit accessor. Thunderbolt fabric data is still present on Intel; it is the port-controller layer that is missing.&lt;/p&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; The manual install gives you the menu bar app only. The &lt;code&gt;whatcable&lt;/code&gt; CLI is bundled inside the &lt;code&gt;.app&lt;/code&gt; and is not on your PATH by default. If you want to use it from the shell, see the &lt;a href=&quot;https://raw.githubusercontent.com/darrylmorley/whatcable/main/#command-line-interface&quot;&gt;Command-line interface&lt;/a&gt; section below for the one-line symlink. Or install via Homebrew, which sets up the CLI automatically.&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;h3&gt;Homebrew&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;brew install --cask darrylmorley/whatcable/whatcable
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;This installs the menu bar app and symlinks the &lt;code&gt;whatcable&lt;/code&gt; CLI into your PATH.&lt;/p&gt; 
&lt;h3&gt;Homebrew, CLI only (no menu bar app)&lt;/h3&gt; 
&lt;p&gt;If you don&#39;t want the menu bar app, install just the command-line tool:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;brew install darrylmorley/whatcable/whatcable-cli
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Same signed and notarised binary, packaged on its own. Useful in terminal-only or scripting environments. Pick one of the two Homebrew installs (both ship the same &lt;code&gt;whatcable&lt;/code&gt; binary).&lt;/p&gt; 
&lt;p&gt;Homebrew 6 may warn about untrusted third-party taps on first install. If an existing install starts complaining about an untrusted tap, run &lt;code&gt;brew trust darrylmorley/whatcable&lt;/code&gt; or see &lt;a href=&quot;https://docs.brew.sh/Tap-Trust&quot;&gt;https://docs.brew.sh/Tap-Trust&lt;/a&gt; for details.&lt;/p&gt; 
&lt;h2&gt;Command-line interface&lt;/h2&gt; 
&lt;p&gt;A &lt;code&gt;whatcable&lt;/code&gt; binary ships alongside the menu bar app, driven by the same diagnostic engine:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-text&quot;&gt;$ whatcable

USB-C Port 1
  ✓ Charging well at 96W
  Cable: 5A, 100W, USB4 40 Gbps
  Charger: 5V / 9V / 15V / 20V PDOs

USB-C Port 2
  ! Cable is limiting charging speed
  Cable: 3A, 60W, USB 2.0
  Device: External SSD, USB 10 Gbps
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Flags:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;whatcable                # human-readable summary of every port
whatcable --json         # structured JSON, pipe into jq
whatcable --watch        # stream updates as cables come and go (Ctrl+C to exit)
whatcable --raw          # include underlying IOKit properties
whatcable --report       # open a pre-filled GitHub issue for the connected cable
whatcable --test-kit     # run diagnostic probes and submit anonymised data
whatcable --no-usb-probe # skip deep USB probing (for KVM switches and hubs that misbehave)
whatcable --desktop      # launch the GUI app in Dock mode
whatcable --popover      # launch the GUI app in menu bar mode
whatcable --version
whatcable --help
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Pro from the command line:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;whatcable --monitor                        # Pro: live power telemetry (Ctrl+C to exit)
whatcable --monitor-json                   # Pro: live power telemetry as newline-delimited JSON
whatcable --dashboard                      # Pro: full-screen TUI dashboard (Tab cycles screens, q quits)
whatcable --activate XXXX-XXXX-XXXX-XXXX   # validate and store a Pro licence
whatcable --licence                        # show current licence status
whatcable --deactivate                     # remove the stored licence
whatcable --pro                            # show Pro features, open purchase page
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;The CLI prints a one-line Pro hint at the end of plain text output for unlicensed users. Run &lt;code&gt;whatcable --silence-pro-hints&lt;/code&gt; to hide it (or &lt;code&gt;--show-pro-hints&lt;/code&gt; to bring it back). Suppressed automatically when output is piped, redirected, or used with &lt;code&gt;--json&lt;/code&gt;.&lt;/p&gt; 
&lt;p&gt;If you installed the &lt;code&gt;.app&lt;/code&gt; manually rather than via Homebrew, the CLI lives at &lt;code&gt;WhatCable.app/Contents/Helpers/whatcable&lt;/code&gt;. Symlink it into your PATH if you want it on the shell:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;ln -s /Applications/WhatCable.app/Contents/Helpers/whatcable /usr/local/bin/whatcable
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;The Homebrew install does this for you automatically.&lt;/p&gt; 
&lt;h2&gt;How it works&lt;/h2&gt; 
&lt;p&gt;WhatCable reads four families of IOKit services. No entitlements, no private APIs, no helper daemons:&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Service&lt;/th&gt; 
   &lt;th&gt;What it gives us&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;AppleHPMInterfaceType10/11/12&lt;/code&gt; (M3-era), &lt;code&gt;AppleHPMInterfaceType18&lt;/code&gt; (MacBook Neo A-series), &lt;code&gt;AppleTCControllerType10/11&lt;/code&gt; (M1 / M2)&lt;/td&gt; 
   &lt;td&gt;Per-port state: connection, transports, plug orientation, e-marker presence. &lt;code&gt;Type11&lt;/code&gt; is what M2 MacBook Air uses for its MagSafe 3 port.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;IOPortFeaturePowerSource&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;Full PDO list from the connected source, with the live &quot;winning&quot; PDO&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;IOPortTransportComponentCCUSBPDSOP&lt;/code&gt;, &lt;code&gt;...SOPp&lt;/code&gt;, &lt;code&gt;...SOPpp&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;PD Discover Identity VDOs from the port partner (SOP), the cable&#39;s near-end e-marker (SOP&#39;), and the far-end e-marker (SOP&#39;&#39;) if present&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;XHCI controller subtree&lt;/td&gt; 
   &lt;td&gt;Each connected USB device is paired to its physical port via the XHCI port node&#39;s &lt;code&gt;UsbIOPort&lt;/code&gt; registry path, falling back to a bus-index derived from the controller&#39;s &lt;code&gt;locationID&lt;/code&gt; upper byte and the port&#39;s &lt;code&gt;hpm&lt;/code&gt; SPMI ancestor on machines that don&#39;t expose &lt;code&gt;UsbIOPort&lt;/code&gt;.&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;p&gt;Cable speed and power decoding follow the USB Power Delivery spec (aligned to USB-PD R3.2 V1.2, March 2026). Vendor names come from a bundled SQLite database (&lt;code&gt;whatcable.db&lt;/code&gt;) that merges USB-IF&#39;s published vendor list, the community &lt;code&gt;usb.ids&lt;/code&gt; list, and a curated set of cable fingerprints reported by users.&lt;/p&gt; 
&lt;h2&gt;Build from source&lt;/h2&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;swift build                  # compile everything
swift run WhatCable          # run the menu bar app (dev mode, no widget or bundle structure)
swift run whatcable-cli      # run the CLI
swift test                   # run the test suite
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Requires Swift 5.9+ (Xcode 15+). Note: &lt;code&gt;swift run WhatCable&lt;/code&gt; launches a working dev build but without the widget extension or proper &lt;code&gt;.app&lt;/code&gt; bundle. For a distributable build, use the build scripts below.&lt;/p&gt; 
&lt;h2&gt;Build a distributable .app&lt;/h2&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;./scripts/smoke-test.sh
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Builds, signs, notarises (if configured), and smoke-tests the app. Produces &lt;code&gt;dist/WhatCable.app&lt;/code&gt; and &lt;code&gt;dist/WhatCable.zip&lt;/code&gt;. Safe to run on any branch, any time. Does not touch the Homebrew tap.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Modes:&lt;/strong&gt;&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Configuration&lt;/th&gt; 
   &lt;th&gt;Result&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;No &lt;code&gt;.env&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;Ad-hoc signed. Works locally; Gatekeeper warns on other Macs.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;.env&lt;/code&gt; with &lt;code&gt;DEVELOPER_ID&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;Developer ID signed + hardened runtime.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;.env&lt;/code&gt; with &lt;code&gt;DEVELOPER_ID&lt;/code&gt; + &lt;code&gt;NOTARY_PROFILE&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;Full notarisation + stapled ticket. Gatekeeper-clean for everyone.&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;p&gt;&lt;strong&gt;Cutting a release:&lt;/strong&gt;&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# write release-notes/v&amp;lt;version&amp;gt;.md first, then:
./scripts/release.sh &amp;lt;version&amp;gt;
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;The wrapper does the whole pipeline: bumps the version, runs &lt;a href=&quot;http://build-app.sh&quot;&gt;build-app.sh&lt;/a&gt; (which builds, signs, notarises, smoke-tests, and bumps the local cask), tags and pushes the commit, creates the GitHub release with the notes file, verifies the uploaded asset&#39;s sha matches the local zip, copies the notes into the tap, and pushes the tap. Use &lt;code&gt;--dry-run&lt;/code&gt; first to validate state. Requires &lt;code&gt;gh&lt;/code&gt; (auth&#39;d) and the env vars from &lt;code&gt;.env.example&lt;/code&gt;.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;One-time setup for full notarisation:&lt;/strong&gt;&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# 1. Find your signing identity
security find-identity -v -p codesigning

# 2. Store notarytool credentials in the keychain
xcrun notarytool store-credentials &quot;WhatCable-notary&quot; \
    --apple-id &quot;you@example.com&quot; \
    --team-id &quot;ABCDE12345&quot; \
    --password &quot;&amp;lt;app-specific-password&amp;gt;&quot;   # generate at appleid.apple.com

# 3. Create your .env from the template
cp .env.example .env
# ...and fill in DEVELOPER_ID
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Caveats&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Cable e-marker info only appears for cables that carry one.&lt;/strong&gt; Most USB-C cables under 60 W are unmarked. Any Thunderbolt / USB4 cable, any 5 A / 100 W+ cable, and most quality data cables will be e-marked.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Some cables only reveal their e-marker once something is plugged in at the other end.&lt;/strong&gt; The chip in the cable&#39;s plug runs off VCONN (a small power rail your Mac feeds into the cable) and only answers when the host issues a &quot;Discover Identity&quot; message. With nothing attached, some Macs read the e-marker straight away, others wait until they see a real partner to negotiate with. If a cable shows up as basic when bare, plug a charger, dock, or device into the far end and check again.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;WhatCable reads from the Mac&#39;s USB-C port, the connected device or charger, and the cable itself.&lt;/strong&gt; It cross-checks what each part of the chain reports, so if a cable claims high specs but the negotiated result is lower, you&#39;ll see where the mismatch is. That said, software cannot verify what&#39;s physically inside the jacket. If a cable&#39;s e-marker chip claims 240W / 40 Gbps but the wiring can&#39;t deliver, the chip is lying, not WhatCable. The trust-signals card flags a small set of internal-consistency tells (zero VID, reserved bit patterns in the Cable VDO, a VID not in the USB-IF list). These are common in budget cables and don&#39;t necessarily mean anything is wrong. They&#39;re informational, not a verdict.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Desktop front USB-C ports show devices, but no cable detail.&lt;/strong&gt; On Apple Silicon desktops (Mac mini, Studio), the front USB-C ports are plain USB behind an internal hub, not full USB-C ports with their own controller like the rear Thunderbolt ports. Anything plugged into them now appears under a &lt;strong&gt;Built-in USB ports&lt;/strong&gt; section, but the Mac exposes no cable, power, or PD data for them, so there&#39;s no e-marker or charging detail to show. The rear Thunderbolt ports work fully.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;PD spec coverage:&lt;/strong&gt; the decoder is aligned to USB-PD R3.2 V1.2 (March 2026). Earlier 3.0 / 3.1 cables work fine.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Vendor name lookup uses a bundled database&lt;/strong&gt; (thousands of USB-IF entries plus the community usb.ids list). VIDs assigned after the bundled snapshot will show as &quot;Unregistered / unknown&quot; and trip a trust-signal flag until the database is refreshed.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Linux port&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/abrauchli&quot;&gt;@abrauchli&lt;/a&gt; built a Rust port for Linux called &lt;a href=&quot;https://github.com/abrauchli/usbeehive&quot;&gt;usbeehive&lt;/a&gt;. Install it with &lt;code&gt;cargo install usbeehive&lt;/code&gt;. It reads from the kernel&#39;s typec sysfs interface rather than IOKit, so it&#39;s an independent implementation rather than a fork. It started life as a &lt;code&gt;whatcable&lt;/code&gt; crate on &lt;a href=&quot;http://crates.io&quot;&gt;crates.io&lt;/a&gt; before being renamed to avoid confusion with this repo. He&#39;s also working on &lt;a href=&quot;https://github.com/abrauchli/usbee&quot;&gt;usbee&lt;/a&gt;, a GNOME UI for it (early stage, but the basics work).&lt;/p&gt; 
&lt;h2&gt;The other half of the question&lt;/h2&gt; 
&lt;p&gt;WhatCable can tell you a charger negotiated 60W when your Mac wanted 96W. It cannot tell you what that has been doing to the battery on the other end of the cable, because that is a different part of the Mac and out of scope here.&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://www.whatbattery.app&quot;&gt;&lt;strong&gt;WhatBattery&lt;/strong&gt;&lt;/a&gt; covers that side: unrounded battery health, live charge and discharge in watts, per-cell readings from the pack, and what happened to the charge while the Mac was asleep. Same developer, same read-only approach, same Apple Silicon and macOS 14 floor.&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://www.whatport.app&quot;&gt;&lt;strong&gt;WhatPort&lt;/strong&gt;&lt;/a&gt; is the port-side companion: protocol, speed, lane status and live power draw for every port on your Mac at once, where WhatCable focuses on the cable in one of them.&lt;/p&gt; 
&lt;h2&gt;Privacy&lt;/h2&gt; 
&lt;p&gt;WhatCable reads USB-C port state directly from IOKit on your Mac. All of that happens locally. Nothing is sent anywhere automatically.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Cable reports:&lt;/strong&gt; If you use the &quot;Report this cable&quot; button on an e-marked cable, WhatCable builds a pre-filled GitHub issue containing the cable&#39;s vendor ID, product ID, and capability flags (VDOs). Your browser opens with that data in the issue form. Nothing is submitted until you click the button in GitHub yourself. Once submitted, the issue is public.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Update checks:&lt;/strong&gt; WhatCable checks the GitHub Releases API about once every six hours to see if a newer version is available. No personal data or hardware info is included in that request.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Diagnostic data:&lt;/strong&gt; Settings has an opt-in &lt;strong&gt;Contribute Diagnostic Data&lt;/strong&gt; button. When you press it, WhatCable collects anonymised USB-C port and power IOKit details from your Mac and submits them to help improve hardware coverage. It only runs when you click it; nothing is collected or sent unless you choose to.&lt;/p&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;Issues and PRs welcome. The code is small and tries to stay readable.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Where to start:&lt;/strong&gt;&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Module&lt;/th&gt; 
   &lt;th&gt;Role&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/darrylmorley/whatcable/main/Sources/WhatCable/&quot;&gt;&lt;code&gt;Sources/WhatCable/&lt;/code&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Main menu bar app UI (SwiftUI popover, settings, notifications)&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/darrylmorley/whatcable/main/Sources/WhatCableCore/&quot;&gt;&lt;code&gt;Sources/WhatCableCore/&lt;/code&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Shared diagnostic logic, PD bit decoding, text formatting&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/darrylmorley/whatcable/main/Sources/WhatCableDarwinBackend/&quot;&gt;&lt;code&gt;Sources/WhatCableDarwinBackend/&lt;/code&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;IOKit watchers (port state, PD identity, power sources, USB devices, Thunderbolt fabric)&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/darrylmorley/whatcable/main/Sources/WhatCableAppKit/&quot;&gt;&lt;code&gt;Sources/WhatCableAppKit/&lt;/code&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Plugin registry and extension points (hooks for Pro features, CLI commands, menu items)&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/darrylmorley/whatcable/main/Sources/WhatCablePlugins/&quot;&gt;&lt;code&gt;Sources/WhatCablePlugins/&lt;/code&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Pro features (power metering, licence, cable and display diagnostics, liquid detection)&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/darrylmorley/whatcable/main/Sources/WhatCableWidget/&quot;&gt;&lt;code&gt;Sources/WhatCableWidget/&lt;/code&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;WidgetKit extension (small/medium/large desktop widgets)&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/darrylmorley/whatcable/main/Sources/WhatCableCLI/&quot;&gt;&lt;code&gt;Sources/WhatCableCLI/&lt;/code&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;CLI binary, shares Core/Backend/Plugins with the app&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h3&gt;Translations&lt;/h3&gt; 
&lt;p&gt;Read &lt;a href=&quot;https://raw.githubusercontent.com/darrylmorley/whatcable/main/TRANSLATIONS.md&quot;&gt;TRANSLATIONS.md&lt;/a&gt; first: it covers the terminology policy (technical labels stay in English) and which languages have an active maintainer who reviews changes.&lt;/p&gt; 
&lt;p&gt;WhatCable uses &lt;code&gt;.lproj/.strings&lt;/code&gt; files for localisation. Each module (&lt;code&gt;WhatCable&lt;/code&gt; and &lt;code&gt;WhatCableCore&lt;/code&gt;) has its own set under &lt;code&gt;Sources/&amp;lt;module&amp;gt;/Resources/&amp;lt;lang&amp;gt;.lproj/Localizable.strings&lt;/code&gt;.&lt;/p&gt; 
&lt;p&gt;To add a new language:&lt;/p&gt; 
&lt;ol&gt; 
 &lt;li&gt;Copy &lt;code&gt;en.lproj/Localizable.strings&lt;/code&gt; from both modules into a new &lt;code&gt;&amp;lt;lang&amp;gt;.lproj/&lt;/code&gt; directory&lt;/li&gt; 
 &lt;li&gt;Translate the values (leave the keys as-is)&lt;/li&gt; 
 &lt;li&gt;Make sure format specifiers (&lt;code&gt;%@&lt;/code&gt;, &lt;code&gt;%lld&lt;/code&gt;, &lt;code&gt;%1$@&lt;/code&gt;, etc.) match the English originals exactly&lt;/li&gt; 
 &lt;li&gt;Run &lt;code&gt;plutil -lint&lt;/code&gt; on your files to check for syntax errors&lt;/li&gt; 
 &lt;li&gt;If the language has its own plural rules, copy &lt;code&gt;en.lproj/Localizable.stringsdict&lt;/code&gt; in the &lt;code&gt;WhatCable&lt;/code&gt; module and translate the &lt;code&gt;one&lt;/code&gt;/&lt;code&gt;few&lt;/code&gt;/&lt;code&gt;many&lt;/code&gt;/&lt;code&gt;other&lt;/code&gt; forms&lt;/li&gt; 
 &lt;li&gt;Add the language code to &lt;code&gt;CFBundleLocalizations&lt;/code&gt; in &lt;a href=&quot;https://raw.githubusercontent.com/darrylmorley/whatcable/main/scripts/smoke-test.sh&quot;&gt;&lt;code&gt;scripts/smoke-test.sh&lt;/code&gt;&lt;/a&gt;&lt;/li&gt; 
&lt;/ol&gt; 
&lt;p&gt;The Settings language picker builds itself from the bundled &lt;code&gt;.lproj&lt;/code&gt; resources, so a new language appears there automatically once the files are in place.&lt;/p&gt; 
&lt;h3&gt;Diagnostic data&lt;/h3&gt; 
&lt;p&gt;The single most helpful thing you can do is hit &lt;strong&gt;Contribute Diagnostic Data&lt;/strong&gt; in Settings. It runs a short set of C probes that gather anonymised port and power data from your Mac, then submits the results. The whole process takes a few seconds, nothing is sent without your explicit click, and no personal information is included.&lt;/p&gt; 
&lt;p&gt;More device data means better hardware coverage, fewer edge-case bugs, and more accurate diagnostics for everyone. If you have unusual hardware (docks, hubs, TB5 gear, high-wattage chargers), your report is especially valuable.&lt;/p&gt; 
&lt;p&gt;Cable reports are also very welcome. If you have an e-marked cable, use the &quot;Report this cable&quot; button in the app (or &lt;code&gt;whatcable --report&lt;/code&gt; from the CLI) to submit its fingerprint. These reports build the bundled cable database so WhatCable can show brand and model info for known cables. Every report you submit helps other users identify their cables at a glance.&lt;/p&gt; 
&lt;h2&gt;Credits&lt;/h2&gt; 
&lt;p&gt;Built by &lt;a href=&quot;https://github.com/darrylmorley&quot;&gt;Darryl Morley&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Contributors:&lt;/strong&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rolandgroen&quot;&gt;@rolandgroen&lt;/a&gt; - option-click technical details, gear menu in popover&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/0x687931&quot;&gt;@0x687931&lt;/a&gt; - UI polish, hardware matching, updater hardening, USB-C/MagSafe fix&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/blech&quot;&gt;@blech&lt;/a&gt; - USB device matching for hubs, settings view, Cmd+R refresh shortcut&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/willhsieh&quot;&gt;@willhsieh&lt;/a&gt; - window/Dock mode&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/hobostay&quot;&gt;@hobostay&lt;/a&gt; - SIGTERM handling, charging threshold fix, installer temp file leak fix&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/JimmFly&quot;&gt;@JimmFly&lt;/a&gt; - localisation infrastructure, Simplified Chinese translation&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/IonBazan&quot;&gt;@IonBazan&lt;/a&gt; - i18n migration to .lproj/.strings, Polish translation, obsolete vendor IDs&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/bovirus&quot;&gt;@bovirus&lt;/a&gt; - Italian translation&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Vardan933&quot;&gt;@Vardan933&lt;/a&gt; - Armenian translation&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jimmyorz&quot;&gt;@jimmyorz&lt;/a&gt; - Traditional Chinese translation&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dohun0310&quot;&gt;@dohun0310&lt;/a&gt; - Korean translation&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/shpokas&quot;&gt;@shpokas&lt;/a&gt; - Latvian translation&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/abrauchli&quot;&gt;@abrauchli&lt;/a&gt; - screenshot fix&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/durul&quot;&gt;@durul&lt;/a&gt; - updater security audit&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nervous-inhuman&quot;&gt;@nervous-inhuman&lt;/a&gt; - USB device matching and port state bug reports&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/hgschmie&quot;&gt;@hgschmie&lt;/a&gt; - e-marker and Thunderbolt cable documentation that led to e-marker detection&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/joeshaw&quot;&gt;@joeshaw&lt;/a&gt; - dual power source bug report, Thunderbolt data samples&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jlbyrne-76&quot;&gt;@jlbyrne-76&lt;/a&gt; - M4 Mac Mini front port e-marker bug report, cable reports&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/stevetrease&quot;&gt;@stevetrease&lt;/a&gt; - M3 and M4 ioreg dumps, TB3 data samples&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jshier&quot;&gt;@jshier&lt;/a&gt; - M3 Ultra Thunderbolt data, AppleSmartBattery dumps&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/NoFr1ends&quot;&gt;@NoFr1ends&lt;/a&gt; - TB5 hardware confirmation (JHL9580 dock, M5 Pro)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/iFindProblems&quot;&gt;@iFindProblems&lt;/a&gt; - Dock mode bug reports&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/NaiveTomcat&quot;&gt;@NaiveTomcat&lt;/a&gt; - Power Monitor regression and MagSafe PD contract bug reports&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pandoratactful&quot;&gt;@pandoratactful&lt;/a&gt; - active Thunderbolt cable e-marker mismatch report&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jesserobbins&quot;&gt;@jesserobbins&lt;/a&gt; - grouping devices by USB controller, per-device serial and USB version in JSON output&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/VailElla&quot;&gt;@VailElla&lt;/a&gt; - cable report speed values read from the cable&#39;s own bits, CLI output sanitising, test-kit probe limits&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/offyotto&quot;&gt;@offyotto&lt;/a&gt; - stale power-contract wattage no longer reported as live&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dhruvsheth10&quot;&gt;@dhruvsheth10&lt;/a&gt; - refresh icon spins while a refresh runs&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/hinaloe&quot;&gt;@hinaloe&lt;/a&gt; - charger wattage stuck at 3W with a second device attached, report and diagnostics&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/asapuntz&quot;&gt;@asapuntz&lt;/a&gt; - KVM switch and hub compatibility report that led to the deep-probe switch&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/CronoCX&quot;&gt;@CronoCX&lt;/a&gt; - desktop built-in USB port grouping report&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/official-Cromatin&quot;&gt;@official-Cromatin&lt;/a&gt; - M1 Pro charging contract report, and the detail that found it in the SMC&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/aguilaair&quot;&gt;@aguilaair&lt;/a&gt; - Power Monitor icon mismatch report&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/cannotcollide&quot;&gt;@cannotcollide&lt;/a&gt; - identifying the Apple Thunderbolt 4 Pro Cable behind a bad database row&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;&lt;strong&gt;Beta testers:&lt;/strong&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jimmyorz&quot;&gt;@jimmyorz&lt;/a&gt;, &lt;a href=&quot;https://github.com/aguilaair&quot;&gt;@aguilaair&lt;/a&gt;, &lt;a href=&quot;https://github.com/cannotcollide&quot;&gt;@cannotcollide&lt;/a&gt;, &lt;a href=&quot;https://github.com/themadturk7&quot;&gt;@themadturk7&lt;/a&gt;, &lt;a href=&quot;https://github.com/Caruso8677&quot;&gt;@Caruso8677&lt;/a&gt;, &lt;a href=&quot;https://github.com/Mostxlnt&quot;&gt;@Mostxlnt&lt;/a&gt; and &lt;a href=&quot;https://github.com/aldobalducci&quot;&gt;@aldobalducci&lt;/a&gt;, who put four builds through their desks before v1.3.0&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;&lt;strong&gt;Sponsors:&lt;/strong&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/1A1zRyan&quot;&gt;@1A1zRyan&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/SpartanDavie&quot;&gt;@SpartanDavie&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/zippykeyop&quot;&gt;@zippykeyop&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;Thanks to everyone who has filed cable reports, bug reports, and IOKit dumps. These contributions directly improve the cable database and help WhatCable handle more hardware correctly.&lt;/p&gt; 
&lt;p&gt;Inspired by every time someone has asked &quot;&lt;em&gt;is this cable any good?&lt;/em&gt;&quot;.&lt;/p&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/1226286910/faabb9c8-772f-43d0-8643-57d90b45f5b2" medium="image" />
      
    </item>
    
    <item>
      <title>utmapp/UTM</title>
      <link>https://github.com/utmapp/UTM</link>
      <description>&lt;p&gt;Virtual machines for iOS and macOS&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;UTM&lt;/h1&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/utmapp/UTM/actions?query=event%3Arelease+workflow%3ABuild&quot;&gt;&lt;img src=&quot;https://github.com/utmapp/UTM/workflows/Build/badge.svg?branch=main&amp;amp;event=push&quot; alt=&quot;Build&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;It is possible to invent a single machine which can be used to compute any computable sequence.&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;p&gt;-- &lt;cite&gt;Alan Turing, 1936&lt;/cite&gt;&lt;/p&gt; 
&lt;p&gt;UTM is a full featured system emulator and virtual machine host for iOS and macOS. It is based off of QEMU. In short, it allows you to run Windows, Linux, and more on your Mac, iPhone, and iPad. More information at &lt;a href=&quot;https://getutm.app/&quot;&gt;https://getutm.app/&lt;/a&gt; and &lt;a href=&quot;https://mac.getutm.app/&quot;&gt;https://mac.getutm.app/&lt;/a&gt;&lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;img width=&quot;450px&quot; alt=&quot;UTM running on an iPhone&quot; src=&quot;https://raw.githubusercontent.com/utmapp/UTM/main/screen.png&quot; /&gt; &lt;br /&gt; &lt;img width=&quot;450px&quot; alt=&quot;UTM running on a MacBook&quot; src=&quot;https://raw.githubusercontent.com/utmapp/UTM/main/screenmac.png&quot; /&gt; &lt;/p&gt; 
&lt;h2&gt;Features&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Full system emulation (MMU, devices, etc) using QEMU&lt;/li&gt; 
 &lt;li&gt;30+ processors supported including x86_64, ARM64, and RISC-V&lt;/li&gt; 
 &lt;li&gt;VGA graphics mode using SPICE and QXL&lt;/li&gt; 
 &lt;li&gt;Text terminal mode&lt;/li&gt; 
 &lt;li&gt;USB devices&lt;/li&gt; 
 &lt;li&gt;JIT based acceleration using QEMU TCG&lt;/li&gt; 
 &lt;li&gt;Frontend designed from scratch for macOS 11 and iOS 11+ using the latest and greatest APIs&lt;/li&gt; 
 &lt;li&gt;Create, manage, run VMs directly from your device&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Additional macOS Features&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Hardware accelerated virtualization using Hypervisor.framework and QEMU&lt;/li&gt; 
 &lt;li&gt;Boot macOS guests with Virtualization.framework on macOS 12+&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;UTM SE&lt;/h2&gt; 
&lt;p&gt;UTM/QEMU requires dynamic code generation (JIT) for maximum performance. JIT on iOS devices require either a jailbroken device, or one of the various workarounds found for specific versions of iOS (see &quot;Install&quot; for more details).&lt;/p&gt; 
&lt;p&gt;UTM SE (&quot;slow edition&quot;) uses a &lt;a href=&quot;https://github.com/ktemkin/qemu/raw/with_tcti/tcg/aarch64-tcti/README.md&quot;&gt;threaded interpreter&lt;/a&gt; which performs better than a traditional interpreter but still slower than JIT. This technique is similar to what &lt;a href=&quot;https://github.com/ish-app/ish&quot;&gt;iSH&lt;/a&gt; does for dynamic execution. As a result, UTM SE does not require jailbreaking or any JIT workarounds and can be sideloaded as a regular app.&lt;/p&gt; 
&lt;p&gt;To optimize for size and build times, only the following architectures are included in UTM SE: ARM, PPC, RISC-V, and x86 (all with both 32-bit and 64-bit variants).&lt;/p&gt; 
&lt;h2&gt;Install&lt;/h2&gt; 
&lt;p&gt;UTM (SE) for iOS: &lt;a href=&quot;https://getutm.app/install/&quot;&gt;https://getutm.app/install/&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;UTM is also available for macOS: &lt;a href=&quot;https://mac.getutm.app/&quot;&gt;https://mac.getutm.app/&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;Development&lt;/h2&gt; 
&lt;h3&gt;&lt;a href=&quot;https://raw.githubusercontent.com/utmapp/UTM/main/Documentation/MacDevelopment.md&quot;&gt;macOS Development&lt;/a&gt;&lt;/h3&gt; 
&lt;h3&gt;&lt;a href=&quot;https://raw.githubusercontent.com/utmapp/UTM/main/Documentation/iOSDevelopment.md&quot;&gt;iOS Development&lt;/a&gt;&lt;/h3&gt; 
&lt;h2&gt;Related&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ish-app/ish&quot;&gt;iSH&lt;/a&gt;: emulates a usermode Linux terminal interface for running x86 Linux applications on iOS&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/holzschu/a-shell&quot;&gt;a-shell&lt;/a&gt;: packages common Unix commands and utilities built natively for iOS and accessible through a terminal interface&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;UTM is distributed under the permissive Apache 2.0 license. However, it uses several (L)GPL components. Most are dynamically linked but the gstreamer plugins are statically linked and parts of the code are taken from qemu. Please be aware of this if you intend on redistributing this application.&lt;/p&gt; 
&lt;p&gt;Some icons made by &lt;a href=&quot;https://www.freepik.com&quot;&gt;Freepik&lt;/a&gt; from &lt;a href=&quot;https://www.flaticon.com/&quot;&gt;www.flaticon.com&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;Additionally, UTM frontend depends on the following MIT/BSD License components:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/hackiftekhar/IQKeyboardManager&quot;&gt;IQKeyboardManager&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/migueldeicaza/SwiftTerm&quot;&gt;SwiftTerm&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/weichsel/ZIPFoundation&quot;&gt;ZIP Foundation&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/futuretap/InAppSettingsKit&quot;&gt;InAppSettingsKit&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;Continuous integration hosting is provided by &lt;a href=&quot;https://www.macstadium.com/opensource&quot;&gt;MacStadium&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://www.macstadium.com&quot;&gt;&lt;img src=&quot;https://uploads-ssl.webflow.com/5ac3c046c82724970fc60918/5c019d917bba312af7553b49_MacStadium-developerlogo.png&quot; alt=&quot;MacStadium logo&quot; width=&quot;250&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/90f13108532c118562379b317bf09febe03e9741d3ca7b2d065d6a6093a8497c/utmapp/UTM" medium="image" />
      
    </item>
    
    <item>
      <title>minh-ton/reynard-browser</title>
      <link>https://github.com/minh-ton/reynard-browser</link>
      <description>&lt;p&gt;An experimental Gecko-based web browser for iOS 13+.&lt;/p&gt;&lt;hr&gt;&lt;img width=&quot;100&quot; height=&quot;100&quot; src=&quot;https://github.com/user-attachments/assets/1c42dda2-b778-4342-9f94-8f852c3ad652&quot; /&gt; 
&lt;h1&gt;Reynard Browser&lt;/h1&gt; 
&lt;p&gt;Reynard is a &lt;strong&gt;Gecko-based&lt;/strong&gt; web browser for iOS 13+.&lt;/p&gt; 
&lt;p&gt;Unlike other browsers on iOS that are forced to use Apple&#39;s &lt;strong&gt;WebKit&lt;/strong&gt; engine (including Safari and all third-party browsers), Reynard uses &lt;strong&gt;Gecko&lt;/strong&gt;. This is the same engine that powers the Firefox browser on desktop and Android devices.&lt;/p&gt; 
&lt;p&gt;This project is mainly for users on older iOS versions who are stuck with an outdated version of WebKit. Because WebKit is bundled with the OS, these devices cannot receive engine updates and often fail to load modern websites. By using Gecko, which is kept up to date independently, Reynard allows these sites to work again. Users on newer iOS versions can also use the browser if they want an alternative to WebKit, including Firefox add-ons and other Gecko-exclusive features.&lt;/p&gt; 
&lt;h2&gt;Installation&lt;/h2&gt; 
&lt;p&gt;The latest builds are available for download on the &lt;a href=&quot;https://github.com/minh-ton/reynard-browser/releases&quot;&gt;Releases&lt;/a&gt; page. Please note that this project is still in an early experimental state, so expect bugs and missing features.&lt;/p&gt; 
&lt;h3&gt;TrollStore (iOS 14 - 16.6.1, 17.0)&lt;/h3&gt; 
&lt;p&gt;For the best experience, I&#39;d recommend sideloading Reynard via &lt;a href=&quot;https://github.com/opa334/TrollStore&quot;&gt;TrollStore&lt;/a&gt; using the &lt;code&gt;Reynard-TrollStore.tipa&lt;/code&gt; build. This gives you automatic JIT enablement, better performance, and automatic app updates. For automatic app updates, make sure that the &lt;strong&gt;URL Scheme Enabled&lt;/strong&gt; option is turned on in TrollStore.&lt;/p&gt; 
&lt;h3&gt;AltStore or SideStore (iOS 17.4+)&lt;/h3&gt; 
&lt;p&gt;You should use &lt;a href=&quot;https://altstore.io/&quot;&gt;AltStore&lt;/a&gt; or &lt;a href=&quot;https://sidestore.io/&quot;&gt;SideStore&lt;/a&gt; to sideload the &lt;code&gt;Reynard.ipa&lt;/code&gt; build when TrollStore is not available, especially on newer iOS versions. Please note that you must select the &lt;strong&gt;Keep App Extensions&lt;/strong&gt; option during installation, as Reynard relies on its extensions to function and will not work without them.&lt;/p&gt; 
&lt;p&gt;You can also &lt;a href=&quot;https://stikstore.app/altdirect/?url=https://github.com/minh-ton/reynard-browser/releases/download/0.0.1-a1/source.json&amp;amp;exclude=livecontainer,stikstore,trollapps,feather&quot;&gt;click here&lt;/a&gt; to add the AltSource for Reynard to AltStore or SideStore.&lt;/p&gt; 
&lt;div class=&quot;markdown-alert markdown-alert-important&quot;&gt;
 &lt;p class=&quot;markdown-alert-title&quot;&gt;
  &lt;svg class=&quot;octicon octicon-report mr-2&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;
   &lt;path d=&quot;M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z&quot;&gt;&lt;/path&gt;
  &lt;/svg&gt;Important&lt;/p&gt;
 &lt;p&gt;&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;&lt;strong&gt;LiveContainer is not supported&lt;/strong&gt; due to its own limitations.&lt;/li&gt; 
  &lt;li&gt;Sideloading methods that use a distribution certificate for signing are &lt;strong&gt;not supported&lt;/strong&gt;.⁠&lt;/li&gt; 
  &lt;li&gt;Other sideloading methods are &lt;strong&gt;untested&lt;/strong&gt;, and &lt;strong&gt;no support will be provided&lt;/strong&gt; for issues arising from them.&lt;/li&gt; 
 &lt;/ul&gt; 
&lt;/div&gt; 
&lt;h3&gt;Jailbroken (iOS 13, 17.0.1 - 17.3.1)&lt;/h3&gt; 
&lt;p&gt;Sideload the &lt;code&gt;Reynard-Jailbroken.ipa&lt;/code&gt; build using &lt;a href=&quot;https://www.tigisoftware.com/default/?page_id=78&quot;&gt;Filza File Manager&lt;/a&gt; with &lt;a href=&quot;https://github.com/akemin-dayo/AppSync&quot;&gt;AppSync Unified&lt;/a&gt; on a &lt;strong&gt;jailbroken device&lt;/strong&gt;. You will also benefit from automatic JIT enablement and better performance.&lt;/p&gt; 
&lt;h2&gt;Preview&lt;/h2&gt; 
&lt;h3&gt;iOS 14 (iPhone 6S Plus, 14.1)&lt;/h3&gt; 
&lt;p&gt;These sites are known to break or render incorrectly on iOS 14. The screenshots below compare how they load in Safari versus Reynard.&lt;/p&gt; 
&lt;table&gt; 
 &lt;tbody&gt;
  &lt;tr&gt; 
   &lt;th colspan=&quot;2&quot;&gt;github.com&lt;/th&gt; 
   &lt;th colspan=&quot;2&quot;&gt;chatgpt.com&lt;/th&gt; 
   &lt;th colspan=&quot;2&quot;&gt;apple.com&lt;/th&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td align=&quot;center&quot;&gt;Safari&lt;/td&gt; 
   &lt;td align=&quot;center&quot;&gt;Reynard&lt;/td&gt; 
   &lt;td align=&quot;center&quot;&gt;Safari&lt;/td&gt; 
   &lt;td align=&quot;center&quot;&gt;Reynard&lt;/td&gt; 
   &lt;td align=&quot;center&quot;&gt;Safari&lt;/td&gt; 
   &lt;td align=&quot;center&quot;&gt;Reynard&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/d89f4385-c478-4aea-aa9d-6c9fca72252b&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/917ee435-39cb-469d-835f-8e69f9e13d03&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/1a68024e-83d4-489c-a576-26d5ea43011c&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/6880b1ac-63f9-421f-a373-5d69c5745cd7&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/d237118e-be3b-43d1-b14c-032784b43571&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/9f799569-d712-44d0-918a-21d523874c6e&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt;
&lt;/table&gt; 
&lt;h3&gt;iOS 15 (iPhone 7, 15.8.6)&lt;/h3&gt; 
&lt;table&gt; 
 &lt;tbody&gt;
  &lt;tr&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/a7f1b302-51b6-4afe-a2ce-35b518e5b761&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/f5dbfba5-c1a8-4729-bd7d-b96a7ace1237&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/986c8cfb-7979-4f4b-9305-73ebd1a87b19&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/544ff493-6807-4b2f-b526-6d34f029e1d3&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/31ef9486-8631-4d0e-ad9a-1281d513151f&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt;
&lt;/table&gt; 
&lt;h3&gt;iOS 26 (iPhone 13 mini, 26.1)&lt;/h3&gt; 
&lt;p&gt;Reynard also works great on the latest version of iOS!&lt;/p&gt; 
&lt;table&gt; 
 &lt;tbody&gt;
  &lt;tr&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/974e8ce1-f798-4bef-bac1-621ee535c5ee&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/1429c985-f439-4e58-9385-0eefef4add4c&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/a9eeaf68-828f-4ead-b619-8b9914e0ed2c&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/bbc08422-4bf3-4928-933e-71cdad551fed&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;img width=&quot;150&quot; src=&quot;https://github.com/user-attachments/assets/cf01d298-a8d2-49ea-a557-7b1bbd1d893a&quot; /&gt;&lt;br /&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt;
&lt;/table&gt; 
&lt;h2&gt;Building&lt;/h2&gt; 
&lt;div class=&quot;markdown-alert markdown-alert-warning&quot;&gt;
 &lt;p class=&quot;markdown-alert-title&quot;&gt;
  &lt;svg class=&quot;octicon octicon-alert mr-2&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;
   &lt;path d=&quot;M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z&quot;&gt;&lt;/path&gt;
  &lt;/svg&gt;Warning&lt;/p&gt;
 &lt;p&gt;Build instructions are included below for reference. Please be aware that I &lt;strong&gt;do not&lt;/strong&gt; provide support for issues or errors encountered during the build process.&lt;/p&gt; 
&lt;/div&gt; 
&lt;p&gt;To build the project, you&#39;ll need Xcode, &lt;a href=&quot;https://www.python.org/downloads/&quot;&gt;Python 3&lt;/a&gt;, &lt;a href=&quot;https://doc.rust-lang.org/cargo/getting-started/installation.html&quot;&gt;Rust and Cargo&lt;/a&gt;, and &lt;a href=&quot;https://formulae.brew.sh/formula/ldid&quot;&gt;ldid&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;Clone the repository.&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git clone --recursive https://github.com/minh-ton/reynard-browser
cd reynard-browser
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Download Gecko and apply patches.&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;./tools/development/update-gecko.sh
./tools/development/apply-patches.sh
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Build dependencies and the Gecko engine.&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;./tools/development/build-idevice.sh
./tools/development/build-gecko.sh
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;To run Reynard, open &lt;code&gt;Reynard.xcodeproj&lt;/code&gt; in Xcode and build/run it from there.&lt;/p&gt; 
&lt;h2&gt;Notes&lt;/h2&gt; 
&lt;p&gt;This project initially started out of curiosity. I wanted to see if I could get Gecko to run without the &lt;a href=&quot;https://developer.apple.com/documentation/browserenginekit&quot;&gt;BrowserEngineKit&lt;/a&gt; framework, so it could be further modified to run on iOS versions as far back as possible. I got it working, and since then, I’ve been focusing on developing engine patches for better UIKit integration, fixing bugs, and turning this into a full, usable browser.&lt;/p&gt; 
&lt;p&gt;If you’ve come across this repository and find it interesting, I’d love to get help or collaborate on it. I’m learning as I go here and don’t have much prior experience with iOS app development or with Gecko itself, so any contributions, feedback, or pointers would be greatly appreciated.&lt;/p&gt; 
&lt;h2&gt;Acknowledgements&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/LiveContainer/LiveContainer&quot;&gt;LiveContainer&lt;/a&gt;: app extension handling and NSExtension usage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/StephenDev0/StikDebug&quot;&gt;StikDebug&lt;/a&gt; and &lt;a href=&quot;https://github.com/jkcoxson/idevice&quot;&gt;idevice&lt;/a&gt;: pairing-based JIT enablement support.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/opa334/TrollStore&quot;&gt;TrollStore&lt;/a&gt;: spawning a binary as root and JIT enablement.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/AngelAuraMC/Amethyst-iOS&quot;&gt;Amethyst-iOS&lt;/a&gt;, &lt;a href=&quot;https://github.com/OatmealDome/dolphin-ios&quot;&gt;dolphin-ios&lt;/a&gt;, &lt;a href=&quot;https://github.com/MaftyManicEMU/DukeX&quot;&gt;DukeX&lt;/a&gt;, and &lt;a href=&quot;https://git.ryujinx.app/projects/MeloNX&quot;&gt;MeloNX&lt;/a&gt;: Various utility functions, numerous private API usage, and JIT memory handling.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://bugzilla.mozilla.org/show_bug.cgi?id=1882872&quot;&gt;Pre-existing work&lt;/a&gt; on bringing Gecko to iOS using BrowserEngineKit: most of the difficult engine integration.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;This project is licensed under the &lt;a href=&quot;https://github.com/minh-ton/reynard-browser/raw/main/LICENSE&quot;&gt;GNU General Public License v3.0&lt;/a&gt;, except for the &lt;code&gt;patches&lt;/code&gt; directory containing the modifications to the Firefox Gecko engine and therefore is licensed under the &lt;a href=&quot;https://github.com/minh-ton/reynard-browser/raw/main/LICENSE.firefox&quot;&gt;Mozilla Public License 2.0&lt;/a&gt;.&lt;/p&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/a6ab6ca12761a8c75ba11c3b9bd39580e0c32f588e443880ece817cc053c23bc/minh-ton/reynard-browser" medium="image" />
      
    </item>
    
    <item>
      <title>tranvuongquocdat/SideScreen</title>
      <link>https://github.com/tranvuongquocdat/SideScreen</link>
      <description>&lt;p&gt;&lt;a id=&quot;readme-top&quot;&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/tranvuongquocdat/SideScreen/main/resources/logo/sidescreen-icon.png&quot; alt=&quot;Side Screen&quot; width=&quot;128&quot; /&gt; 
 &lt;h1&gt;Side Screen&lt;/h1&gt; 
 &lt;p&gt;&lt;em&gt;Turn your Android tablet into a second display for macOS — USB-C or wireless over WiFi&lt;/em&gt;&lt;/p&gt; 
 &lt;p&gt; &lt;img src=&quot;https://img.shields.io/github/v/release/tranvuongquocdat/SideScreen?style=for-the-badge&amp;amp;label=version&amp;amp;color=blue&quot; alt=&quot;Version&quot; /&gt; &lt;a href=&quot;https://github.com/tranvuongquocdat/SideScreen/raw/main/LICENSE&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/license/tranvuongquocdat/SideScreen?style=for-the-badge&amp;amp;color=34C759&quot; alt=&quot;License&quot; /&gt; &lt;/a&gt; &lt;a href=&quot;https://github.com/tranvuongquocdat/SideScreen/stargazers&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/stars/tranvuongquocdat/SideScreen?style=for-the-badge&amp;amp;color=FF9500&quot; alt=&quot;Stars&quot; /&gt; &lt;/a&gt; &lt;a href=&quot;https://github.com/tranvuongquocdat/SideScreen/releases&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/downloads/tranvuongquocdat/SideScreen/total?style=for-the-badge&amp;amp;color=8E44AD&amp;amp;label=downloads&quot; alt=&quot;Downloads&quot; /&gt; &lt;/a&gt; &lt;/p&gt; 
 &lt;p&gt;&lt;img src=&quot;https://img.shields.io/badge/Swift-FA7343?style=for-the-badge&amp;amp;logo=swift&amp;amp;logoColor=white&quot; alt=&quot;Swift&quot; /&gt; &lt;img src=&quot;https://img.shields.io/badge/Kotlin-7F52FF?style=for-the-badge&amp;amp;logo=kotlin&amp;amp;logoColor=white&quot; alt=&quot;Kotlin&quot; /&gt; &lt;img src=&quot;https://img.shields.io/badge/macOS_13+-000000?style=for-the-badge&amp;amp;logo=apple&amp;amp;logoColor=white&quot; alt=&quot;macOS&quot; /&gt; &lt;img src=&quot;https://img.shields.io/badge/Android_8+-3DDC84?style=for-the-badge&amp;amp;logo=android&amp;amp;logoColor=white&quot; alt=&quot;Android&quot; /&gt; &lt;img src=&quot;https://img.shields.io/badge/Universal_Binary-Apple_Silicon_+_Intel-000000?style=for-the-badge&amp;amp;logo=apple&amp;amp;logoColor=white&quot; alt=&quot;Universal Binary&quot; /&gt;&lt;/p&gt; 
&lt;/div&gt; 
&lt;hr /&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/tranvuongquocdat/SideScreen/main/resources/screenshots/hero_screenshot.jpeg&quot; alt=&quot;Side Screen — Mac + Android tablet as second display&quot; width=&quot;800&quot; /&gt; 
&lt;/div&gt; 
&lt;hr /&gt; 
&lt;h2&gt;About&lt;/h2&gt; 
&lt;p&gt;Side Screen brings true second-display functionality to your Android tablet — over USB-C cable for the lowest latency, or wirelessly over WiFi after a one-time QR pair. Something macOS doesn&#39;t natively support either way.&lt;/p&gt; 
&lt;p&gt;While Apple&#39;s Sidecar only works with iPads, millions of Android tablets sit unused as potential workstations. Side Screen bridges that gap with hardware-accelerated H.265 streaming, sub-16ms pipeline latency on USB, and full touch input — making your tablet feel like a real monitor, not a laggy mirror.&lt;/p&gt; 
&lt;p&gt;Built entirely open-source, Side Screen is designed to be fast, lightweight, and seamlessly integrated.&lt;/p&gt; 
&lt;p&gt;For full details, features, and documentation, please visit &lt;strong&gt;&lt;a href=&quot;https://sidescreen.dev&quot;&gt;sidescreen.dev&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt; 
&lt;p align=&quot;right&quot;&gt;&lt;a href=&quot;https://raw.githubusercontent.com/tranvuongquocdat/SideScreen/main/#readme-top&quot;&gt;↑ Back to top&lt;/a&gt;&lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Features&lt;/h2&gt; 
&lt;h3&gt;USB-C or Wireless&lt;/h3&gt; 
&lt;p&gt;Two ways to connect, same picture quality. &lt;strong&gt;USB-C&lt;/strong&gt; plugs in the cable for the lowest possible latency — adb-reverse port forwarding is set up automatically. &lt;strong&gt;Wireless&lt;/strong&gt; lets you scan a QR code from the Mac once and the tablet auto-reconnects on every future launch over WiFi (5 GHz strongly recommended). The auth token is generated locally and stays on your Mac; reset it any time to revoke access.&lt;/p&gt; 
&lt;h3&gt;Virtual Display&lt;/h3&gt; 
&lt;p&gt;Create a true virtual display on your Mac. Drag windows to your tablet like a real monitor — not mirroring, but extending.&lt;/p&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/tranvuongquocdat/SideScreen/main/resources/screenshots/feature_virtual_display.png&quot; alt=&quot;Virtual Display in macOS Display Preferences&quot; width=&quot;600&quot; /&gt; 
&lt;/div&gt; 
&lt;h3&gt;Ultra-Low Latency&lt;/h3&gt; 
&lt;p&gt;Hardware-accelerated H.265 encoding on Mac and decoding on Android. Async pipeline architecture delivers frames in under 30ms.&lt;/p&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/tranvuongquocdat/SideScreen/main/resources/screenshots/android_performance.png&quot; alt=&quot;Low Latency Streaming with Stats Overlay&quot; width=&quot;700&quot; /&gt; 
&lt;/div&gt; 
&lt;h3&gt;Touch Support&lt;/h3&gt; 
&lt;p&gt;Use your tablet&#39;s touchscreen to interact with macOS. Touch prediction compensates for network latency, making taps and drags feel natural.&lt;/p&gt; 
&lt;h3&gt;HiDPI (Retina) Support&lt;/h3&gt; 
&lt;p&gt;Enable HiDPI mode to render at 2× resolution internally — text and icons are sharp at any logical resolution, just like a MacBook Retina display. Perfect for users with 2K/4K tablets who want a readable workspace without sacrificing sharpness.&lt;/p&gt; 
&lt;h3&gt;Gaming Mode&lt;/h3&gt; 
&lt;p&gt;Enable Gaming Boost for optimized settings: 1 Gbps bitrate, ultra-low latency encoding, 120 FPS.&lt;/p&gt; 
&lt;h3&gt;Customizable&lt;/h3&gt; 
&lt;p&gt;Configure resolution (up to 4K/8K), frame rate (30–120 FPS), bitrate (20–5000 Mbps), and quality presets from the Mac app.&lt;/p&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/tranvuongquocdat/SideScreen/main/resources/screenshots/mac_settings_1.png&quot; alt=&quot;macOS Settings — Display &amp;amp; FPS&quot; height=&quot;500&quot; /&gt; &amp;nbsp;&amp;nbsp; 
 &lt;img src=&quot;https://raw.githubusercontent.com/tranvuongquocdat/SideScreen/main/resources/screenshots/mac_settings_2.png&quot; alt=&quot;macOS Settings — Streaming &amp;amp; Status&quot; height=&quot;500&quot; /&gt; &amp;nbsp;&amp;nbsp; 
 &lt;img src=&quot;https://raw.githubusercontent.com/tranvuongquocdat/SideScreen/main/resources/screenshots/android_settings.png&quot; alt=&quot;Android — Connection Screen&quot; height=&quot;500&quot; /&gt; 
&lt;/div&gt; 
&lt;h3&gt;Headless / portable Mac (new in 0.11.0)&lt;/h3&gt; 
&lt;p&gt;Run a Mac with no display of its own — a Mac Studio or Mini on the go, or a laptop in clamshell — using the tablet as its only screen. Enable Launch at Login and Auto-start streaming, and the Mac boots straight into serving the tablet, with nothing to press on the Mac.&lt;/p&gt; 
&lt;p align=&quot;right&quot;&gt;&lt;a href=&quot;https://raw.githubusercontent.com/tranvuongquocdat/SideScreen/main/#readme-top&quot;&gt;↑ Back to top&lt;/a&gt;&lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Requirements&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;&lt;/th&gt; 
   &lt;th&gt;macOS Host&lt;/th&gt; 
   &lt;th&gt;Android Client&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;OS&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;macOS 13 (Ventura)+&lt;/td&gt; 
   &lt;td&gt;Android 8.0 (API 26)+&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;Hardware&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Apple Silicon or Intel&lt;/td&gt; 
   &lt;td&gt;H.265 hardware decoder&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;USB mode&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;USB-C port + &lt;code&gt;adb&lt;/code&gt; (&lt;code&gt;brew install android-platform-tools&lt;/code&gt;)&lt;/td&gt; 
   &lt;td&gt;USB-C cable + USB Debugging enabled&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;Wireless mode&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Same WiFi network as the tablet (5 GHz recommended)&lt;/td&gt; 
   &lt;td&gt;Camera (for QR scan) + Google Play Services (for ML Kit barcode)&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Installation&lt;/h2&gt; 
&lt;p&gt;Download the latest release from &lt;a href=&quot;https://github.com/tranvuongquocdat/SideScreen/releases&quot;&gt;&lt;strong&gt;GitHub Releases&lt;/strong&gt;&lt;/a&gt;:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;macOS&lt;/strong&gt;: Download &lt;code&gt;.dmg&lt;/code&gt;, open it, drag Side Screen to Applications&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Android&lt;/strong&gt;: Download &lt;code&gt;.apk&lt;/code&gt;, install on your tablet (enable &quot;Unknown sources&quot; if needed). Port forwarding is handled automatically by the Mac app.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;&lt;strong&gt;⚠️ macOS Gatekeeper&lt;/strong&gt; If macOS says the app is &quot;damaged&quot;, open Terminal and run:&lt;/p&gt; 
 &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;sudo xattr -cr /Applications/SideScreen.app
&lt;/code&gt;&lt;/pre&gt; 
 &lt;p&gt;Then open the app again. This is needed because the app is not notarized with an Apple Developer certificate.&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;&lt;strong&gt;⚠️ ADB Required&lt;/strong&gt; The Mac app needs &lt;code&gt;adb&lt;/code&gt; to communicate with your Android device. If the app doesn&#39;t show &quot;Running&quot; after launch, you likely need to install ADB:&lt;/p&gt; 
 &lt;ol&gt; 
  &lt;li&gt;Install Homebrew (if you don&#39;t have it):&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;/bin/bash -c &quot;$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)&quot;
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
  &lt;li&gt;Install ADB:&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;brew install --cask android-platform-tools
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
 &lt;/ol&gt; 
&lt;/blockquote&gt; 
&lt;details&gt; 
 &lt;summary&gt;&lt;strong&gt;Build from source (for developers)&lt;/strong&gt;&lt;/summary&gt; 
 &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git clone https://github.com/tranvuongquocdat/SideScreen.git
cd SideScreen

# macOS
cd MacHost &amp;amp;&amp;amp; swift build -c release

# Android
cd AndroidClient &amp;amp;&amp;amp; ./gradlew assembleDebug
&lt;/code&gt;&lt;/pre&gt; 
&lt;/details&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Usage&lt;/h2&gt; 
&lt;h3&gt;USB mode (default — lowest latency)&lt;/h3&gt; 
&lt;ol&gt; 
 &lt;li&gt;Connect tablet to Mac via &lt;strong&gt;USB-C&lt;/strong&gt;&lt;/li&gt; 
 &lt;li&gt;Launch &lt;strong&gt;Side Screen&lt;/strong&gt; on Mac (runs in menu bar — port forwarding is set up automatically)&lt;/li&gt; 
 &lt;li&gt;Open &lt;strong&gt;Side Screen&lt;/strong&gt; on tablet → keep on the &lt;strong&gt;USB&lt;/strong&gt; tab → tap &lt;strong&gt;Connect&lt;/strong&gt;&lt;/li&gt; 
 &lt;li&gt;Done — drag windows to your new display&lt;/li&gt; 
&lt;/ol&gt; 
&lt;h3&gt;Wireless mode (new in 0.8.0 — no cable)&lt;/h3&gt; 
&lt;ol&gt; 
 &lt;li&gt;Launch &lt;strong&gt;Side Screen&lt;/strong&gt; on Mac → toggle to the &lt;strong&gt;Wireless&lt;/strong&gt; tab → a QR code appears&lt;/li&gt; 
 &lt;li&gt;Open &lt;strong&gt;Side Screen&lt;/strong&gt; on tablet → switch to the &lt;strong&gt;Wireless&lt;/strong&gt; tab → tap &lt;strong&gt;Scan QR Code&lt;/strong&gt; → grant camera permission → aim at the QR on the Mac&lt;/li&gt; 
 &lt;li&gt;The tablet remembers the Mac. Subsequent launches auto-reconnect — no rescan.&lt;/li&gt; 
&lt;/ol&gt; 
&lt;p&gt;Wireless mode requires both devices to be on the same WiFi network. &lt;strong&gt;5 GHz is strongly recommended&lt;/strong&gt; — 2.4 GHz can introduce noticeable jitter on dynamic content. If you need to revoke access, click &lt;strong&gt;Reset Token (forget all)&lt;/strong&gt; on the Mac and re-pair each tablet.&lt;/p&gt; 
&lt;p&gt;USB mode remains the lowest-latency option for drawing or fast-paced gaming. Wireless adds 10–50 ms depending on WiFi quality.&lt;/p&gt; 
&lt;h3&gt;Headless mode (new in 0.11.0 — no Mac interaction)&lt;/h3&gt; 
&lt;p&gt;In Settings → Startup, turn on &lt;strong&gt;Launch at Login&lt;/strong&gt; and &lt;strong&gt;Auto-start streaming on launch&lt;/strong&gt;, then pick the &lt;strong&gt;Startup mode&lt;/strong&gt; (USB or Wireless). On your next login the server starts automatically — just open Side Screen on the tablet and tap Connect (USB) or Reconnect (Wireless).&lt;/p&gt; 
&lt;p&gt;First-time setup still needs a screen once to grant Screen Recording permission; after that the Mac runs fully headless. For wireless headless use, give the Mac a static IP or DHCP reservation, and consider enabling macOS Screen Sharing as a fallback way in.&lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Configuration&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Setting&lt;/th&gt; 
   &lt;th&gt;Options&lt;/th&gt; 
   &lt;th&gt;Default&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Resolution&lt;/td&gt; 
   &lt;td&gt;720p to 8K, 30+ presets + custom&lt;/td&gt; 
   &lt;td&gt;1920x1200&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Frame Rate&lt;/td&gt; 
   &lt;td&gt;30, 60, 90, 120 FPS&lt;/td&gt; 
   &lt;td&gt;120&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Bitrate&lt;/td&gt; 
   &lt;td&gt;20–5000 Mbps&lt;/td&gt; 
   &lt;td&gt;1000 Mbps&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Quality&lt;/td&gt; 
   &lt;td&gt;Ultra Low, Low, Medium, High&lt;/td&gt; 
   &lt;td&gt;Ultra Low&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;HiDPI (Retina)&lt;/td&gt; 
   &lt;td&gt;On/Off&lt;/td&gt; 
   &lt;td&gt;Off&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Gaming Boost&lt;/td&gt; 
   &lt;td&gt;On/Off (1 Gbps, 120 Hz)&lt;/td&gt; 
   &lt;td&gt;Off&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Touch Input&lt;/td&gt; 
   &lt;td&gt;On/Off&lt;/td&gt; 
   &lt;td&gt;On&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Troubleshooting&lt;/h2&gt; 
&lt;details&gt; 
 &lt;summary&gt;&lt;strong&gt;&quot;SideScreen is damaged&quot; on macOS&lt;/strong&gt;&lt;/summary&gt; 
 &lt;p&gt;This happens because the app is not notarized by Apple. Run this command to fix it:&lt;/p&gt; 
 &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;sudo xattr -cr /Applications/SideScreen.app
&lt;/code&gt;&lt;/pre&gt; 
 &lt;p&gt;Then open the app again.&lt;/p&gt; 
&lt;/details&gt; 
&lt;details&gt; 
 &lt;summary&gt;&lt;strong&gt;&quot;Connection refused&quot; on Android&lt;/strong&gt;&lt;/summary&gt; 
 &lt;p&gt;The Mac app sets up &lt;code&gt;adb reverse&lt;/code&gt; automatically when streaming starts. If it still fails, make sure &lt;code&gt;adb&lt;/code&gt; is installed (via Android SDK or Homebrew: &lt;code&gt;brew install android-platform-tools&lt;/code&gt;) and your device has USB debugging enabled.&lt;/p&gt; 
&lt;/details&gt; 
&lt;details&gt; 
 &lt;summary&gt;&lt;strong&gt;High latency or stuttering&lt;/strong&gt;&lt;/summary&gt; 
 &lt;ul&gt; 
  &lt;li&gt;Lower resolution or frame rate&lt;/li&gt; 
  &lt;li&gt;Ensure H.265 hardware codec support on your device&lt;/li&gt; 
  &lt;li&gt;For USB mode, use a high-quality USB-C cable (not charge-only)&lt;/li&gt; 
  &lt;li&gt;For wireless mode, ensure both devices are on &lt;strong&gt;5 GHz WiFi&lt;/strong&gt;, not 2.4 GHz; reduce refresh rate to 60 Hz if jitter persists&lt;/li&gt; 
 &lt;/ul&gt; 
&lt;/details&gt; 
&lt;details&gt; 
 &lt;summary&gt;&lt;strong&gt;Wireless: &quot;Couldn&#39;t reach Mac&quot; / connection times out&lt;/strong&gt;&lt;/summary&gt; 
 &lt;ul&gt; 
  &lt;li&gt;Both devices must be on the same WiFi network (and same subnet — some mesh routers isolate &quot;guest&quot; devices)&lt;/li&gt; 
  &lt;li&gt;Click &lt;strong&gt;Start&lt;/strong&gt; on the Mac before scanning the QR — the listener only binds when the server is running&lt;/li&gt; 
  &lt;li&gt;If the Mac changes WiFi or its LAN IP, scan a fresh QR (the cached one points to the old address)&lt;/li&gt; 
  &lt;li&gt;macOS may prompt for &lt;strong&gt;Local Network&lt;/strong&gt; permission on first wireless toggle — grant it; without it, LAN inbound is silently dropped&lt;/li&gt; 
 &lt;/ul&gt; 
&lt;/details&gt; 
&lt;details&gt; 
 &lt;summary&gt;&lt;strong&gt;Wireless: &quot;Re-pair required&quot; after restart / reinstall&lt;/strong&gt;&lt;/summary&gt; 
 &lt;p&gt;The Mac&#39;s auth token resets when you click &lt;strong&gt;Reset Token (forget all)&lt;/strong&gt; or reinstall the app. Tap &lt;strong&gt;Scan QR Code&lt;/strong&gt; on the Android client and scan the new QR shown on the Mac.&lt;/p&gt; 
&lt;/details&gt; 
&lt;details&gt; 
 &lt;summary&gt;&lt;strong&gt;Virtual display not appearing&lt;/strong&gt;&lt;/summary&gt; 
 &lt;p&gt;Grant Screen Recording permission: &lt;strong&gt;System Preferences → Privacy &amp;amp; Security → Screen Recording → Enable Side Screen&lt;/strong&gt;&lt;/p&gt; 
&lt;/details&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;Contributions are welcome!&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;⭐ &lt;strong&gt;Star&lt;/strong&gt; this repo to help others discover it&lt;/li&gt; 
 &lt;li&gt;🐛 &lt;strong&gt;Report bugs&lt;/strong&gt; via &lt;a href=&quot;https://github.com/tranvuongquocdat/SideScreen/issues&quot;&gt;Issues&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;💡 &lt;strong&gt;Suggest features&lt;/strong&gt; via &lt;a href=&quot;https://github.com/tranvuongquocdat/SideScreen/issues&quot;&gt;Issues&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;🔧 &lt;strong&gt;Submit PRs&lt;/strong&gt; — see &lt;a href=&quot;https://raw.githubusercontent.com/tranvuongquocdat/SideScreen/main/CONTRIBUTING.md&quot;&gt;CONTRIBUTING.md&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Support&lt;/h2&gt; 
&lt;p&gt;If Side Screen is useful to you, consider supporting development:&lt;/p&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;p&gt;&lt;a href=&quot;https://buymeacoffee.com/tranvuongqk&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Buy%20Me%20a%20Coffee-FFDD00?style=for-the-badge&amp;amp;logo=buy-me-a-coffee&amp;amp;logoColor=black&quot; alt=&quot;Buy Me a Coffee&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/sponsors/tranvuongquocdat&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/GitHub%20Sponsors-EA4AAA?style=for-the-badge&amp;amp;logo=github-sponsors&amp;amp;logoColor=white&quot; alt=&quot;GitHub Sponsors&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://sidescreen.dev/donate.html&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Vietnam-VietQR-DA251D?style=for-the-badge&amp;amp;logoColor=white&quot; alt=&quot;VietQR&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;/div&gt; 
&lt;p&gt;🇻🇳 Vietnamese users — scan VietQR for a local bank transfer (no international fees) at &lt;a href=&quot;https://sidescreen.dev/donate.html&quot;&gt;sidescreen.dev/donate&lt;/a&gt;.&lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://raw.githubusercontent.com/tranvuongquocdat/SideScreen/main/LICENSE&quot;&gt;MIT License&lt;/a&gt; — free for personal and commercial use.&lt;/p&gt; 
&lt;hr /&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;p&gt;Made with ❤️ by &lt;strong&gt;Tran Vuong Quoc Dat&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;a href=&quot;https://github.com/tranvuongquocdat/SideScreen/issues&quot;&gt;Report Bug&lt;/a&gt; · &lt;a href=&quot;https://github.com/tranvuongquocdat/SideScreen/issues&quot;&gt;Request Feature&lt;/a&gt; · &lt;a href=&quot;https://github.com/tranvuongquocdat/SideScreen/discussions&quot;&gt;Discussions&lt;/a&gt;&lt;/p&gt; 
&lt;/div&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/3c8362c538d0642ac000f85d1dce44c8b654013f0d560ea76ea666f25ccd896b/tranvuongquocdat/SideScreen" medium="image" />
      
    </item>
    
    <item>
      <title>MonitorControl/MonitorControl</title>
      <link>https://github.com/MonitorControl/MonitorControl</link>
      <description>&lt;p&gt;🖥 Control your display&#39;s brightness &amp; volume on your Mac as if it was a native Apple Display. Use Apple Keyboard keys or custom shortcuts. Shows the native macOS OSDs.&lt;/p&gt;&lt;hr&gt;&lt;img src=&quot;https://raw.githubusercontent.com/MonitorControl/MonitorControl/main/.github/Icon-cropped.png&quot; width=&quot;200&quot; alt=&quot;App icon&quot; align=&quot;left&quot; /&gt; 
&lt;div&gt; 
 &lt;h3&gt;MonitorControl&lt;/h3&gt; 
 &lt;p&gt;Controls your external display brightness and volume and shows native OSD. Use menubar extra sliders or the keyboard, including native Apple keys!&lt;/p&gt; 
 &lt;a href=&quot;https://github.com/MonitorControl/MonitorControl/releases&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/MonitorControl/MonitorControl/main/.github/macos_badge_noborder.png&quot; width=&quot;175&quot; alt=&quot;Download for macOS&quot; /&gt;&lt;/a&gt; 
&lt;/div&gt; 
&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;a href=&quot;https://github.com/MonitorControl/MonitorControl/releases&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/downloads/MonitorControl/MonitorControl/total.svg?style=flat&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt; 
 &lt;a href=&quot;https://github.com/MonitorControl/MonitorControl/releases&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/release-pre/MonitorControl/MonitorControl.svg?style=flat&quot; alt=&quot;latest version&quot; /&gt;&lt;/a&gt; 
 &lt;a href=&quot;https://github.com/MonitorControl/MonitorControl/raw/master/License.txt&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/license/MonitorControl/MonitorControl.svg?style=flat&quot; alt=&quot;license&quot; /&gt;&lt;/a&gt; 
 &lt;a href=&quot;https://github.com/MonitorControl/MonitorControl&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/platform-macOS-blue.svg?style=flat&quot; alt=&quot;platform&quot; /&gt;&lt;/a&gt; 
 &lt;br /&gt; 
 &lt;br /&gt; 
 &lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/MonitorControl/MonitorControl/main/.github/screenshot.png&quot; width=&quot;824&quot; alt=&quot;Screenshot&quot; /&gt;&lt;br /&gt;&lt;/p&gt; 
&lt;/div&gt; 
&lt;hr /&gt; 
&lt;div class=&quot;markdown-alert markdown-alert-warning&quot;&gt;
 &lt;p class=&quot;markdown-alert-title&quot;&gt;
  &lt;svg class=&quot;octicon octicon-alert mr-2&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;
   &lt;path d=&quot;M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z&quot;&gt;&lt;/path&gt;
  &lt;/svg&gt;Warning&lt;/p&gt;
 &lt;p&gt;MonitorControl v4.2.0 &lt;a href=&quot;https://github.com/MonitorControl/MonitorControl/issues/1663&quot;&gt;may crash&lt;/a&gt; on certain configurations running macOS 15 Sequoia or Tahoe. Additionally, this version will not automatically update to the &lt;a href=&quot;https://github.com/MonitorControl/MonitorControl/releases&quot;&gt;latest app version&lt;/a&gt;. To resolve the issue and ensure future updates, please upgrade manually.&lt;/p&gt; 
&lt;/div&gt; 
&lt;h2&gt;Download&lt;/h2&gt; 
&lt;p&gt;Go to &lt;a href=&quot;https://github.com/MonitorControl/MonitorControl/releases&quot;&gt;Releases&lt;/a&gt; and download the latest &lt;code&gt;.dmg&lt;/code&gt;, or you can install via Homebrew:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-shell&quot;&gt;brew install --cask monitorcontrol
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Major features&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Control your display&#39;s brightness, volume and contrast!&lt;/li&gt; 
 &lt;li&gt;Shows native OSD for brightness and volume.&lt;/li&gt; 
 &lt;li&gt;Supports multiple protocols to adjust brightness: DDC for external displays (brightness, contrast, volume), native Apple protocol for Apple and built-in displays, Gamma table control for software dimming, shade control for AirPlay, Sidecar and Display Link devices and other virtual screens.&lt;/li&gt; 
 &lt;li&gt;Supports smooth brightness transitions.&lt;/li&gt; 
 &lt;li&gt;Seamlessly combined hardware and software dimming extends dimming beyond the minimum brightness available on your display.&lt;/li&gt; 
 &lt;li&gt;Synchronize brightness from built-in and Apple screens - replicate Ambient light sensor and touch bar induced changes to a non-Apple external display!&lt;/li&gt; 
 &lt;li&gt;Sync up all your displays using a single slider or keyboard shortcuts.&lt;/li&gt; 
 &lt;li&gt;Allows dimming to full black.&lt;/li&gt; 
 &lt;li&gt;Support for custom keyboard shortcuts as well as standard brightness and media keys on Apple keyboards.&lt;/li&gt; 
 &lt;li&gt;Dozens of customization options to tweak the inner workings of the app to suit your hardware and needs (don&#39;t forget to enable &lt;code&gt;Show advanced settings&lt;/code&gt; in app Settings).&lt;/li&gt; 
 &lt;li&gt;Simple, unobtrusive UI to blend in to the general aesthetics of macOS.&lt;/li&gt; 
 &lt;li&gt;Completely FREE.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;For additional features, more advanced brightness control with XDR/HDR brightness upscaling and support for more Mac models and displays, check out &lt;a href=&quot;https://github.com/waydabber/BetterDisplay#readme&quot;&gt;BetterDisplay&lt;/a&gt;!&lt;/p&gt; 
&lt;h3&gt;Screenshots (Settings)&lt;/h3&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/MonitorControl/MonitorControl/main/.github/pref_1.png&quot; width=&quot;392&quot; alt=&quot;Screenshot&quot; /&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/MonitorControl/MonitorControl/main/.github/pref_2.png&quot; width=&quot;392&quot; alt=&quot;Screenshot&quot; /&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/MonitorControl/MonitorControl/main/.github/pref_3.png&quot; width=&quot;392&quot; alt=&quot;Screenshot&quot; /&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/MonitorControl/MonitorControl/main/.github/pref_4.png&quot; width=&quot;392&quot; alt=&quot;Screenshot&quot; /&gt; 
&lt;/div&gt; 
&lt;h2&gt;How to install and use the app&lt;/h2&gt; 
&lt;ol&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/MonitorControl/MonitorControl/releases&quot;&gt;Download the app&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Copy the MonitorControl app file from the .dmg file to your Applications folder&lt;/li&gt; 
 &lt;li&gt;Click on the &lt;code&gt;MonitorControl&lt;/code&gt; app&lt;/li&gt; 
 &lt;li&gt;Add the app to &lt;code&gt;Accessibility&lt;/code&gt; under &lt;code&gt;System Settings&lt;/code&gt; » &lt;code&gt;Privacy &amp;amp; Security&lt;/code&gt; as prompted (this is required only if you wish to use the native Apple keyboard brightness and media keys - if this is not the case, you can safely skip this step).&lt;/li&gt; 
 &lt;li&gt;Use your keyboard or the sliders in the app menu (a brightness symbol in the macOS menubar as shown on the screenshot above) to control your displays.&lt;/li&gt; 
 &lt;li&gt;Open &lt;code&gt;Settings…&lt;/code&gt; for customization options (enable &lt;code&gt;Show advanced settings&lt;/code&gt; for even more options).&lt;/li&gt; 
 &lt;li&gt;You can set up custom keyboard shortcuts under the &lt;code&gt;Keyboard&lt;/code&gt; in Settings (the app uses Apple media keys by default).&lt;/li&gt; 
 &lt;li&gt;If you have any questions, go to &lt;a href=&quot;https://github.com/MonitorControl/MonitorControl/discussions&quot;&gt;Discussions&lt;/a&gt;!&lt;/li&gt; 
&lt;/ol&gt; 
&lt;h3&gt;macOS compatibility&lt;/h3&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;MonitorControl version&lt;/th&gt; 
   &lt;th&gt;macOS version&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;v4.0.0&lt;/td&gt; 
   &lt;td&gt;Catalina 10.15*&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;v3.1.1&lt;/td&gt; 
   &lt;td&gt;Mojave 10.14&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;v2.1.0&lt;/td&gt; 
   &lt;td&gt;Sierra 10.12&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;p&gt;&lt;em&gt;* With some limitations - full functionality available on macOS 11 Big Sur or newer.&lt;/em&gt;&lt;/p&gt; 
&lt;p&gt;For macOS Sequoia and Tahoe 26 compatibility &lt;a href=&quot;https://github.com/MonitorControl/MonitorControl/releases&quot;&gt;v4.3.3 or newer&lt;/a&gt; is required!&lt;/p&gt; 
&lt;p&gt;Please note that current versions have limited native macOS OSD support on macOS Tahoe - although the Control Center brightness or volume OSD appears, the OSD percentage value will not show or update.&lt;/p&gt; 
&lt;h3&gt;Supported displays&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Most modern LCD displays from all major manufacturers supported implemented DDC/CI protocol via USB-C, DisplayPort, HDMI, DVI or VGA to allow for hardware backlight and volume control.&lt;/li&gt; 
 &lt;li&gt;Apple displays and built-in displays are supported using native protocols.&lt;/li&gt; 
 &lt;li&gt;LCD and LED Televisions usually do not implement DDC, these are supported using software alternatives to dim the image.&lt;/li&gt; 
 &lt;li&gt;DisplayLink, Airplay, Sidecar and other virtual screens are supported via shade (overlay) control.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;Notable exceptions for hardware control compatibility:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;DDC control using the built-in HDMI port of the 2018 Intel Mac mini, the built-in HDMI port of all M1 Macs (MacBook Pro 14&quot; and 16&quot;, Mac Mini, Mac Studio) and the built-in HDMI port of the entry level M2 Mac mini are not supported. Use USB-C instead or get &lt;a href=&quot;https://betterdisplay.pro&quot;&gt;BetterDisplay&lt;/a&gt; for full DDC control over HDMI with these Macs as well for free. Software-only dimming is still available for these connections.&lt;/li&gt; 
 &lt;li&gt;Some displays (notably EIZO) use MCCS over USB or an entirely custom protocol for control. These displays are supported with software dimming only.&lt;/li&gt; 
 &lt;li&gt;DisplayLink docks and dongles do not allow for DDC control on Macs, only software dimming is available for these connections.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Contributing to the project&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;If you want, you can fork the code, make improvements and submit a pull request to improve the app. Accepting a PR is solely in the hands of the maintainer - before making fundamental changes expecting it to be accepted, please consult the maintainer of the project!&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;How to build&lt;/h2&gt; 
&lt;h3&gt;Required&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Xcode&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/realm/SwiftLint&quot;&gt;Swiftlint&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nicklockwood/SwiftFormat&quot;&gt;SwiftFormat&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Flinesoft/BartyCrouch&quot;&gt;BartyCrouch&lt;/a&gt; (for updating localizations)&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Build steps&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Clone the project via this Terminal command:&lt;/li&gt; 
&lt;/ul&gt; 
&lt;pre&gt;&lt;code class=&quot;language-sh&quot;&gt;git clone https://github.com/MonitorControl/MonitorControl.git
&lt;/code&gt;&lt;/pre&gt; 
&lt;ul&gt; 
 &lt;li&gt;If you want to clone one of the branches, add &lt;code&gt;--single-branch --branch [branchname]&lt;/code&gt; after the &lt;code&gt;clone&lt;/code&gt; option.&lt;/li&gt; 
 &lt;li&gt;You&#39;re all set! Now open the &lt;code&gt;MonitorControl.xcodeproj&lt;/code&gt; with Xcode! The dependencies will automatically get downloaded once you open the project. If they don&#39;t: &lt;code&gt;File &amp;gt; Packages &amp;gt; Resolve Package Versions&lt;/code&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Third party dependencies&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/MonitorControl/MediaKeyTap&quot;&gt;MediaKeyTap&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sindresorhus/Settings&quot;&gt;Settings&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rnine/SimplyCoreAudio&quot;&gt;SimplyCoreAudio&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sindresorhus/KeyboardShortcuts&quot;&gt;KeyboardShortcuts&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sparkle-project/Sparkle&quot;&gt;Sparkle&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Credits&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/waydabber&quot;&gt;@waydabber&lt;/a&gt;, maintainer, developer of &lt;a href=&quot;https://github.com/waydabber/BetterDisplay#readme&quot;&gt;BetterDisplay&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/the0neyouseek&quot;&gt;@the0neyouseek&lt;/a&gt; - honorary maintainer&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/JoniVR&quot;&gt;@JoniVR&lt;/a&gt; - honorary maintainer&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/alin23&quot;&gt;@alin23&lt;/a&gt; - spearheaded M1 DDC support, developer of &lt;a href=&quot;https://lunar.fyi&quot;&gt;Lunar&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mathew-kurian/&quot;&gt;@mathew-kurian&lt;/a&gt; (original developer)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Tyilo/&quot;&gt;@Tyilo&lt;/a&gt; (fork)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Bensge/&quot;&gt;@Bensge&lt;/a&gt; - (used some code from his project &lt;a href=&quot;https://github.com/Bensge/NativeDisplayBrightness&quot;&gt;NativeDisplayBrightness&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nhurden/&quot;&gt;@nhurden&lt;/a&gt; (for the original MediaKeyTap)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/kfix/ddcctl&quot;&gt;@kfix&lt;/a&gt; (for ddcctl)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/reitermarkus&quot;&gt;@reitermarkus&lt;/a&gt; (for Intel DDC support)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.deviantart.com/javierocasio&quot;&gt;javierocasio&lt;/a&gt; (app icon background)&lt;/li&gt; 
&lt;/ul&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/a6c2bd82579e7b07ae78b316a42d9c597d6ba90614ff9d8c4c55f8e07ff9bdda/MonitorControl/MonitorControl" medium="image" />
      
    </item>
    
    <item>
      <title>FluidInference/FluidAudio</title>
      <link>https://github.com/FluidInference/FluidAudio</link>
      <description>&lt;p&gt;Frontier CoreML audio models in your apps — text-to-speech, speech-to-text, voice activity detection, and speaker diarization. In Swift, powered by SOTA open source.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/banner.png&quot; alt=&quot;banner.png&quot; /&gt;&lt;/p&gt; 
&lt;h1&gt;FluidAudio - Transcription, Text-to-speech, VAD, Speaker diarization with CoreML Models&lt;/h1&gt; 
&lt;p&gt;&lt;a href=&quot;https://swift.org&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Swift-6.0+-orange.svg?sanitize=true&quot; alt=&quot;Swift&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://developer.apple.com&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Platform-macOS%20%7C%20iOS-blue.svg?sanitize=true&quot; alt=&quot;Platform&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://docs.fluidinference.com/introduction&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Documentation-docs.fluidinference.com-008574.svg?sanitize=true&quot; alt=&quot;Documentation&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://discord.gg/WNsvaCtmDe&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Discord-Join%20Chat-7289da.svg?sanitize=true&quot; alt=&quot;Discord&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://huggingface.co/FluidInference&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Hugging%20Face%20Models-500k%2B%20Monthly%20Downloads-brightgreen?logo=huggingface&quot; alt=&quot;Hugging Face Models&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;https://deepwiki.com/FluidInference/FluidAudio&quot;&gt;&lt;img src=&quot;https://deepwiki.com/badge.svg?sanitize=true&quot; alt=&quot;Ask DeepWiki&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;FluidAudio is a Swift SDK for fully local, low-latency audio AI on Apple devices, with inference offloaded to the Apple Neural Engine (ANE), resulting in less memory and generally faster inference.&lt;/p&gt; 
&lt;p&gt;The SDK includes state-of-the-art speaker diarization, transcription, and voice activity detection via open-source models (MIT/Apache 2.0) that can be integrated with just a few lines of code. Models are optimized for background processing, ambient computing and always on workloads by running inference on the ANE, minimizing CPU usage and avoiding GPU/MPS entirely.&lt;/p&gt; 
&lt;p&gt;For custom use cases, feedback, additional model support, or platform requests, join our &lt;a href=&quot;https://discord.gg/WNsvaCtmDe&quot;&gt;Discord&lt;/a&gt;. We&#39;re also bringing visual, language, and TTS models to device and will share updates there.&lt;/p&gt; 
&lt;p&gt;Below are some featured local AI apps using Fluid Audio models on macOS and iOS:&lt;/p&gt; 
&lt;p align=&quot;left&quot;&gt; &lt;a href=&quot;https://github.com/Beingpax/VoiceInk/&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/assets/voiceink.png&quot; height=&quot;40&quot; alt=&quot;Voice Ink&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://spokenly.app/&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/assets/spokenly.png&quot; height=&quot;40&quot; alt=&quot;Spokenly&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://slipbox.ai/&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/assets/slipbox.png&quot; height=&quot;40&quot; alt=&quot;Slipbox&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://hex.kitlangton.com/&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/assets/hex.png&quot; height=&quot;40&quot; alt=&quot;Hex&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://boltai.com/&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/assets/boltai.png&quot; height=&quot;40&quot; alt=&quot;BoltAI&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://paraspeech.com&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/assets/paraspeech.png&quot; height=&quot;40&quot; alt=&quot;Paraspeech&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://altic.dev/fluid&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/assets/fluidvoice.png&quot; height=&quot;40&quot; alt=&quot;Fluid Voice&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://snaply.ai&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/assets/snaply.png&quot; height=&quot;40&quot; alt=&quot;Snaply&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/yazinsai/OpenOats&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/assets/openoats.png&quot; height=&quot;40&quot; alt=&quot;OpenOats&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://talat.app&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/assets/talat.png&quot; height=&quot;40&quot; alt=&quot;Talat&quot; /&gt;&lt;/a&gt; 
 &lt;!-- Add your app: submit logo via PR. The Fluid Inference team works to curate this and add new apps to the showcase section, please do not add to this section if you&#39;re adding the app to the showcase section, but including a logo in your PR will help us when we update this section! We appreciate your patience. --&gt; &lt;/p&gt; 
&lt;p&gt;Want to convert your own model? Check &lt;a href=&quot;https://github.com/FluidInference/mobius&quot;&gt;möbius&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;Highlights&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Automatic Speech Recognition (ASR)&lt;/strong&gt;: &lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/Models.md#batch-transcription-near-real-time&quot;&gt;Parakeet TDT v3&lt;/a&gt; (0.6b) and other TDT/CTC models for batch transcription supporting 25 European languages and Japanese, plus SenseVoice and Paraformer for Mandarin Chinese; &lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/Models.md#streaming-transcription-true-real-time&quot;&gt;Parakeet EOU&lt;/a&gt; (120m) for streaming ASR with end-of-utterance detection (English only). See all &lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/Models.md#asr-models&quot;&gt;ASR models&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Inverse Text Normalization (ITN)&lt;/strong&gt;: Post-process ASR output to convert spoken-form to written-form (&quot;two hundred&quot; → &quot;200&quot;). See &lt;a href=&quot;https://github.com/FluidInference/text-processing-rs&quot;&gt;text-processing-rs&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Text-to-Speech (TTS)&lt;/strong&gt;: Kokoro (82m) for parallel synthesis with SSML and pronunciation control across 9 languages (EN, ES, FR, HI, IT, JA, PT, ZH); PocketTTS for streaming TTS with voice cloning support (EN, DE, ES, FR, IT, PT — 6L and 24L variants)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Speaker Diarization (Online + Offline)&lt;/strong&gt;: Speaker separation and identification across audio streams. Streaming pipeline for real-time processing and offline batch pipeline with advanced clustering.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Speaker Embedding Extraction&lt;/strong&gt;: Generate speaker embeddings for voice comparison and clustering, you can use this for speaker identification&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Voice Activity Detection (VAD)&lt;/strong&gt;: Voice activity detection with Silero models&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Apple Neural Engine&lt;/strong&gt;: Models run efficiently on Apple&#39;s ANE for maximum performance with minimal power consumption&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Open-Source Models&lt;/strong&gt;: All models are publicly available on HuggingFace — converted and optimized by our team; permissive licenses. See &lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/Models.md&quot;&gt;full model catalog&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Video Demos&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Link&lt;/th&gt; 
   &lt;th&gt;Description&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=9fXKKkyL8JE&quot;&gt;Spokenly Real-time ASR&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Video demonstration of FluidAudio&#39;s transcription accuracy and speed&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://x.com/hamza_q_/status/1970228971657928995&quot;&gt;Senko Integration&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Python Speaker diarization on Mac using FluidAudio&#39;s segmentation model&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://x.com/sach1n/status/1977817056507793521&quot;&gt;Kokoro TTS&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Text-to-speech demo using FluidAudio&#39;s Kokoro and Silero models on iOS&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://x.com/sach1n/status/2003210626659680762&quot;&gt;Parakeet Realtime EOU&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Parakeet streaming ASR with end-of-utterance detection on iOS&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://x.com/Alex_tra_memory/status/2010530705667661843&quot;&gt;Sortformer Diarization&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Sortformer for speaker diarization with overlapping speech on iOS&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://x.com/sach1n/status/2017627657006158296&quot;&gt;PocketTTS&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Streaming text-to-speech using PocketTTS on iOS&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://x.com/y_earu/status/2038654262608064967&quot;&gt;Parakeet EOU Ultra-Low Latency&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Real-time Parakeet EOU transcription on iOS demonstrating ultra-low latency speech-to-text&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=ykcvdTHHmrk&quot;&gt;Action Phrase Live Production Control&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Voice-controlled live production workflow using FluidAudio&#39;s ASR and speaker diarization to trigger cameras, graphics, and layouts with natural voice commands&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=OjP4Adrv9_E&quot;&gt;talat - VAD, ASR, Speaker ID&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;A video demo showcasing FluidAudio&#39;s VAD, two different ASR models, and speaker diarization during a talat.app meeting recording&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://x.com/sach1n/status/2051375097408360596&quot;&gt;Kyutai PocketTTS on ANE&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Kyutai labs PocketTTS in iOS running fast on the ANE &amp;amp; background-capable&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://x.com/sach1n/status/2056476851825250685&quot;&gt;Supertonic-3 on iPhone 17 Pro ANE&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Supertonic-3 running on iPhone 17 Pro via ANE/CoreML with 2 minutes of audio generated in 3 seconds with low RAM &amp;amp; background support&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h2&gt;Showcase&lt;/h2&gt; 
&lt;p&gt;Make a PR if you want to add your app, please keep it in chronological order.&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;App&lt;/th&gt; 
   &lt;th&gt;Description&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://tryvoiceink.com/&quot;&gt;Voice Ink&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Local AI for instant, private transcription with near-perfect accuracy. Uses Parakeet ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://spokenly.app/&quot;&gt;Spokenly&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Mac dictation app for fast, accurate voice-to-text; supports real-time dictation and file transcription. Uses Parakeet ASR and speaker diarization.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/narcotic-sh/senko&quot;&gt;Senko&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;A very fast and accurate speaker diarization pipeline. A &lt;a href=&quot;https://github.com/narcotic-sh/senko/commit/51dbd8bde764c3c6648dbbae57d6aff66c5ca15c&quot;&gt;good example&lt;/a&gt; for how to integrate FluidAudio into a Python app&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://slipbox.ai/&quot;&gt;Slipbox&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Privacy-first meeting assistant for real-time conversation intelligence. Uses Parakeet ASR (iOS) and speaker diarization across platforms.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://whisper.marksdo.com&quot;&gt;Whisper Mate&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Transcribes movies and audio locally; records and transcribes in real time from speakers or system apps. Uses speaker diarization.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/altic-dev/Fluid-oss&quot;&gt;Altic/Fluid Voice&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Lightweight Fully free and Open Source Voice to Text dictation for macOS built using FluidAudio. Never pay for dictation apps&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://paraspeech.com&quot;&gt;Paraspeech&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;AI powered voice to text. Fully offline. No subscriptions.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/anvanvan/mac-whisper-speedtest&quot;&gt;mac-whisper-speedtest&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Comparison of different local ASR, including one of the first versions of FluidAudio&#39;s ASR models&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/Ryandonofrio3/Starling&quot;&gt;Starling&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Open Source, fully local voice-to-text transcription with auto-paste at your cursor.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://boltai.com/&quot;&gt;BoltAI&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Write content 10x faster using parakeet models&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://www.voxeoflow.app&quot;&gt;Voxeoflow&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Mac dictation app with real-time translation. Lightning-fast transcription in over 100 languages, instantly translated to your target language.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://speakmac.app&quot;&gt;Speakmac&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Mac app that lets you type anywhere on your Mac using your voice. Fully local, private dictation built on FluidAudio.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/Steven-Weng/SamScribe&quot;&gt;SamScribe&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;An open-source macOS app that captures and transcribes audio from your microphone and meeting applications (Zoom, Teams, Chrome) in real-time, with cross-session speaker recognition.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://whiskey.asktobuild.app/&quot;&gt;WhisKey&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Privacy-first voice dictation keyboard for iOS and macOS. On-device transcription with 12+ languages, AI meeting summaries, and mindmap generation. Great for daily use and vibe-coding. Uses speaker diarization.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/hoomanaskari/mac-dictate-anywhere&quot;&gt;Dictate Anywhere&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Native macOS dictation app with global Fn key activation. Dictate into any app with 25 language support. Uses Parakeet ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/hongbo-miao/hongbomiao.com&quot;&gt;hongbomiao.com&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;A personal R&amp;amp;D lab that facilitates knowledge sharing. Uses Parakeet ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/kitlangton/Hex&quot;&gt;Hex&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;macOS app that lets you press-and-hold a hotkey to record your voice, transcribe it, and paste into any application. Uses Parakeet ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/ykdojo/super-voice-assistant&quot;&gt;Super Voice Assistant&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Open-source macOS voice assistant with local transcription. Uses Parakeet ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/moinulmoin/voicetypr&quot;&gt;VoiceTypr&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Open-source voice-to-text dictation for macOS and Windows. Uses Parakeet ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://summitnotes.app/&quot;&gt;Summit AI Notes&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Local meeting transcription and summarization with speaker identification. Supports 100+ languages.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://futurelab.studio/ora&quot;&gt;Ora&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Local voice assistant for macOS with speech recognition and text-to-speech.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://flowstay.app&quot;&gt;Flowstay&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Easy text-to-speech, local post-processing and Claude Code integration for macOS. Free forever.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/dokterbob/macos-speech-server&quot;&gt;macos-speech-server&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Wyoming (Home Assistant) and OpenAI compatible STT/transcription and TTS/speech API server.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://snaply.ai&quot;&gt;Snaply&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Free, Fast, 100% local AI dictation for Mac.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/yazinsai/OpenOats&quot;&gt;OpenOats&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Open-source meeting note-taker that transcribes conversations in real time and surfaces relevant notes from your knowledge base. Uses FluidAudio for local transcription.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://enconvo.com&quot;&gt;Enconvo&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;AI Agent Launcher for macOS with voice input, live captions, and text-to-speech. Uses Parakeet ASR for local speech recognition.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/pasrom/meeting-transcriber&quot;&gt;Meeting Transcriber&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;macOS menu bar app that auto-detects, records, and transcribes meetings (Teams, Zoom, Webex) with dual-track speaker diarization. Uses Parakeet ASR and speaker diarization.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://hitoku.me/draft&quot;&gt;Hitoku Draft&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;A local, private, voice writing assistant on your macOS menu bar. Uses Parakeet ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/zachatrocity/audite&quot;&gt;Audite&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;macOS menu-bar app that records meetings and transcribes them locally into Markdown notes for Obsidian. Uses Parakeet ASR via FluidAudio on the Apple Neural Engine.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/pHequals7/muesli&quot;&gt;Muesli&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Native macOS dictation and meeting transcription with ~0.13s latency. Captures microphone and system audio with automatic speaker diarization. Uses Parakeet TDT ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://apps.apple.com/kz/app/nanovoice/id6760539688&quot;&gt;NanoVoice&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Free iOS voice keyboard for fast, private dictation in any app. Uses Parakeet ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/andyhtran/MiniWhisper&quot;&gt;MiniWhisper&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Open-source macOS menu bar for quick local voice-to-text with minimal setup. Pick a shortcut, start talking. Uses Parakeet ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://talat.app&quot;&gt;Talat&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Privacy-focused AI meeting notes app. Records and transcribes meetings locally on your Mac with speaker identification and LLM-powered summaries. Featured in &lt;a href=&quot;https://techcrunch.com/2026/03/24/talats-ai-meeting-notes-stay-on-your-machine-not-in-the-cloud/&quot;&gt;TechCrunch&lt;/a&gt;. Uses Parakeet ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/fikrikarim/volocal&quot;&gt;Volocal&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Fully local voice AI on iOS. Uses streaming Parakeet EOU ASR and streaming PocketTTS.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/n0an/VivaDicta&quot;&gt;VivaDicta&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Open-source iOS voice-to-text app with system-wide AI voice keyboard — dictate and AI-process text in any app. 15+ AI providers, 40+ AI presets. Uses Parakeet ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://mimicscribe.app/&quot;&gt;MimicScribe&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;macOS menu bar app combining Parakeet TDT streaming ASR, PyanNote Community 1 speaker diarization, and cloud LLMs to provide AI-generated talking points during meetings, derived from the live transcript and user-provided instructions. Features meeting summarization, natural language search, an MCP server for agent integration, and a keyboard- and voice-forward UI.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://actionphrase.com/&quot;&gt;Action Phrase&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Voice-controlled live production app for iOS, iPadOS, and macOS. Control cameras, graphics, layouts, and production workflows with natural voice commands. Integrates with popular tools including OBS, vMix, ProPresenter, Bitfocus Companion, and more. Uses Parakeet TDT ASR and Sortformer diarization.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/stanlsv/sayboard&quot;&gt;Sayboard&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Privacy-first AI voice keyboard for iOS. Local models, no servers, no tracking, no subscriptions, no ads, no in-app purchases. Fully offline and open-source.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/drakulavich/kesha-voice-kit&quot;&gt;Kesha Voice Kit&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Local-first voice toolkit for CLI and LLM-agent workflows. Provides speech-to-text in 25 languages, text-to-speech, VAD, language detection, OpenClaw and MCP integrations, with FluidAudio powering Apple Silicon ASR and Kokoro TTS.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://dicta.to&quot;&gt;Dictato&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Turn your voice into text anywhere on your Mac. Fully local, private, and offline — boost your own vocabulary and dictate in multiple languages. Uses Parakeet TDT ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/joepetrakovich/utter&quot;&gt;Utter&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;An ultra-minimal speech-to-text status bar utility for Mac. Register a hotkey and go.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://onresonant.com&quot;&gt;Resonant&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;macOS voice workspace for dictation, meetings, and ambient work context. Uses FluidAudio for local transcription and speaker diarization.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://thoth-app.com&quot;&gt;Thoth&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Privacy-first meeting recorder for Mac. Records both sides of any call with dual-channel audio, transcribes locally with speaker diarization, and summarizes with on-device AI or BYOK cloud. Available on the Mac App Store. Featured in &lt;a href=&quot;https://www.macg.co/logiciels/2026/05/thoth-une-nouvelle-app-de-transcription-axee-sur-les-reunions-et-le-temps-reel-308471&quot;&gt;MacGeneration&lt;/a&gt;. Uses Parakeet EOU and Parakeet TDT ASR.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://dettivo.com&quot;&gt;Dettivo&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Local-first Mac app for private dictation, transcripts, and meeting workflows in one place, with developer tooling across CLI, MCP, REST, and app automation. Uses FluidAudio Parakeet TDT ASR and offline speaker diarization.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://parleq.app/&quot;&gt;Parleq&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Privacy-first macOS dictation — press a hotkey, speak, paste cleaned-up text. On-device Parakeet TDT v3 ASR with CTC vocabulary boosting (audio never leaves the Mac), provider-pluggable LLM cleanup (Gemini/Vertex, Bedrock, Azure), and reference windows that bring on-screen context into the cleanup. Open source.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://www.localnarrator.app/&quot;&gt;Local Narrator&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Privacy-first iOS audiobook reader that reads EPUB and PDF books aloud with on-device text-to-speech. Uses FluidAudio Kokoro TTS for local English and Spanish narration.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://hedy.ai&quot;&gt;Hedy&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Privacy-first AI meeting coach for iOS, macOS, Android, and Windows. Real-time, fully on-device transcription with speaker diarization and AI-powered conversation insights. Uses Parakeet and Nemotron streaming ASR and speaker diarization on the Apple Neural Engine.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/rcourtman/parakey&quot;&gt;Parakey&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Open-source (MIT) menu-bar push-to-talk dictation for macOS — hold a key, speak, release; the transcript pastes at the cursor in about 100 ms. Uses Parakeet TDT v3 ASR on the Apple Neural Engine via FluidAudio.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://www.typewhisper.com/&quot;&gt;TypeWhisper&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Speech-to-text and AI text processing for macOS. Uses FluidAudio&#39;s Parakeet ASR for local transcription.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://evoglyph.com&quot;&gt;evoglyph&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Lightweight, privacy-first macOS menu-bar dictation — press a hotkey, speak, and cleaned-up text is injected at your cursor. Fully local: Parakeet TDT ASR with CTC vocabulary boosting and Silero VAD via FluidAudio on the Apple Neural Engine, plus on-device LLM cleanup. Audio never leaves the Mac.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://www.echo99.app&quot;&gt;echo99&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Private call recorder for macOS. Menu-bar app that records the mic and system audio as separate tracks and transcribes them entirely on-device.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/rcourtman/presspeech&quot;&gt;Presspeech&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Open-source (MIT) menu-bar push-to-talk dictation for macOS — hold a key, speak, release; the transcript pastes at the cursor in about 100 ms. Uses Parakeet TDT v3 ASR on the Apple Neural Engine via FluidAudio.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://voice.baselinemakes.com&quot;&gt;Better Voice&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;macOS menu-bar app for on-device dictation and meeting notes that save to Apple Notes. Everything runs locally. Uses speaker diarization.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/bitwize-ai/Logue&quot;&gt;Logue&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Privacy-first AI meeting notes and writing assistant for macOS. Records mic + system audio and transcribes locally on Apple Silicon, with speaker diarization, Smart Minutes, and an on-device AI writing editor — nothing leaves the Mac. Uses FluidAudio streaming Sortformer speaker diarization.&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h2&gt;Installation&lt;/h2&gt; 
&lt;p&gt;Add FluidAudio to your project using Swift Package Manager:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;dependencies: [
    .package(url: &quot;https://github.com/FluidInference/FluidAudio.git&quot;, from: &quot;0.12.4&quot;),
],
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;&lt;strong&gt;In Xcode:&lt;/strong&gt;&lt;/p&gt; 
&lt;ol&gt; 
 &lt;li&gt;Add the FluidAudio package to your project&lt;/li&gt; 
 &lt;li&gt;In the &quot;Add Package&quot; dialog, select &lt;code&gt;FluidAudio&lt;/code&gt;&lt;/li&gt; 
 &lt;li&gt;Add it to your app target&lt;/li&gt; 
&lt;/ol&gt; 
&lt;p&gt;&lt;strong&gt;In Package.swift:&lt;/strong&gt;&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;.product(name: &quot;FluidAudio&quot;, package: &quot;FluidAudio&quot;)
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;&lt;strong&gt;CocoaPods:&lt;/strong&gt; We recommend using &lt;a href=&quot;https://github.com/trinhngocthuyen/cocoapods-spm&quot;&gt;cocoapods-spm&lt;/a&gt; for better SPM integration, but if needed, you can also use our podspec: &lt;code&gt;pod &#39;FluidAudio&#39;, &#39;~&amp;gt; 0.12.4&#39;&lt;/code&gt;&lt;/p&gt; 
&lt;h3&gt;Other Frameworks&lt;/h3&gt; 
&lt;p&gt;Building with a different framework? Use one of our official wrappers:&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Platform&lt;/th&gt; 
   &lt;th&gt;Package&lt;/th&gt; 
   &lt;th&gt;Install&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;React Native / Expo&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/FluidInference/react-native-fluidaudio&quot;&gt;@fluidinference/react-native-fluidaudio&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;npm install @fluidinference/react-native-fluidaudio&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;Rust / Tauri&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/FluidInference/fluidaudio-rs&quot;&gt;fluidaudio-rs&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;cargo add fluidaudio-rs&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h3&gt;Post-Processing Tools&lt;/h3&gt; 
&lt;p&gt;Enhance ASR output with post-processing:&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Tool&lt;/th&gt; 
   &lt;th&gt;Description&lt;/th&gt; 
   &lt;th&gt;Language&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;&lt;a href=&quot;https://github.com/FluidInference/text-processing-rs&quot;&gt;text-processing-rs&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Inverse Text Normalization (ITN) and Text Normalization (TN) across 7 languages (EN, DE, ES, FR, HI, JA, ZH). 100% NeMo test compatibility (3,011 tests). Converts spoken-form ASR output to written form (&quot;two hundred&quot; → &quot;200&quot;, &quot;five dollars&quot; → &quot;$5&quot;). Rust port of &lt;a href=&quot;https://github.com/NVIDIA/NeMo-text-processing&quot;&gt;NVIDIA NeMo Text Processing&lt;/a&gt; with Swift wrapper.&lt;/td&gt; 
   &lt;td&gt;Rust, Swift&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h2&gt;Configuration&lt;/h2&gt; 
&lt;h3&gt;Quick Reference&lt;/h3&gt; 
&lt;p&gt;Both solve the same problem: &lt;strong&gt;&quot;I can&#39;t reach HuggingFace directly.&quot;&lt;/strong&gt; They&#39;re alternative approaches - pick whichever matches your setup:&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Scenario&lt;/th&gt; 
   &lt;th&gt;Solution&lt;/th&gt; 
   &lt;th&gt;Configuration&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;You have a &lt;strong&gt;local mirror or internal model server&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Use Registry URL override&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;REGISTRY_URL=https://your-mirror.com&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;You&#39;re &lt;strong&gt;behind a corporate firewall&lt;/strong&gt; with a proxy that can reach HuggingFace&lt;/td&gt; 
   &lt;td&gt;Use Proxy configuration&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;https_proxy=http://proxy.company.com:8080&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;p&gt;&lt;strong&gt;How they work:&lt;/strong&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Registry URL&lt;/strong&gt; - App requests from &lt;code&gt;your-mirror.com&lt;/code&gt; instead of &lt;code&gt;huggingface.co&lt;/code&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Proxy&lt;/strong&gt; - App still requests &lt;code&gt;huggingface.co&lt;/code&gt;, but traffic routes through proxy to reach it&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;In most cases, you only need one. (You&#39;d use both only if your mirror is behind the proxy and unreachable without it.)&lt;/p&gt; 
&lt;details&gt; 
 &lt;summary&gt;&lt;b&gt;Model Registry URL&lt;/b&gt; - Change download destination&lt;/summary&gt; 
 &lt;p&gt;By default, FluidAudio downloads models from HuggingFace. You can override this to use a mirror, local server, or air-gapped environment.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Programmatic override (recommended for apps):&lt;/strong&gt;&lt;/p&gt; 
 &lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;import FluidAudio

// Set custom registry before using any managers
ModelRegistry.baseURL = &quot;https://your-mirror.example.com&quot;

// Models will now download from the custom registry
let diarizer = DiarizerManager()
&lt;/code&gt;&lt;/pre&gt; 
 &lt;p&gt;&lt;strong&gt;Environment Variables (recommended for CLI/testing):&lt;/strong&gt;&lt;/p&gt; 
 &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# Use custom registry
export REGISTRY_URL=https://your-mirror.example.com
swift run fluidaudiocli transcribe audio.wav

# Or use the MODEL_REGISTRY_URL alias
export MODEL_REGISTRY_URL=https://models.internal.corp
swift run fluidaudiocli diarization-benchmark --auto-download
&lt;/code&gt;&lt;/pre&gt; 
 &lt;p&gt;&lt;strong&gt;Xcode Scheme Configuration:&lt;/strong&gt;&lt;/p&gt; 
 &lt;ol&gt; 
  &lt;li&gt;Edit Scheme → Run → Arguments&lt;/li&gt; 
  &lt;li&gt;Go to &lt;strong&gt;Environment Variables&lt;/strong&gt; tab&lt;/li&gt; 
  &lt;li&gt;Click &lt;code&gt;+&lt;/code&gt; and add: &lt;code&gt;REGISTRY_URL&lt;/code&gt; = &lt;code&gt;https://your-mirror.example.com&lt;/code&gt;&lt;/li&gt; 
  &lt;li&gt;The custom registry will apply to all debug runs&lt;/li&gt; 
 &lt;/ol&gt; 
&lt;/details&gt; 
&lt;details&gt; 
 &lt;summary&gt;&lt;b&gt;Proxy Configuration&lt;/b&gt; - Route downloads through a proxy server&lt;/summary&gt; 
 &lt;p&gt;If you&#39;re behind a corporate firewall and cannot reach HuggingFace (or your registry) directly, configure a proxy to forward requests:&lt;/p&gt; 
 &lt;p&gt;Set the &lt;code&gt;https_proxy&lt;/code&gt; environment variable:&lt;/p&gt; 
 &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;export https_proxy=http://proxy.company.com:8080
# or for authenticated proxies:
export https_proxy=http://user:password@proxy.company.com:8080

swift run fluidaudiocli transcribe audio.wav
&lt;/code&gt;&lt;/pre&gt; 
 &lt;p&gt;&lt;strong&gt;Xcode Scheme Configuration for Proxy:&lt;/strong&gt;&lt;/p&gt; 
 &lt;ol&gt; 
  &lt;li&gt;Edit Scheme → Run → Arguments&lt;/li&gt; 
  &lt;li&gt;Go to &lt;strong&gt;Environment Variables&lt;/strong&gt; tab&lt;/li&gt; 
  &lt;li&gt;Click &lt;code&gt;+&lt;/code&gt; and add: &lt;code&gt;https_proxy&lt;/code&gt; = &lt;code&gt;http://proxy.company.com:8080&lt;/code&gt;&lt;/li&gt; 
  &lt;li&gt;FluidAudio will automatically route downloads through the proxy&lt;/li&gt; 
 &lt;/ol&gt; 
&lt;/details&gt; 
&lt;details&gt; 
 &lt;summary&gt;&lt;b&gt;Offline-only mode&lt;/b&gt; - Refuse every network fetch, bundle your own models&lt;/summary&gt; 
 &lt;p&gt;If your application ships pre-downloaded model assets and never wants FluidAudio to reach HuggingFace at runtime (privacy-sensitive desktop apps, air-gapped deployments, kiosk builds), set the static &lt;code&gt;ModelHub.offlineMode&lt;/code&gt; flag at startup:&lt;/p&gt; 
 &lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;import FluidAudio

// Set once before any FluidAudio loader runs.
ModelHub.offlineMode = true

// Load via manual APIs that read from your bundled directory:
let asr = try await AsrModels.load(from: bundledModelURL, configuration: config)
&lt;/code&gt;&lt;/pre&gt; 
 &lt;p&gt;When the flag is on:&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;&lt;code&gt;fetchWithAuth&lt;/code&gt;, &lt;code&gt;download&lt;/code&gt;, and &lt;code&gt;fetchFile&lt;/code&gt; throw &lt;code&gt;DownloadError.networkDisabled(operation:)&lt;/code&gt; instead of touching the network.&lt;/li&gt; 
  &lt;li&gt;&lt;code&gt;loadModels&lt;/code&gt; short-circuits its retry-with-redownload fallback so a corrupt-detected &lt;code&gt;.mlmodelc&lt;/code&gt; surfaces the original load error instead of silently re-fetching.&lt;/li&gt; 
  &lt;li&gt;If &lt;code&gt;loadModels&lt;/code&gt; is invoked but required files are missing from the local directory, &lt;code&gt;DownloadError.modelMissing(repo:missing:)&lt;/code&gt; is thrown with the missing file list so the caller can ship a fix.&lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;p&gt;The default is &lt;code&gt;false&lt;/code&gt; — no behaviour change for existing callers. Combine with a custom &lt;code&gt;ModelRegistry.baseURL&lt;/code&gt; only if you want offline-mode + a typed offline error rather than relying on a mirror URL.&lt;/p&gt; 
&lt;/details&gt; 
&lt;h2&gt;Documentation&lt;/h2&gt; 
&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://deepwiki.com/FluidInference/FluidAudio&quot;&gt;DeepWiki&lt;/a&gt;&lt;/strong&gt; for auto-generated docs for this repo.&lt;/p&gt; 
&lt;h3&gt;Documentation Index&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Guides 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/Guides/AudioConversion.md&quot;&gt;Audio Conversion for Inference&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;Manual model download &amp;amp; loading options: &lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/ASR/ManualModelLoading.md&quot;&gt;ASR&lt;/a&gt;, &lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/Diarization/GettingStarted.md#manual-model-loading&quot;&gt;Diarizer&lt;/a&gt;, &lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/VAD/GettingStarted.md#manual-model-loading&quot;&gt;VAD&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;Routing Hugging Face (or compatible) requests through a proxy? Set &lt;code&gt;https_proxy&lt;/code&gt; before running the download helpers (see &lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/API.md:9&quot;&gt;Documentation/API.md&lt;/a&gt;).&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;Models 
  &lt;ul&gt; 
   &lt;li&gt;Automatic Speech Recognition/Transcription 
    &lt;ul&gt; 
     &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/ASR/GettingStarted.md&quot;&gt;Getting Started&lt;/a&gt;&lt;/li&gt; 
     &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/ASR/LastChunkHandling.md&quot;&gt;Last Chunk Handling&lt;/a&gt;&lt;/li&gt; 
    &lt;/ul&gt; &lt;/li&gt; 
   &lt;li&gt;Speaker Diarization 
    &lt;ul&gt; 
     &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/Diarization/GettingStarted.md&quot;&gt;Speaker Diarization Guide&lt;/a&gt;&lt;/li&gt; 
    &lt;/ul&gt; &lt;/li&gt; 
   &lt;li&gt;VAD: &lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/VAD/GettingStarted.md&quot;&gt;Getting Started&lt;/a&gt; 
    &lt;ul&gt; 
     &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/VAD/Segmentation.md&quot;&gt;Segmentation&lt;/a&gt;&lt;/li&gt; 
     &lt;li&gt;&lt;a href=&quot;https://github.com/FluidInference/mobius&quot;&gt;Model Conversion Code&lt;/a&gt;&lt;/li&gt; 
    &lt;/ul&gt; &lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/Benchmarks.md&quot;&gt;Benchmarks&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/API.md&quot;&gt;API Reference&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/CLI.md&quot;&gt;Command Line Guide&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;MCP Server&lt;/h3&gt; 
&lt;p&gt;The repo is indexed by DeepWiki MCP server, so your coding tool can access the docs:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-json&quot;&gt;{
  &quot;mcpServers&quot;: {
    &quot;deepwiki&quot;: {
      &quot;url&quot;: &quot;https://mcp.deepwiki.com/mcp&quot;
    }
  }
}
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;For claude code:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;claude mcp add -s user -t http deepwiki https://mcp.deepwiki.com/mcp
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Automatic Speech Recognition (ASR) / Transcription&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Models&lt;/strong&gt;: 
  &lt;ul&gt; 
   &lt;li&gt;&lt;code&gt;FluidInference/parakeet-tdt-0.6b-v3-coreml&lt;/code&gt; (multilingual, 25 European languages)&lt;/li&gt; 
   &lt;li&gt;&lt;code&gt;FluidInference/parakeet-tdt-0.6b-v2-coreml&lt;/code&gt; (English-only, highest recall)&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Processing Mode&lt;/strong&gt;: Batch transcription for complete audio files&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Real-time Factor&lt;/strong&gt;: ~190x on M4 Pro (processes 1 hour of audio in ~19 seconds)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Streaming Support&lt;/strong&gt;: Real-time streaming via &lt;code&gt;SlidingWindowAsrManager&lt;/code&gt; with sliding window processing and cancellation support&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Backend&lt;/strong&gt;: Same Parakeet TDT v3 model powers our backend ASR&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;ASR Quick Start&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;import FluidAudio

// Batch transcription from an audio file
Task {
    // 1) Initialize ASR manager and load models
    let models = try await AsrModels.downloadAndLoad(version: .v3)  // Switch to .v2 for English-only work
    let asrManager = AsrManager(config: .default)
    try await asrManager.loadModels(models)

    // 3) Transcribe the audio 16hz, already converted
    let result = try await asrManager.transcribe(samples)

    // 3) Transcribe a file
    // let url = URL(fileURLWithPath: sample.audioPath)

    // 3) Transcribe AVAudioPCMBuffer
    // let result = try await asrManager.transcribe(audioBuffer)
    print(&quot;Transcription: \(result.text)&quot;)
}
&lt;/code&gt;&lt;/pre&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# Transcribe an audio file (batch)
swift run fluidaudiocli transcribe audio.wav

# English-only run with higher recall
swift run fluidaudiocli transcribe audio.wav --model-version v2
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Speaker Diarization&lt;/h2&gt; 
&lt;h3&gt;Offline Speaker Diarization Pipeline&lt;/h3&gt; 
&lt;p&gt;Pyannote Community-1 pipeline (powerset segmentation + WeSpeaker + VBx) for offline speaker diarization. Use this for most use cases, see &lt;a href=&quot;http://Benchmarks.md&quot;&gt;Benchmarks.md&lt;/a&gt; for benchmarks.&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;import FluidAudio

let config = OfflineDiarizerConfig()
let manager = OfflineDiarizerManager(config: config)
try await manager.prepareModels()  // Downloads + compiles Core ML bundles if they are missing

let samples = try AudioConverter().resampleAudioFile(path: &quot;meeting.wav&quot;)
let result = try await manager.process(audio: samples)

for segment in result.segments {
    print(&quot;\(segment.speakerId) \(segment.startTimeSeconds)s → \(segment.endTimeSeconds)s&quot;)
}
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;For processing audio files, use the file-based API which automatically uses memory-mapped streaming for efficiency:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;let url = URL(fileURLWithPath: &quot;meeting.wav&quot;)
let result = try await manager.process(url)

for segment in result.segments {
    print(&quot;\(segment.speakerId) \(segment.startTimeSeconds)s → \(segment.endTimeSeconds)s&quot;)
}
&lt;/code&gt;&lt;/pre&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# Process a meeting with full VBx clustering
swift run fluidaudiocli process ~/FluidAudioDatasets/ami_official/sdm/ES2004a.Mix-Headset.wav \
  --mode offline --threshold 0.6 --output es2004a_offline.json

# Run the AMI single-file benchmark with automatic downloads
swift run fluidaudiocli diarization-benchmark --mode offline --auto-download \
  --single-file ES2004a --threshold 0.6 --output offline_results.json
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;&lt;code&gt;offline_results.json&lt;/code&gt; contains DER/JER/RTFx along with timing breakdowns for segmentation, embedding extraction, and VBx clustering. CI now runs this workflow on every PR to ensure the offline models stay healthy and the Hugging Face assets remain accessible.&lt;/p&gt; 
&lt;h3&gt;LS-EEND (LongForm Streaming End-to-End Neural Diarization)&lt;/h3&gt; 
&lt;p&gt;End-to-end streaming diarization with CoreML inference. Default choice for online diarization — single model, no clustering pipeline, up to 10 speakers, 100ms frame updates with 900ms tentative preview. Supports both streaming and complete-buffer processing. See &lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/Diarization/GettingStarted.md&quot;&gt;Documentation/Diarization/GettingStarted.md&lt;/a&gt; for details.&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;import FluidAudio

Task {
    let diarizer = try await LSEENDDiarizer(variant: .dihard3)

    let samples = try await loadSamples16kMono(path: &quot;path/to/meeting.wav&quot;)
    let timeline = try diarizer.processComplete(samples, sourceSampleRate: 16_000)

    for speaker in timeline.speakers.values {
        for segment in speaker.finalizedSegments {
            print(&quot;Speaker \(speaker.index): \(segment.startTime)s - \(segment.endTime)s&quot;)
        }
    }
}
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;Sortformer (End-to-End Neural Diarization)&lt;/h3&gt; 
&lt;p&gt;End-to-end neural diarization using &lt;a href=&quot;https://arxiv.org/abs/2409.06656&quot;&gt;NVIDIA&#39;s Sortformer&lt;/a&gt;. Secondary streaming diarizer — trades LS-EEND&#39;s higher speaker capacity and benchmark results for better speaker identity stability. Limited to 4 speakers. No separate VAD, segmentation, or clustering needed. Licensed under NVIDIA Open Model License.&lt;/p&gt; 
&lt;p&gt;Both LS-EEND and Sortformer emit results into a &lt;code&gt;DiarizerTimeline&lt;/code&gt; with ultra-low-latency updates. See &lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/Diarization/Sortformer.md&quot;&gt;Documentation/Diarization/Sortformer.md&lt;/a&gt; for usage and comparison.&lt;/p&gt; 
&lt;h3&gt;Streaming/Online Speaker Diarization (Pyannote)&lt;/h3&gt; 
&lt;p&gt;Pyannote 3.1 pipeline (segmentation + WeSpeaker embeddings) for online/streaming diarization. This is the third choice behind LS-EEND and Sortformer. It can be useful if you specifically want the classic multi-stage pipeline, but it is much slower than LS-EEND or Sortformer for live diarization.&lt;/p&gt; 
&lt;p&gt;Why use the WeSpeaker/Pyannote pipeline:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;More modular pipeline if you want separate segmentation and embedding stages&lt;/li&gt; 
 &lt;li&gt;Better fit when you need to integrate external speaker identification or clustering logic&lt;/li&gt; 
 &lt;li&gt;Speaker pre-enrollment is reliable&lt;/li&gt; 
 &lt;li&gt;Speaker database management is much easier&lt;/li&gt; 
 &lt;li&gt;Purging or updating individual speakers is straightforward&lt;/li&gt; 
 &lt;li&gt;Not recommended when low-latency live diarization is the priority&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;In most applications:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;Use LS-EEND as the default online diarizer&lt;/li&gt; 
 &lt;li&gt;Use Sortformer as the second choice when its stronger identity stability and participant focus matter more than the 4-speaker limit&lt;/li&gt; 
 &lt;li&gt;Use the WeSpeaker/Pyannote pipeline only when you specifically need its modular design despite the speed cost&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;Tradeoffs:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;Slower in both inference time and practical latency than LS-EEND or Sortformer&lt;/li&gt; 
 &lt;li&gt;Needs larger chunks, with at least 5 seconds usually required for decent results&lt;/li&gt; 
 &lt;li&gt;Unlike LS-EEND and Sortformer, speaker state is much easier to manipulate explicitly&lt;/li&gt; 
&lt;/ul&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;import FluidAudio

// Diarize an audio file
Task {
    let models = try await DiarizerModels.downloadIfNeeded()
    let diarizer = DiarizerManager() 
    diarizer.initialize(models: models)

    // Prepare 16 kHz mono samples (see: Audio Conversion)
    let samples = try await loadSamples16kMono(path: &quot;path/to/meeting.wav&quot;)

    // Run diarization
    let result = try diarizer.performCompleteDiarization(samples)
    for segment in result.segments {
        print(&quot;Speaker \(segment.speakerId): \(segment.startTimeSeconds)s - \(segment.endTimeSeconds)s&quot;)
    }
}
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;For diarization streaming see &lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/Diarization/GettingStarted.md&quot;&gt;Documentation/Diarization/GettingStarted.md&lt;/a&gt;&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;swift run fluidaudiocli diarization-benchmark --single-file ES2004a \
  --chunk-seconds 3 --overlap-seconds 2
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;CLI&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# Process an individual file and save JSON
swift run fluidaudiocli process meeting.wav --output results.json --threshold 0.6
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Voice Activity Detection (VAD)&lt;/h2&gt; 
&lt;p&gt;Silero VAD powers our on-device detector. The latest release surfaces the same timestamp extraction and streaming heuristics as the upstream PyTorch implementation. Ping us on Discord if you need help tuning it for your environment.&lt;/p&gt; 
&lt;h3&gt;VAD Quick Start (Offline Segmentation)&lt;/h3&gt; 
&lt;p&gt;Simple call to return chunk-level probabilities every 256 ms hop:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;let results = try await manager.process(samples)
for (index, chunk) in results.enumerated() {
    print(
        String(
            format: &quot;Chunk %02d: prob=%.3f, inference=%.4fs&quot;,
            index,
            chunk.probability,
            chunk.processingTime
        )
    )
}
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;The following are higher level APIs better suited to integrate with other systems&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;import FluidAudio

Task {
    let manager = try await VadManager(
        config: VadConfig(defaultThreshold: 0.75)
    )

    let audioURL = URL(fileURLWithPath: &quot;path/to/audio.wav&quot;)
    let samples = try AudioConverter().resampleAudioFile(audioURL)

    var segmentation = VadSegmentationConfig.default
    segmentation.minSpeechDuration = 0.25
    segmentation.minSilenceDuration = 0.4

    let segments = try await manager.segmentSpeech(samples, config: segmentation)
    for segment in segments {
        print(
            String(format: &quot;Speech %.2f–%.2fs&quot;, segment.startTime, segment.endTime)
        )
    }
}
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;Streaming&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;import FluidAudio

Task {
    let manager = try await VadManager()
    var state = await manager.makeStreamState()

    for chunk in microphoneChunks {
        let result = try await manager.processStreamingChunk(
            chunk,
            state: state,
            config: .default,
            returnSeconds: true,
            timeResolution: 2
        )

        state = result.state

        // Access raw probability (0.0-1.0) for custom logic
        print(String(format: &quot;Probability: %.3f&quot;, result.probability))

        if let event = result.event {
            let label = event.kind == .speechStart ? &quot;Start&quot; : &quot;End&quot;
            print(&quot;\(label) @ \(event.time ?? 0)s&quot;)
        }
    }
}
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;CLI&lt;/h3&gt; 
&lt;p&gt;Start with the general-purpose &lt;code&gt;process&lt;/code&gt; command, which runs the diarization pipeline (and therefore VAD) end-to-end on a single file:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;swift run fluidaudiocli process path/to/audio.wav
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Once you need to experiment with VAD-specific knobs directly, reach for:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# Inspect offline segments (default mode)
swift run fluidaudiocli vad-analyze path/to/audio.wav

# Streaming simulation only (timestamps printed in seconds by default)
swift run fluidaudiocli vad-analyze path/to/audio.wav --streaming

# Benchmark accuracy/precision trade-offs
swift run fluidaudiocli vad-benchmark --num-files 50 --threshold 0.3
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;&lt;code&gt;swift run fluidaudiocli vad-analyze --help&lt;/code&gt; lists every tuning option, including negative-threshold overrides, max-speech splitting, padding, and chunk size. Offline mode also reports RTFx using the model&#39;s per-chunk processing time.&lt;/p&gt; 
&lt;h2&gt;Text‑To‑Speech (TTS)&lt;/h2&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;&lt;strong&gt;⚠️ Beta:&lt;/strong&gt; TTS currently supports American English only. Additional language support is planned.&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;p&gt;FluidAudio ships two TTS backends:&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;&lt;/th&gt; 
   &lt;th&gt;PocketTTS&lt;/th&gt; 
   &lt;th&gt;Kokoro&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;GPL dependencies&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;None&lt;/td&gt; 
   &lt;td&gt;None&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;Tokenizer&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;SentencePiece&lt;/td&gt; 
   &lt;td&gt;CoreML G2P → IPA phonemes&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;Generation&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Frame-by-frame autoregressive (80ms)&lt;/td&gt; 
   &lt;td&gt;Parallel (all frames at once)&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;Streaming&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Yes&lt;/td&gt; 
   &lt;td&gt;No&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;Voice cloning&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Yes (1–30s audio sample)&lt;/td&gt; 
   &lt;td&gt;No&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;Pronunciation control&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;No&lt;/td&gt; 
   &lt;td&gt;Yes (SSML, custom lexicon)&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;Output&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;24 kHz mono WAV&lt;/td&gt; 
   &lt;td&gt;24 kHz mono WAV&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h3&gt;PocketTTS&lt;/h3&gt; 
&lt;p&gt;Streaming-friendly TTS with voice cloning support from short audio samples. Available language packs: &lt;code&gt;english&lt;/code&gt; (default), &lt;code&gt;german&lt;/code&gt;, &lt;code&gt;german_24l&lt;/code&gt;, &lt;code&gt;italian&lt;/code&gt;, &lt;code&gt;italian_24l&lt;/code&gt;, &lt;code&gt;portuguese&lt;/code&gt;, &lt;code&gt;portuguese_24l&lt;/code&gt;, &lt;code&gt;spanish&lt;/code&gt;, &lt;code&gt;spanish_24l&lt;/code&gt;, &lt;code&gt;french_24l&lt;/code&gt; (24-layer only — no 6-layer French upstream).&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;import FluidAudio

Task {
    let manager = PocketTtsManager(language: .spanish)
    try await manager.initialize()
    let audioData = try await manager.synthesize(text: &quot;Hola, mundo.&quot;)
    try audioData.write(to: URL(fileURLWithPath: &quot;out.wav&quot;))
}
&lt;/code&gt;&lt;/pre&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# English (default)
swift run fluidaudiocli tts &quot;Hello from FluidAudio.&quot; --output out.wav --backend pocket

# Other languages
swift run fluidaudiocli tts &quot;Hola mundo&quot; --backend pocket --language spanish --output es.wav
swift run fluidaudiocli tts &quot;Bonjour&quot; --backend pocket --language french_24l --output fr.wav

# Clone a voice from an audio sample (works with any language pack)
swift run fluidaudiocli tts &quot;Hello world.&quot; --output out.wav --backend pocket --clone-voice speaker.wav
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;See &lt;a href=&quot;https://raw.githubusercontent.com/FluidInference/FluidAudio/main/Documentation/TTS/PocketTTS.md#languages&quot;&gt;Documentation/TTS/PocketTTS.md&lt;/a&gt; for the full language table.&lt;/p&gt; 
&lt;h3&gt;KokoroAne&lt;/h3&gt; 
&lt;p&gt;ANE-resident Kokoro 82M (4-stage on Neural Engine, 3-stage on GPU). Yields 3-11× RTFx on Apple Silicon vs. the prior single-graph Kokoro path. English (&lt;code&gt;af_heart&lt;/code&gt;) and Mandarin variants ship with a built-in G2P pipeline (BART CoreML for English OOV, jieba + sandhi + G2pW for Mandarin).&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-swift&quot;&gt;import FluidAudio

Task {
    let manager = KokoroAneManager()
    try await manager.initialize()
    let samples = try await manager.synthesize(text: &quot;Hello from FluidAudio.&quot;)
    // `samples` is 24 kHz mono Float32 PCM
}
&lt;/code&gt;&lt;/pre&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;swift run fluidaudiocli tts &quot;Hello from FluidAudio.&quot; --backend kokoroAne --output out.wav
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Model assets are cached under &lt;code&gt;~/.cache/fluidaudio/Models/kokoro/&lt;/code&gt;.&lt;/p&gt; 
&lt;h2&gt;Continuous Integration&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;code&gt;tests.yml&lt;/code&gt;: Default build matrix covering SwiftPM tests and an iOS archive smoke test.&lt;/li&gt; 
 &lt;li&gt;&lt;code&gt;diarizer-benchmark.yml&lt;/code&gt;: Runs the streaming diarization benchmark on ES2004a for regression tracking.&lt;/li&gt; 
 &lt;li&gt;&lt;code&gt;offline-pipeline.yml&lt;/code&gt;: Executes the VBx offline pipeline end-to-end (&lt;code&gt;fluidaudio diarization-benchmark --mode offline&lt;/code&gt;) and fails if DER/JER drift beyond guardrails or if models fail to download. Use this workflow as a reference for provisioning model caches in your own CI.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Everything Else&lt;/h2&gt; 
&lt;h3&gt;FAQs&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;CLI is available on macOS only. For iOS, use the library programmatically.&lt;/li&gt; 
 &lt;li&gt;Models auto-download on first use. If your network restricts Hugging Face access, set an HTTPS proxy: &lt;code&gt;export https_proxy=http://127.0.0.1:7890&lt;/code&gt;.&lt;/li&gt; 
 &lt;li&gt;Windows alternative in development: &lt;a href=&quot;https://github.com/FluidInference/fluid-server&quot;&gt;fluid-server&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;If you&#39;re looking to get the system audio on a Mac, take a look at this repo for reference &lt;a href=&quot;https://github.com/insidegui/AudioCap/tree/main&quot;&gt;AudioCap&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;License&lt;/h3&gt; 
&lt;p&gt;Apache 2.0 — see &lt;code&gt;LICENSE&lt;/code&gt; for details.&lt;/p&gt; 
&lt;h3&gt;Acknowledgments&lt;/h3&gt; 
&lt;p&gt;This project builds upon the excellent work of the &lt;a href=&quot;https://github.com/k2-fsa/sherpa-onnx&quot;&gt;sherpa-onnx&lt;/a&gt; project for speaker diarization algorithms and techniques.&lt;/p&gt; 
&lt;p&gt;Pyannote: &lt;a href=&quot;https://github.com/pyannote/pyannote-audio&quot;&gt;https://github.com/pyannote/pyannote-audio&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;WeSpeaker: &lt;a href=&quot;https://github.com/wenet-e2e/wespeaker&quot;&gt;https://github.com/wenet-e2e/wespeaker&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;Parakeet-mlx: &lt;a href=&quot;https://github.com/senstella/parakeet-mlx&quot;&gt;https://github.com/senstella/parakeet-mlx&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;silero-vad: &lt;a href=&quot;https://github.com/snakers4/silero-vad&quot;&gt;https://github.com/snakers4/silero-vad&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;Kokoro-82M: &lt;a href=&quot;https://huggingface.co/hexgrad/Kokoro-82M&quot;&gt;https://huggingface.co/hexgrad/Kokoro-82M&lt;/a&gt;&lt;/p&gt; 
&lt;h3&gt;Citation&lt;/h3&gt; 
&lt;p&gt;If you use FluidAudio in your work, please cite:&lt;/p&gt; 
&lt;p&gt;FluidInference Team. (2025). FluidAudio: Local Speaker Diarization, ASR, and VAD for Apple Platforms (Version 0.12.4) [Computer software]. GitHub. &lt;a href=&quot;https://github.com/FluidInference/FluidAudio&quot;&gt;https://github.com/FluidInference/FluidAudio&lt;/a&gt;&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bibtex&quot;&gt;@software{FluidInferenceTeam_FluidAudio_2025,
  author = {{FluidInference Team}},
  title = {{FluidAudio: Local Speaker Diarization, ASR, and VAD for Apple Platforms}},
  year = {2025},
  month = {3},
  version = {0.12.4},
  url = {https://github.com/FluidInference/FluidAudio},
  note = {Computer software}
}
&lt;/code&gt;&lt;/pre&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Show Your Support&lt;/h2&gt; 
&lt;p&gt;Help the Fluid Inference community grow by adding a &quot;Powered by Fluid Inference&quot; badge to your project!&lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://fluidinference.com&quot;&gt; &lt;img src=&quot;https://assets.inference.plus/fi-badge.png&quot; alt=&quot;Powered by Fluid Inference&quot; height=&quot;80&quot; /&gt; &lt;/a&gt; &lt;/p&gt; 
&lt;p&gt;Copy and paste this prompt to your coding agent where you host your homepage:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-text&quot;&gt;Add a centered &#39;Powered by Fluid Inference&#39; badge to the footer linking to fluidinference.com. Image: https://assets.inference.plus/fi-badge.png. Whitelist the image hostname in your framework&#39;s config.
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Or use one of these code snippets:&lt;/p&gt; 
&lt;details&gt; 
 &lt;summary&gt;React/Next.js&lt;/summary&gt; 
 &lt;pre&gt;&lt;code class=&quot;language-jsx&quot;&gt;&amp;lt;div className=&quot;flex justify-center py-8&quot;&amp;gt;
  &amp;lt;a href=&quot;https://fluidinference.com&quot;&amp;gt;
    &amp;lt;img
      src=&quot;https://assets.inference.plus/fi-badge.png&quot;
      alt=&quot;Powered by Fluid Inference&quot;
      height={80}
    /&amp;gt;
  &amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt; 
&lt;/details&gt; 
&lt;details&gt; 
 &lt;summary&gt;HTML&lt;/summary&gt; 
 &lt;pre&gt;&lt;code class=&quot;language-html&quot;&gt;&amp;lt;div style=&quot;text-align: center; padding: 20px;&quot;&amp;gt;
  &amp;lt;a href=&quot;https://fluidinference.com&quot;&amp;gt;
    &amp;lt;img src=&quot;https://assets.inference.plus/fi-badge.png&quot; alt=&quot;Powered by Fluid Inference&quot; height=&quot;80&quot;&amp;gt;
  &amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt; 
&lt;/details&gt; 
&lt;details&gt; 
 &lt;summary&gt;Markdown&lt;/summary&gt; 
 &lt;pre&gt;&lt;code class=&quot;language-markdown&quot;&gt;&amp;lt;p align=&quot;center&quot;&amp;gt;
  &amp;lt;a href=&quot;https://fluidinference.com&quot;&amp;gt;
    &amp;lt;img src=&quot;https://assets.inference.plus/fi-badge.png&quot; alt=&quot;Powered by Fluid Inference&quot; height=&quot;80&quot;&amp;gt;
  &amp;lt;/a&amp;gt;
&amp;lt;/p&amp;gt;
&lt;/code&gt;&lt;/pre&gt; 
&lt;/details&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/1006258471/3acb1b56-89f2-481f-a706-1f5af2839849" medium="image" />
      
    </item>
    
  </channel>
</rss>
