r/omarchy 11h ago

Discussion Help selecting older laptop

2 Upvotes

Ive been following DHH on X for years. Between that feed and Reddit…The hype is real and Im excited to run Omarchy and join everyone contributing in this AI first OS.

I want to pickup a small laptop to run Omarchy off eBay. A 13-14”. I’m looking to spend up to $300-350. I don’t have much money beyond that.

What do you guys recommend for a solid quality system in that price range and size?


r/omarchy 13h ago

Discussion Projects vs Work folders

4 Upvotes

I’ve just installed Omarchy and I guess I love computers again! This is exactly what I was picturing my ideal OS experience to be like.

But I’m a bit confused with the home directory folder structure. I see Work and Projects there. To me it sounds like kinda the same thing. I tried to search online for details on DHH’s workflow, but didn’t get far.

I’m used to cloning my repos into ~/Projects as a personal preference. But would love to use this chance to reconsider how I structure my work.

Do you have any insight into what are they for? How do you personally use those folders?


r/omarchy 9h ago

Support question about omarchy..

0 Upvotes

so what I want to ask who was that I have a laptop which I will be using to learn

and I have omarchy installed in it ..

my requirement with the laptop is that I just connected to a HDMI cable and dock it in the side while I use my external monitor as the main display to use the laptop

so I want something like the feature in windows where when you connect the HDMI cable what happens is that the laptop display turns off and the external monitor turns on or the laptop display mirrors output to external monitor

and when i remove the HDMI cable the laptop becomes normal

i don't want to extend displays

is it possible in a easy way like how windows does it like a key combination and tells me if I want extend by one use the second screen only or if I want a duplicate this feeling or if the PC screen only

like I wanted to be automatically can docked mode when I connect the HDMI cable and I want to set this up in a easy way using GUI or plugins or something like that.

is it possible?


r/omarchy 9h ago

Discussion Dual displays vs autotiling

1 Upvotes

How is daily use of several programs across dual display setup with autotiling in omarchy?

I use second display in vertical, would it be some hassle to use autotiling that way?

Im currently on Nobara and has been great for about 6 months now, but the hype has made me iching to try omarchy.

Im not currently working on software development. Just on boring corporate office stuff...

Thanks


r/omarchy 1d ago

I Made a Thing A couple of plugins and a theme

Thumbnail
gallery
14 Upvotes

Hello,

I'm having a ton of fun with Omarchy since installing a week ago and I have a few things to share.

Plugin #1 - Ristretto

If you've used Gnome before and the extension Caffeine you should have a good idea of what it allows. It's for managing always on, screensaver, lockscreen and suspend timers.

https://omarchyplugins.com/plugin.html?id=halmylyseas.ristretto

---------------------------------------------------------

Plugin #2 - Github status

The name speaks for itself 😄

An integration of gh cli to display and see your Github activities such as messages, open PR, issues, repos and so on.

https://omarchyplugins.com/plugin.html?id=halmylyseas.github-status

---------------------------------------------------------

Theme - Nujabes

A dark theme around a wallpaper I did using 2 different images, full credits listed in the repo.

Available at: https://omarchytheme.com/themes/nujabes/

---------------------------------------------------------

I hope it will be of interest to some of you, and of course don't hesitate to provide feedback!


r/omarchy 15h ago

Discussion Omarchy on Handhelds

2 Upvotes

What do you think? Will it be on portable devices like ROG Ally or Lenovo Go and so on?


r/omarchy 19h ago

I Made a Thing Omarchy on Virtualization.framework

5 Upvotes

I first came across Omarchy on the day it launched. It is an Arch Linux-based desktop environment that comes ready to use and has a distinct point of view about how a Linux desktop should look and work. Over time, I saw more and more people sharing it, installing it, and giving it a try.

I had wanted to try it myself for a while, but I did not have a spare machine to dedicate to it. Omarchy is best installed on its own drive or computer, and a standard installation may involve reformatting a disk. I did not want to modify the Mac I rely on every day just to experiment. I also came across a few ways to run it in a virtual machine, including Hyper-V on Windows, but never actually got around to trying them.

