From 37a7913f3d2c0b3bdc276fc1948170e7bde9cc39 Mon Sep 17 00:00:00 2001 From: Pierre Olivier Martel Date: Tue, 5 May 2026 15:17:27 -0400 Subject: [PATCH] Bundle Zed editor with omazed for themes syncing (#4873) * Install Zed Editor with omazed for themes syncing * Move Zed theme switching into Omarchy * Launch zed after install * revert * forgot omazed! * omazed is now on OPR --------- Co-authored-by: David Heinemeier Hansson --- bin/omarchy-install-zed | 11 +++++++++++ bin/omarchy-menu | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100755 bin/omarchy-install-zed diff --git a/bin/omarchy-install-zed b/bin/omarchy-install-zed new file mode 100755 index 00000000..427659d2 --- /dev/null +++ b/bin/omarchy-install-zed @@ -0,0 +1,11 @@ +#!/bin/bash + +# Install Zed Editor and omazed to use the current Omarchy theme. + +echo "Installing Zed Editor..." +omarchy-pkg-add zed omazed + +# Apply Omarchy theme to Zed +omazed setup + +setsid gtk-launch dev.zed.Zed diff --git a/bin/omarchy-menu b/bin/omarchy-menu index 1ffa081c..cf871ab5 100755 --- a/bin/omarchy-menu +++ b/bin/omarchy-menu @@ -385,7 +385,7 @@ show_install_editor_menu() { case $(menu "Install" " VSCode\n Cursor\n Zed\n Sublime Text\n Helix\n Emacs") in *VSCode*) present_terminal omarchy-install-vscode ;; *Cursor*) install_and_launch "Cursor" "cursor-bin" "cursor" ;; - *Zed*) install_and_launch "Zed" "zed" "dev.zed.Zed" ;; + *Zed*) present_terminal omarchy-install-zed ;; *Sublime*) install_and_launch "Sublime Text" "sublime-text-4" "sublime_text" ;; *Helix*) present_terminal omarchy-install-helix ;; *Emacs*) install "Emacs" "emacs-wayland" && systemctl --user enable --now emacs.service ;;