noah VS yabai

Compare noah vs yabai and see what are their differences.

noah

Bash on Ubuntu on macOS (by linux-noah)

yabai

A tiling window manager for macOS based on binary space partitioning (by koekeishiya)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
noah yabai
2 218
1,860 21,468
- -
0.3 9.6
almost 4 years ago 7 days ago
C C
GNU General Public License v3.0 or later 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.

noah

Posts with mentions or reviews of noah. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-24.
  • The Tug-of-War over Server-Side WebAssembly
    12 projects | news.ycombinator.com | 24 Mar 2023
    The other day I came across an interesting "alternative" to WASM which gives you OS portability using fully native code, without CPU portability, the latter seeming not that big of a deal these days anyway as cross compilers have got quite good and there are only two CPU archs in wide usage anyway.

    The idea is to simply run normal Linux binaries on macOS and Windows. How? You create a virtual machine using the Mac/Windows APIs without any OS inside, in fact without even any virtual hardware. It's literally just a new address space and some trivial min-viable VM configuration. Then you map the ELF binary and a ld.so into the VM with a minimal ELF interpreter, kick off execution and anytime there's a syscall you trap it and translate to the host OS syscalls. It can work quite well on macOS because the syscall interface is so similar.

    Note that this sort of VM is not:

    • A sandbox

    • A hardware abstraction

    Apps run this way hold all their data in the filing system of the host OS, they use the network stack of the host OS, etc. The VM is only being used to allow trapping and emulation of the syscall interface. The app isn't aware that it's being run in a special CPU mode on top of an emulated kernel.

    Advantages: lightweight, simple, apps can use all CPU features, can run at native speed, the Linux syscall interface is highly stable, based on POSIX specifications and you can easily pick a subset of it to standardize.

    Disadvantages: requires the emulator, apps exposed to missing features or quirks of the host OS e.g. Windows file system performance is much lower than Linux.

    WSL1 sort of worked that way, albeit without the VM aspect that lets userspace apps do it. They abandoned it partly for performance reasons and users expected all existing Linux apps to just work. But WASM doesn't target existing apps. It expects developers to bend and do things the WASM way, and accepts that not all apps are compatible with it, so that's not necessarily a problem.

    An example of how to implement this is NOAH:

    https://github.com/linux-noah/noah/

  • Lima: Linux-on-Mac (“macOS Subsystem for Linux”, “Containerd for Mac”)
    8 projects | news.ycombinator.com | 14 May 2021
    There was an attempt, but it was archived https://github.com/linux-noah/noah

yabai

Posts with mentions or reviews of yabai. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-17.
  • My MacBook setup (the 2024 version)
    6 projects | news.ycombinator.com | 17 Feb 2024
    It exists! Check out [yabai](https://github.com/koekeishiya/yabai), which is nicely paired with [skhd](https://github.com/koekeishiya/skhd).
  • Ask HN: Best Hacks for a Ultrawide Monitor?
    4 projects | news.ycombinator.com | 8 Feb 2024
    I have a 49 inch CRG9 and the best recommendation for window management is Yabai (https://github.com/koekeishiya/yabai) along with skhd (https://github.com/koekeishiya/skhd). Yabai is a greedy window management solution that tries to fit opened applications in given space and skhd let's you easily jump between those using keyboard shortcuts. This has massively improved my ultrawide experience.

    Only disclaimer is, configuring yabai has a slight learning curve.

  • Is there an app that does this Windows feature?
    1 project | /r/MacOS | 5 Dec 2023
    Want something free that's better than tiling on Windows? Yabai.
  • Yabai – A tiling window manager for macOS
    1 project | /r/hackernews | 2 Dec 2023
    35 projects | news.ycombinator.com | 30 Nov 2023
    Here it is. There is no visualization of the stack, which apparently Stackline in the other comment supports, but I don't tend to need that. Just being able to move between the windows is good enough for me.

    https://github.com/koekeishiya/yabai/issues/203#issuecomment...

  • Asahi Linux folks are doing us a solid with WPA3 fixes
    3 projects | news.ycombinator.com | 7 Nov 2023
    I use Yabai on my Macs without SIP enabled. Here’s a list of the features that absolutely require SIP to be disabled: https://github.com/koekeishiya/yabai/issues/1863

    But you don’t need to disable SIP just for tiling.

    > there's still a ton of tinkering and tweaking you need to do to get Yabai really working correctly

    This is pretty much true of basically every tiling window manager on Linux, too.

    For me, using Nix-Darwin for MacOS and NixOS has drastically simplified my tiling window manager setup after initially doing the work to figure out my ideal config.

  • macOS Containers v0.0.1
    24 projects | news.ycombinator.com | 26 Sep 2023
    SIP is a feature that protects you from malicious actors with root (admin) access on your device. After they've encrypted your photos and drives and changed your passwords, it prevents them from making your machine unbootable by deleting or altering system binaries. As a side effect of this protection, you give up certain freedoms to customize your system.

    https://github.com/koekeishiya/yabai

    For instance requires SIP to be disabled.

  • Yabai: A binary space partitioning tiling window manager for macOS
    1 project | news.ycombinator.com | 17 Aug 2023
  • Ask HN: Why does Apple refuse to add window snapping to macOS?
    9 projects | news.ycombinator.com | 17 Jun 2023
    This is disproven by the fact that Yabai [1] can instantly swap spaces with SIP disabled.

    [1] https://github.com/koekeishiya/yabai

  • [Serious] I don't get why people like Mac and I feel like I'm missing out
    4 projects | /r/webdev | 11 Jun 2023
    If you find the native window management lackluster (like I do), you can install a window manager like Amethyst, or yabai, veeer, or many others.

What are some alternatives?

When comparing noah and yabai you can also consider the following projects:

lima - Linux virtual machines, with a focus on running containers

Amethyst - Automatic tiling window manager for macOS à la xmonad.

HomeBrew - 🍺 The missing package manager for macOS (or Linux)

Rectangle - Move and resize windows on macOS with keyboard shortcuts and snap areas

Docker-OSX - Run macOS VM in a Docker! Run near native OSX-KVM in Docker! X11 Forwarding! CI/CD for OS X Security Research! Docker mac Containers.

vscode-vibrancy - Enable Acrylic/Glass effect for your VS Code.

workers-wasi

Karabiner-Elements - Karabiner-Elements is a powerful utility for keyboard customization on macOS Sierra (10.12) or later.

browser_wasi_shim - A WASI shim for in the browser

alt-tab-macos - Windows alt-tab on macOS

wasi-threads

MonitorControl - 🖥 Control your display's brightness & volume on your Mac as if it was a native Apple Display. Use Apple Keyboard keys or custom shortcuts. Shows the native macOS OSDs.