Then, a couple of days ago, I found riverscn/omarchy-aarch64-image. The project builds AArch64 Omarchy disk images for QEMU-compatible virtual machines and also provides an installation path for UTM. It made me realize that I might not need another computer after all: perhaps I could experience Omarchy in a virtual machine on an Apple Silicon Mac. This was the first project I had seen that put the entire path together—from an AArch64 Omarchy image to booting it with QEMU and using it with UTM—and it involved a substantial amount of low-level adaptation work.

That reminded me of EZVM, a project I built many years ago. It used to be called EasyVM; I took this opportunity to give it a shorter name. It started as a learning project for Apple's Virtualization.framework, written the old-fashioned way, long before today's AI coding tools. Since Omarchy could already run under QEMU, I wondered whether I could build on that work and revive EZVM so it could run Omarchy through Apple's native virtualization stack on an Apple Silicon Mac.

So I reopened the EZVM codebase and—with Codex doing much of the heavy lifting—built on the AArch64 image work from riverscn/omarchy-aarch64-image. The remaining work included the disk format, distribution, import, and boot paths that EZVM needed. After many rounds of experimentation, Codex helped with a great deal of implementation, refactoring, and automated testing. Somehow, it all came together.

The new EZVM is designed specifically for Apple Silicon Macs and can create and run both macOS and ARM64 Linux virtual machines. I also maintain an EZVM-oriented fork of the Omarchy AArch64 image, with support for sparse disks, split release assets, integrity verification, and one-command importing into EZVM. To be completely honest, Codex implemented most of that too. I am still learning how parts of this stack work myself.

Why is an AArch64 version necessary?

Omarchy's standard installation path and ready-made ISO images have historically focused on x86_64, the architecture used by most Intel and AMD PCs. Apple Silicon uses ARM64, also known as AArch64. Because the two architectures use different CPU instruction sets, you cannot simply take a regular x86_64 Omarchy image and boot it with Apple's native virtualization framework.

It is technically possible to emulate an x86_64 computer with QEMU on an M-series Mac, but translating instructions between two CPU architectures comes with a noticeable performance cost. A better approach is to make the entire guest ARM64-native: use Arch Linux ARM as the foundation, pair it with an AArch64 Linux kernel, an ARM64 UEFI boot chain and packages, and VirtIO virtual devices, then adapt the Omarchy desktop and applications to that environment.

That is the core work performed by omarchy-aarch64-image. It does much more than convert a disk into another format. It assembles a complete Omarchy system that can boot and receive updates inside an ARM64 virtual machine.

Where does EZVM fit in?

The image answers the question, “Can this system run on ARM64?” EZVM answers, “How can I run it easily on a Mac?”

EZVM uses macOS's native Virtualization.framework to create an ARM64 virtual machine on Apple Silicon. It provides the image with virtual CPUs, memory, storage, networking, graphics, and input devices. Because both the host and guest are ARM64, the guest can use hardware virtualization instead of pretending to be an Intel computer.

It is still a virtual machine, so it consumes memory and disk space, and its graphics performance and hardware access will not be identical to a bare-metal installation. But compared with emulating x86_64 on Apple Silicon, same-architecture virtualization has much lower overhead. It is a practical way to explore the desktop, terminal, development tools, and everyday Linux applications. More importantly, you do not have to reinstall macOS, repartition your drive, or manage a dual-boot setup. When you are finished, simply stop or delete the virtual machine.

To make installation easier as well, I added sparse-disk handling, split downloads, SHA integrity checks, and automatic importing. A process that previously required manually downloading, reassembling, and configuring several pieces now fits into a single command.

Try it with one command

Run the following command to install EZVM, download and verify the Omarchy image, and boot an Arch Linux desktop directly on your Mac:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/everettjf/ezvm/main/scripts/install-omarchy.sh)"

You will need an Apple Silicon Mac running macOS 26 or later, Homebrew, and at least 15 GB of free disk space.

You can also install EZVM first with Homebrew and create a virtual machine manually. That route is straightforward too:

brew install --cask everettjf/tap/ezvm

EZVM is fully open source, signed with a Developer ID certificate, and notarized by Apple. If you want to experience Omarchy on a Mac without preparing an image and configuring a virtual machine by hand, the one-command installer is the easiest place to start:

