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 <david@hey.com>
This commit is contained in:
Pierre Olivier Martel
2026-05-05 21:17:27 +02:00
committed by GitHub
co-authored by David Heinemeier Hansson
parent 581719c64f
commit 37a7913f3d
2 changed files with 12 additions and 1 deletions
+11
View File
@@ -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
+1 -1
View File
@@ -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 ;;