UnnaturalScrollWheels VS homebrew-bundle

Compare UnnaturalScrollWheels vs homebrew-bundle and see what are their differences.

UnnaturalScrollWheels

Invert scroll direction for physical scroll wheels while maintaining "Natural" scrolling for trackpads on MacOS (by ther0n)

homebrew-bundle

📦 Bundler for non-Ruby dependencies from Homebrew, Homebrew Cask and the Mac App Store. (by Homebrew)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
UnnaturalScrollWheels homebrew-bundle
40 27
3,065 5,113
- 6.3%
0.0 8.8
8 months ago 3 days ago
Swift Ruby
GNU General Public License v3.0 only MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

UnnaturalScrollWheels

Posts with mentions or reviews of UnnaturalScrollWheels. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-29.
  • Why are Apple Silicon VMs so different?
    7 projects | news.ycombinator.com | 29 Dec 2023
    For gaming, you want to use Crossover or the FOSS Whisky app. Parallels only runs Arm Windows which then emulates x86. This is much much slower than using Wine to translate system calls and Apple's Game Porting Toolkit to handle the Vulkan or DirectX graphics. Crossover and Whisky take care of the internals of those for you. Give those a shot, I think you'll find it much better than a full VM. In my experience some games do run better this way than the MacOS versions, though that's usually because the Mac client wasn't compiled for Apple Silicon and so Rosetta is emulating. Unfortunately, I'm pretty sure WOW is already Apple Silicon native, so you probably won't get better performance this way.

    For the mouse stuff, try a USB mouse if you're not already using one, combined with https://github.com/ther0n/UnnaturalScrollWheels

    That works really well for me to get a Windows-like mouse curve.

    TLDR skip the emulation and go for translation layers via Crossover, Whisky, and GPT. It'll be much faster. The mouse thing is separate and has nothing to do with the graphics layer.

    ------

    Personally though, I'd just pay $20 a month for Geforce Now. It is much much faster than even the highest end Mac.

  • What do you think is the "quirkiest" feature on the Mac?
    3 projects | /r/mac | 27 Jun 2023
    Was the utility UnnaturalScrollWheels?
  • An Open Source Mouse and Trackpad Utility for Mac
    8 projects | news.ycombinator.com | 23 Jun 2023
    I use this tool to keep natural scrolling on trackpad and normal scrolling on my wheely mouse: https://github.com/ther0n/UnnaturalScrollWheels
  • Free Tech Tools and Resources - Mac Scrolling, Load Testing, Win Server Switch Tip & More
    2 projects | /r/msp | 13 Jun 2023
    A Free Tool UnnaturalScrollWheels is a MacOS app that allows you to invert the scroll direction for physical scroll wheels while maintaining the normal function for trackpads. aew3 recommends it "for those like me who go between dock and laptop and prefer my mouse to have a different scroll direction to the trackpad." Another Free Tool Locust is an open-source load testing tool that allows you to define whatever user behavior you like, and then swarm your system with millions of those users simultaneously. certTaker suggests, "If you want to test an actual application and how it handles network latency, potential buffering, QoS etc, then you could use Locust to stress-test REST-based applications and their APIs." A Tip Synssins shares a method for replacing an older Windows File Server with new, while keeping all shares and DNS intact:
  • IT Pro Tuesday #255 - Mac Scrolling, Load Testing, Win Server Switch Tip & More
    3 projects | /r/ITProTuesday | 13 Jun 2023
    UnnaturalScrollWheels is a MacOS app that allows you to invert the scroll direction for physical scroll wheels while maintaining the normal function for trackpads. aew3 recommends it "for those like me who go between dock and laptop and prefer my mouse to have a different scroll direction to the trackpad."
  • Logitech und deren Software
    1 project | /r/de_EDV | 23 May 2023
  • Is there any way to reverse the scroll direction on JUST the external mouse, but keep the default on the touchpad?
    2 projects | /r/macbook | 13 Apr 2023
  • Best Mouse to use for logic pro x
    1 project | /r/Logic_Studio | 14 Feb 2023
  • New MacOS user, should I force myself to use the default natural mouse scroll direction behavior or reverse it it to act more like Windows?
    2 projects | /r/mac | 23 Jan 2023
    3 projects | /r/macmini | 22 Jan 2023
    “For some reason in macOS, toggling the "Scroll direction: Natural" option in Mouse settings also changes it in Trackpad settings despite being in separate places.” Check out this app too which also takes care of acceleration. https://github.com/ther0n/UnnaturalScrollWheels

homebrew-bundle