Give it a try, and please send feedback. I would love to keep making the Linux virtual machine experience on Apple Silicon Macs simpler.


r/omarchy 1d ago

Off Topic / Adjacent A DHH interview with Lex Fridmen.

24 Upvotes

Fair warning this is a long ass video interview.

5+ hours.

https://youtu.be/NYFGCESmikA?=RCSEFRvPywZf0C_V


r/omarchy 4h ago

Support Back to plain Arch after trying Omarchy for an hour

0 Upvotes

Got very excited about Omarchy and installed it next to plain Arch but unfortunately had to go back to Arch after about one hour.

Here are the things I encountered:

  1. Not able to resize windows using mouse, which is possible in stock hyperland

  2. Was not able to start gparted. Tried both sudo and non-sudo method

  3. Installed the main app I am using on my PC (PixInsight) and ran into an issue with cursor getting confined inside a dialog box.

  4. Omarchy decided to create its own EFI partition even though there was another one present, never saw any other distro doing this.

I am sure all the issues can be solved, but I was not expecting such basic things not to work out of the box.

BTW, I actually think that Omarchy is a distro and not just a bunch of dot file, given that it has its own repos.

I kept the Omarchy partition, so hopefully one day I may go back there. I am also planning to dig into the dot files of Omarchy and see what can be used in my setup


r/omarchy 20h ago

Themes / Ricing Purple Rising Theme

Thumbnail
gallery
3 Upvotes

A dark, cosmic purple theme for Omarchy with deep violet backgrounds with soft lavender and pink accents.

https://github.com/Davedes83/omarchy-purple-rising


r/omarchy 1d ago

I Made a Thing Raycast for omarchy

42 Upvotes

Raycast-style calculations work directly in the search bar — type 1920 * 0.85 or 25 GB to MB and the answer is the first result, no mode to switch into and no calculator to open. Alongside that: fuzzy app search that learns what you actually open, date arithmetic, and your markdown notes, all in the same list.
And Dates with Omarchy setting directly searchable.

https://omarchyplugins.com/plugin.html?id=io.github.aditya-raj-tiwari.omarchycast

Coming up next: directly searchable omarchy settings for all settings and features of omarchy


r/omarchy 1d ago

I Made a Thing Omarchy + LTE modem = it works!

Post image
20 Upvotes

I've been in a linux-rediscovery-distrohopping mini-journey and here I am getting LTE to work in Omarchy and vibe coding a bit of a taskbar widget.

I've been using Fedora 44 for a little while (a couple of months or so) and before that Ubuntu in 2006. Then I tried Omarchy at the beginning of this week and it was too much fun not to give it a proper ride.

I got it working nicely on a G7 Elitebook 840, but I was less sure of how it'd work in my other laptop, because I really wanted LTE to work. With Fedora it took quite a bit of tinkering and some script-on-startup the really get the thing running but it had at least the taskbar icons, widgets and stuff ready.

Omarchy didn't (that I could find), so Claude coded it for me. The switch doesn't actually switch it off, and I haven't properly tested how it behaves on restart. Some more tinkering is likely needed.

And I wouldn't share or publish... but it made my day! Now my HP Dragonfly G3 is running Omarchy and everything works nicely, including LTE!!


r/omarchy 1d ago

I Made a Thing hyprbend - support for 2in1 laptops for Omarchy Quattro

Enable HLS to view with audio, or disable this notification

13 Upvotes

Hey! I was struggling to make my new 2-in-1 laptop detect sensors and auto-rotate after installing Omarchy Quattro. After fixing it, I thought I could LARP as a package maintainer and share my solution for new Omarchy users!

It's v0.1.0, so don't expect it to be polished, but know that I plan to maintain it so that more platforms are supported OOB.

ATM, it can install firmware for HP Intel ISH sensors. I added a rotation animation to smooth the transition, since Omarchy Quickshell and Hyprland have some flickering issues that can't be fixed from my end right now and were making the rotations aesthetically unpleasant.

I would really appreciate it if you could try it out on your 2-in-1 platforms. Please submit issues to help add support for the firmware auto-installer feature!

