From 22923374eeeafc8cdfd51d3245e46404c5f6f114 Mon Sep 17 00:00:00 2001 From: Dominic Seung Date: Sun, 23 Aug 2026 15:48:01 -0700 Subject: [PATCH 1/3] add qol to omarchy --- src/content/posts/omarchy-qol.mdx | 64 +++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/content/posts/omarchy-qol.mdx diff --git a/src/content/posts/omarchy-qol.mdx b/src/content/posts/omarchy-qol.mdx new file mode 100644 index 0000000..b70ec43 --- /dev/null +++ b/src/content/posts/omarchy-qol.mdx @@ -0,0 +1,64 @@ +--- +title: "Omarchy - The First Actually Good Linux Distro" +description: "I have switched to Omarchy from Windows 11 Pro on my Gaming PC. This is my experience." +date: "8/23/2026" +--- + + +These are some QOL improvements for Omarchy that might aid you in your quest to switch to Omarchy. + +## Essential +Fix Sleep/Lock: +```bash +omarchy plugin add https://github.com/dsnsgithub/omarchy-lock-fix +omarchy restart shell +``` + +## Worth It + +### Remove Chrome Managed Policies +Install Google Chrome (Omarchy Menu, Install > Browser), delete Chromium (Omarchy Menu, Remove > Browser). +Then clean out any managed policies (creates weird Chrome themes, locks secure DNS for some reason) +```bash +sudo rm -rf /etc/opt/chrome/policies/managed +sudo rm -rf /etc/opt/chrome/policies/recommended +``` + +### Change Chrome Font (to make it look good on Linux) +Add `inter-font` (Omarchy menu, Install > Package) + +```bash +gsettings set org.gnome.desktop.interface font-name "Inter 10" +gsettings set org.gnome.desktop.interface monospace-font-name "JetBrainsMono Nerd Font 11" +pkill -f chrome +``` + +## Optional + +### Disable Mouse Acceleration +`nvim ~/.config/hypr/input.lua` + +Uncomment Line 26. + +``` + 26 │ accel_profile = "flat", +``` + +### Setup Windows Hello Facial Recognition (Howdy) +Install [Howdy](https://github.com/boltgolt/howdy) or [howdy-next](https://codeberg.org/nathawat/howdy-next) + +Using Howdy to Unlock Computer: `sudo nvim /etc/pam.d/omarchy-lock-password` + +Add +``` +auth sufficient pam_howdy.so +``` +on the line after `#%PAM-1.0` + +Using Howdy for sudo: `sudo nvim /etc/pam.d/sudo` + +Add +``` +auth sufficient pam_howdy.so workaround=native +``` +on the line after `#%PAM-1.0` \ No newline at end of file From 637070a233d886b8e7742f4216416d57e3f28dd5 Mon Sep 17 00:00:00 2001 From: Dominic Seung Date: Sun, 23 Aug 2026 15:50:45 -0700 Subject: [PATCH 2/3] Update omarchy-qol.mdx --- src/content/posts/omarchy-qol.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/posts/omarchy-qol.mdx b/src/content/posts/omarchy-qol.mdx index b70ec43..fccba72 100644 --- a/src/content/posts/omarchy-qol.mdx +++ b/src/content/posts/omarchy-qol.mdx @@ -1,6 +1,6 @@ --- title: "Omarchy - The First Actually Good Linux Distro" -description: "I have switched to Omarchy from Windows 11 Pro on my Gaming PC. This is my experience." +description: "I have switched to Omarchy from Windows 11 Pro on my main workstation PC. This is my experience." date: "8/23/2026" --- From 810a1fd68b4079dd94de11733baf1b6ea7e3bffb Mon Sep 17 00:00:00 2001 From: Dominic Seung Date: Sun, 23 Aug 2026 16:39:43 -0700 Subject: [PATCH 3/3] add kirby theme to qol --- src/content/posts/omarchy-qol.mdx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/content/posts/omarchy-qol.mdx b/src/content/posts/omarchy-qol.mdx index fccba72..0226ce3 100644 --- a/src/content/posts/omarchy-qol.mdx +++ b/src/content/posts/omarchy-qol.mdx @@ -61,4 +61,12 @@ Add ``` auth sufficient pam_howdy.so workaround=native ``` -on the line after `#%PAM-1.0` \ No newline at end of file +on the line after `#%PAM-1.0` + +### Kirby Theme + +```bash +omarchy-theme-install https://github.com/dsnsgithub/omarchy-kirby-theme +``` +If the Menu Bar is not transparent, toggle Transparency under Omarchy Menu, Style > Menu Bar > Transparency. +Right click the time in the Menu Bar until it matches the one shown in the picture or the one you prefer. \ No newline at end of file