Posts with mentions or reviews of homebrew-bundle. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-28.
  • How do you setup a new Mac?
    2 projects | news.ycombinator.com | 28 Jan 2024
    I maintain a Brewfile (https://github.com/Homebrew/homebrew-bundle) which contains the majority of the non-project specific applications that I like to install on any new Mac:

    https://github.com/jonahgeorge/dotfiles/tree/main

    What's really nice is the `cask` & `mas` keywords allow you to install .dmg files & directly from the App Store.

    ---

    While its not included in there yet, I've been experimenting with maintaining a private Homebrew tap which contains my ~/bin directory as opposed to shell aliases.

  • Pkgx – “Run Anything” from the creator of brew
    3 projects | news.ycombinator.com | 4 Oct 2023
    > It's strange that people are so against declarative systems, or even file-based OS configuration. When I get my new Macbook I was up-and-running within a few minutes. I can't imagine maintaining a list of brews I need to re-install just to set up everything + my configs + everything else.

    I haven’t had time to try Nix yet, but HomeBrew does have a declarative-ish workflow that I’ve been using for years:

    [Brew Bundle](https://github.com/Homebrew/homebrew-bundle) let’s you have a plaintext file listing all packages you want installed on your system. Add a line for stuff you want installed, delete a line for stuff you want removed, invoke it the right way and it will install/remove packages until your system matches the list. The initial list can be generated by “brew bundle dump” or something like that.

    For configuration, I find that a normal dotfile repo cloned into my ~/.config (with a script that maintains symlinks to config files in e.g. ~/Library) works well enough for my use.

  • Ask HN: What are your favorite iOS/macOS automations?
    3 projects | news.ycombinator.com | 1 Sep 2023
    Brew supports dumping installed things into a brewfile: https://github.com/Homebrew/homebrew-bundle

    I was using text files before as well to manage it.

  • Show HN: Applite – Clean Homebrew front end app for macOS built with SwiftUI
    5 projects | news.ycombinator.com | 10 Aug 2023
    Assuming everyone's on a Mac, I'm actually surprised there isn't that much use of something like homebrew-bundle[1]. It's definitely nicer to have your tooling run natively rather than, say, trying to wrap everything in Docker, or trying to get everybody on board with nix or guix.

    I think the only real issue here is that you can't really pin to specific versions unless a formula exists, and there is no guarantee that a formula with a pinned version will stick around because homebrew likes to stay lean.

    [1]https://github.com/Homebrew/homebrew-bundle/

  • Brew Bundle
    1 project | news.ycombinator.com | 13 Jun 2023
  • The new Obsidian icon
    2 projects | /r/ObsidianMD | 2 Jun 2023
  • Which apps do you install first on any new Mac?
    10 projects | /r/MacOS | 20 May 2023
    You should checkout Homebrew bundle and create a Brewfile instead. That will let you install both stuff from brew, casks and Mac AppStore apps in one go.
  • macOS users: you can now install Active Trader Pro with Homebrew!
    2 projects | /r/fidelityinvestments | 22 Apr 2023
    If you use brew bundle and create your own Brewfile, you can store this with your personal dot files and automate bootstrapping (auto-installing all your system tools) a new or recently reformatted Mac by including auto-trader-pro in your Brewfile.
  • 2 Days ago I made a comment saying I would quit photography before buying an Apple for photo editing. I'm sorry, be gentle
    3 projects | /r/macbookpro | 27 Mar 2023
    And if you're already loving Homebrew, definitely check out Homebrew Bundle!
  • I was a MacOS hater until...
    15 projects | /r/MacOS | 20 Mar 2023
    If you like homebrew, definitely give homebrew bundle a whirl if you haven't already

What are some alternatives?

When comparing UnnaturalScrollWheels and homebrew-bundle you can also consider the following projects:

Mos - 一个用于在 macOS 上平滑你的鼠标滚动效果或单独设置滚动方向的小工具, 让你的滚轮爽如触控板 | A lightweight tool used to smooth scrolling and set scroll direction independently for your mouse on macOS

linuxbrew-core - 💀Formerly the core formulae for the Homebrew package manager on Linux

linearmouse - The mouse and trackpad utility for Mac.

FinderFix - FinderFix lets you resize and reposition Finder windows to your liking

discrete-scroll - Fix for macOS's unnecessary scroll acceleration

PopClip-Extensions - Source code extensions in the official PopClip Extensions directory.

hammerspoon - Staggeringly powerful macOS desktop automation with Lua

homebrew-lilypond - Install LilyPond from homebrew/core instead of this tap: https://formulae.brew.sh/formula/lilypond

choosem - dropdown picker/launcher for mac os

mas - :package: Mac App Store command line interface

OpenerManifest - Set of rules powering Opener for iOS