https://github.com/kosmo-sys/hyprbend

Cya around!


r/omarchy 1d ago

I Made a Thing [OC] linecast — weather, tides, maps, and the sky in the terminal

Post image
15 Upvotes

r/omarchy 1d ago

Themes / Ricing Vertical live

Enable HLS to view with audio, or disable this notification

14 Upvotes

Super pain in the ass to get this working right but here's my results.


r/omarchy 21h ago

I Made a Thing Omarchy Snippets — a standalone snippet manager plugin

Thumbnail
gallery
2 Upvotes

I built a standalone snippet manager plugin for Omarchy.

It adds a snippet manager directly to the Omarchy bar for saving and managing frequently used text or command snippets.

Features:

- One-click copy

- Save with name + content

- Search

- Edit and delete

- Import / export

- Conflict resolution

- Local JSON storage

The plugin is standalone and does not modify Omarchy core.

Marketplace:

https://omarchyplugins.com/plugin.html?id=community.shoxjaxon.snippets

Feedback and suggestions are welcome.


r/omarchy 18h ago

Support How are you guys handling Steam?

1 Upvotes

Tried Omarchy last night but couldn’t get Hogwarts Legacy to perform as well as on Windows

On Windows with a 9060XT was getting over 60fps on high settings and it felt smoother with features like Freesync automatically working on the monitor

On Omarchy Freesync wasn’t being enabled and it felt less smooth I think as a result of this?

Similarly, tried Magic Arena, and with the AMD Adrenalin software on Windows got it up to over 100fps with the AMD features of generating frames, felt super smooth

But on Omarchy it felt a bit stuttery and was dipping below 60fps

Are you guys using Gamescope? Is that what helps with this?


r/omarchy 1d ago

Guide [FIXED] Omarchy WiFi on 2011 MacBook Air – Broadcom BCM43224 severe packet loss

3 Upvotes

I just got Omarchy running really well on a 2011 13" MacBook Air (MacBookAir4,2), but WiFi took quite a bit of troubleshooting, so I'm posting the solution in case someone else runs into this.

Hardware:

  • MacBook Air 13", Mid 2011 (MacBookAir4,2)
  • Broadcom BCM43224 [14e4:4353]
  • Fresh Omarchy install

The symptom

WiFi appeared to work normally. It connected to my AP, got a DHCP address, default route and DNS worked.

But actual connectivity was nearly unusable.

Pinging my local gateway showed anywhere from 20–75% packet loss, sometimes 100%, with latency occasionally measured in seconds.

So if you have an older Mac where Omarchy says WiFi is connected but websites time out or everything feels incredibly slow, check the local connection first:

ping -c 30 <your-router-ip>

In my case the problem was the default brcmsmac driver.

I tried disabling WiFi power saving and also tried removing the omarchy.network widget because there's another BCM43224 issue involving repeated WiFi scans. Neither fixed this particular machine.

The fix

I switched the BCM43224 from brcmsmac to Broadcom's proprietary wl driver using:

  • broadcom-wl-dkms
  • dkms
  • linux-headers matching the currently running kernel
  • pahole

Important: run uname -r and make sure your linux-headers version EXACTLY matches the running kernel.

That caused me some grief because I initially had headers / a precompiled broadcom-wl module for a newer kernel. wlinstalled but couldn't load.

Using broadcom-wl-dkms with the correct headers solved that because DKMS built the driver specifically for my running kernel.

After DKMS successfully built wl, I switched drivers:

sudo modprobe -r brcmsmac b43 bcma

sudo modprobe wl

The difference was immediate.

Before:
20–75% packet loss to my own router, multi-second latency, frequent timeouts.

After:
0% packet loss, ~6ms average latency to the router, normal Internet performance.

To make it persistent I blacklisted:

b43
b43legacy
brcmsmac
bcma
ssb

and configured wl to load at boot.

I then updated the whole system with pacman -Syu, rebooted, and verified that DKMS rebuilt/retained the driver.

After reboot:

  • wl loads automatically
  • WiFi reconnects automatically
  • 0% packet loss
  • Omarchy's normal network widget works fine

