Match the other editors (VSCode/Zed/Cursor) by launching once install finishes. Uses gtk-launch emacsclient so it opens a frame on the emacs.service daemon that omarchy-install-emacs just started, rather than spawning a second standalone instance. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
10 lines
307 B
Bash
Executable File
10 lines
307 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Install Emacs with Omarchy theme and font integration via the omarchy-emacs AUR package
|
|
|
|
echo "Installing Emacs..."
|
|
omarchy-pkg-aur-add omarchy-emacs && omarchy-install-emacs
|
|
|
|
# emacsclient opens a frame on the running daemon, not a second Emacs
|
|
setsid gtk-launch emacsclient
|