From 4647d7360d109b973e6617e0e608085111ad1cc9 Mon Sep 17 00:00:00 2001 From: Scott Jones Date: Thu, 16 Apr 2026 15:10:10 -0400 Subject: [PATCH] Install Emacs via omarchy-emacs AUR package MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per @dhh's feedback on #4807, Emacs integration lives as an AUR package instead of in-tree. The menu now installs omarchy-emacs from the AUR, which brings in emacs-wayland as a dependency and provides omarchy-install-emacs to handle setup and the user systemd service — mirroring the omarchy-nvim pattern. Behavior is preserved: Emacs installed, configured with Omarchy theme/font integration, and the emacs.service user unit enabled. Co-Authored-By: Claude Opus 4.7 (1M context) --- bin/omarchy-menu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-menu b/bin/omarchy-menu index 3ee0ea5e87..3d5929123a 100755 --- a/bin/omarchy-menu +++ b/bin/omarchy-menu @@ -334,7 +334,7 @@ show_install_editor_menu() { *Zed*) install_and_launch "Zed" "zed" "dev.zed.Zed" ;; *Sublime*) install_and_launch "Sublime Text" "sublime-text-4" "sublime_text" ;; *Helix*) install "Helix" "helix" ;; - *Emacs*) install "Emacs" "emacs-wayland" && systemctl --user enable --now emacs.service ;; + *Emacs*) present_terminal "omarchy-pkg-aur-add omarchy-emacs && omarchy-install-emacs" ;; *) show_install_menu ;; esac }