all repos — nixfiles @ 8c21318c5383e63477dc94986e9052eeb108d601

System and user configuration, managed by nix and home-manager

emacs: add raycast script to open Emacs.app with shell environment

Alan Pearce
commit

8c21318c5383e63477dc94986e9052eeb108d601

parent

05f1915d0e71aee815c6a44d03e5ef1f2e18491d

1 file changed, 12 insertions(+), 0 deletions(-)

changed files
A user/emacs/raycast-script.applescript
@@ -0,0 +1,12 @@
+#!/usr/bin/osascript + +# Required parameters: +# @raycast.schemaVersion 1 +# @raycast.title Emacs +# @raycast.mode silent + +# Optional parameters: +# @raycast.icon https://www.gnu.org/software/emacs/images/emacs.png +# @raycast.packageName Emacs + +do shell script "$SHELL -c \"open -a ~/.nix-profile/Applications/Emacs.app\""