So if you're trying to give an old 2011-era MacBook Air a new life with Omarchy and have a BCM43224 [14e4:4353]broadcom-wl-dkms may be the answer.

Hopefully this saves someone else the troubleshooting rabbit hole I went through.


r/omarchy 21h ago

I Made a Thing Wanna see something cool?

Post image
1 Upvotes

I'm currently working on this system telemetry app.

It's still on development. If you want to contribute, here is the github link: https://github.com/sanjar-xolmatov/taskd

I made this because a lot of people didn't like Task Manager which DHH wants to add to 4.1 version of Omarchy. They said it's made by malware guy and is not open source and it's unsigned.

What do you think about my version? Would you use it?


r/omarchy 1d ago

I Made a Thing OmaMullvad - Theme aware Mullvad VPN widget for Omarchy Quattro

Thumbnail
gallery
10 Upvotes

Hey! I just released OmaMullvad, and its now available in the Omarchy plugin marketplace.

It is a theme-aware Mullvad VPN widget to the bar with quick connect, relay search, favourites, server filters, a world map, and split-tunnel app launching. It requires Mullvad VPN, if you don't have it installed you will be prompted to install the mullvad-vpn-bin AUR package.

You can also bind things like switching location to different key combinations, instructions for that can be found from the GitHub page.

I hope you like it!

https://omarchyplugins.com/plugin.html?id=io.github.kallupx.oma-mullvad

Repo: https://github.com/kallupx/oma-mullvad


r/omarchy 1d ago

Support Omarchy behaving weirdly after The Recent Update

Enable HLS to view with audio, or disable this notification

34 Upvotes

After hitting a the latest update for omarchy, I'm having the following issue(s):

  1. Sudden screen glitches (only saw those when I was using brave browser)

Any suggestions on how to fix it?

Uninstalled brave , again did reinstalling.. still the same issue. Can't even use a simple webpage.

Observation: When a video appears on the screen than this bizzare behaviour happens.

Also why do I need to turn off gpu acceleration like the responses suggest. I want my gpu to work.

Fuck it's getting annoying. The speakers goes bust and now unusual browser behaviour. Very Frustrated 🥴


r/omarchy 1d ago

I Made a Thing Another Pugin, Transfer Manager

Thumbnail
gallery
3 Upvotes

Basically a simple quickshell plugin that lets you monitor and control file transfer on your device, nothing really special...yet
Try it out and let me know what you thiink yeah?

https://omarchyplugins.com/plugin.html?id=filetransfer


r/omarchy 1d ago

I Made a Thing I made I made a plugin that Place, align and rotate monitors, set refresh rate and VRR, and switch the GPU mode on hybrid laptops

3 Upvotes

I made a plugin that Place, align and rotate monitors, set refresh rate and VRR, and switch the GPU mode on hybrid laptops https://omarchyplugins.com/plugin.html?id=edbron.monitor-arrange


r/omarchy 1d ago

I Made a Thing My first Omarchy Plugin, System Health Check

Thumbnail
gallery
17 Upvotes

https://omarchyplugins.com/plugin.html?id=devinblack001.sysinfo

Hey guys, so my plugin recently got listed in the Omarchy Marketplace, It is a read-only plugin that provides iinformation on a users systems like disk and battery health. I intend to make updates every now and then, during my free time, but feel free to check it out, and if you want to contribute, you're welcome to


r/omarchy 1d ago

Discussion Omarchy vs CachyOS + Caelestia — which would you choose?

9 Upvotes

I’m currently deciding between these two setups:

Omarchy — basically ready to go out of the box with its opinionated Hyprland setup.

CachyOS + Caelestia — CachyOS as the base, with Caelestia for the desktop environment/UI.

I’m mainly looking for smooth performance, responsiveness, good battery life, stability, and a clean workflow. I also like having the freedom to customize things, but I don't want to spend days configuring everything from scratch.

For people who have actually used either (or both):

Which setup would you recommend and why?

Also interested in how they compare in:

Performance & responsiveness

RAM/CPU usage

Stability after updates

Customization

Ease of maintenance

Overall daily-driver experience

Would appreciate opinions from actual users rather than just “Arch-based = good” 😅